/*
 * Emre Sakarya Photography -  Redesign Stylesheet
 * Luxury Romance, Warm Cream, Pastel Rose Gold, and Espresso Palette
 */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300..900;1,300..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #EE5A36; /* Coral Orange-Red from logo's camera icon */
  --primary-hover: #D84B2B;
  --accent-gold: #DFBA73; /* Champagne Gold from logo's circular border */
  --dark-color: #2D2521; /* Warm Espresso Charcoal */
  --light-bg: #FAF8F5; /* Soft Chiffon Cream */
  --white: #ffffff;
  --gray-muted: #8E847E; /* Warm Slate Sand */
  --border-light: #EFEBE5; /* Soft Cream Border */
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-subtle: 0 8px 30px rgba(45, 37, 33, 0.03);
  --shadow-medium: 0 15px 40px rgba(45, 37, 33, 0.05);
}

/* Base Styles */
body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark-color);
  overflow-x: hidden;
  line-height: 1.8;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.text-gold {
  color: var(--primary-color) !important;
}

.bg-light-cream {
  background-color: var(--light-bg);
}

/* Custom Buttons - Premium & Rounded */
.btn-gold {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 14px 35px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(238, 90, 54, 0.2);
}

.btn-gold:hover, .btn-gold:focus {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(238, 90, 54, 0.35);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 14px 35px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 90, 54, 0.2);
}

/* Section Header Styles */
section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 4.5rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--dark-color);
  margin-top: 0.5rem;
}

.section-title span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 1.5rem auto 0;
  opacity: 0.8;
}

/* Navbar Wrapper to prevent page jump */
.navbar-wrapper {
  background-color: var(--white);
}


/* Navbar - Elegant Clean White */
.navbar {
  transition: var(--transition-smooth);
  padding: 20px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  box-shadow: 0 10px 30px rgba(45, 37, 33, 0.04);
  animation: navbarSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--white);
}

@keyframes navbarSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Offcanvas Mobile Menu Styling */
@media (max-width: 991.98px) {
  .offcanvas-body .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    margin: 0;
    letter-spacing: 2px;
    font-weight: 400;
  }
  .offcanvas-body .navbar-nav {
    padding-top: 15px;
  }
  .offcanvas-body .btn-gold {
    width: 100%;
    text-align: center;
    margin-top: 35px;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
  }
  
  .offcanvas-header {
    background-color: var(--light-bg);
    padding: 20px;
  }
  .offcanvas-header .offcanvas-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
  }
  .offcanvas-header .offcanvas-title span {
    color: var(--primary-color);
  }
  .offcanvas-header .btn-close {
    box-shadow: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
  }
  .offcanvas-header .btn-close:hover {
    opacity: 1;
  }
  
  .offcanvas-section-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  
  .offcanvas-contact-list a {
    color: inherit;
    transition: var(--transition-smooth);
  }
  
  .offcanvas-contact-list a:hover {
    color: var(--primary-color);
  }
  
  .contact-icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 0.9rem;
    border: 1px solid var(--border-light);
  }
  
  .contact-label {
    font-size: 0.75rem;
    color: var(--gray-muted);
    font-weight: 500;
    margin-bottom: 2px;
  }
  
  .contact-value {
    font-size: 0.85rem;
    color: var(--dark-color);
    font-weight: 400;
  }
  
  .offcanvas-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--dark-color);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
  }
  
  .offcanvas-social-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
  }
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--dark-color) !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--dark-color) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 12px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 70%;
}

/* Hero Section with Video/Visual Immersive Background */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--light-bg);
}

/* Shooting Location / Platolar Section */
.plato-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-subtle);
  height: 400px;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.plato-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.plato-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--dark-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
  border: 1px solid var(--border-light);
}

.plato-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(45, 37, 33, 0.8) 0%, rgba(45, 37, 33, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.plato-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 5px;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.plato-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.plato-btn {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.plato-card:hover img {
  transform: scale(1.08);
}

.plato-card:hover .plato-overlay {
  background: linear-gradient(0deg, rgba(45, 37, 33, 0.9) 0%, rgba(45, 37, 33, 0.2) 100%);
}

.plato-card:hover .plato-title {
  transform: translateY(0);
}

.plato-card:hover .plato-desc {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 15px;
}

.plato-card:hover .plato-btn {
  opacity: 1;
  transform: translateY(0);
}

/* All-in-One Bride Package Cards */
.package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.package-img-wrap {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--light-bg);
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.06);
}

.package-content {
  padding: 40px 30px 35px;
  text-align: center;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(45, 37, 33, 0.08);
  transition: var(--transition-smooth);
}

.package-card:hover .package-icon-wrap {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateX(-50%) scale(1.08);
}

.package-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 15px;
}

.package-card p {
  font-size: 0.85rem;
  color: var(--gray-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.package-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.package-bullets li {
  font-size: 0.8rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-bullets li i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Flexible Booking Guarantee Box */
.flexible-booking-box {
  background-color: var(--light-bg);
  border: 1px solid rgba(238, 90, 54, 0.2);
  border-radius: 24px;
  padding: 50px;
  margin-top: 40px;
}

.flexible-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.flexible-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 15px;
}

/* F.A.Q. Accordion */
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 10px;
  background-color: transparent;
}

.faq-accordion .accordion-button {
  background-color: transparent;
  color: var(--dark-color);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 22px 10px;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D2521' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C19E87' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
  padding: 10px 10px 30px;
  color: var(--gray-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-subtle);
  border-color: var(--primary-color);
}

.blog-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--gray-muted);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Online Booking Redesign */
.booking-panel {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
  padding: 50px;
}

.year-selector-wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.btn-year {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--dark-color);
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-year.active, .btn-year:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(238, 90, 54, 0.2);
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .month-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .month-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.month-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.month-card:hover {
  background-color: var(--white);
  border-color: var(--primary-color);
}

.month-card.active {
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(238, 90, 54, 0.15);
}

.month-card.disabled-month {
  opacity: 0.35;
  pointer-events: none;
}

.month-card .month-code {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.month-card .month-name {
  font-size: 0.75rem;
  color: var(--gray-muted);
  display: block;
}

.month-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.month-status-text {
  font-size: 0.65rem;
  color: var(--gray-muted);
}

.month-status-dot.available { background-color: #5B8266; }
.month-status-dot.limited { background-color: #DFBA73; }
.month-status-dot.booked { background-color: #C95C64; }

.booking-form-box {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-form-box.show {
  max-height: 1200px;
  opacity: 1;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.form-control-custom {
  background-color: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--dark-color);
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  background-color: var(--white);
  border-color: var(--primary-color);
  outline: none;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Success View */
.success-view {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(91, 130, 102, 0.1);
  color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(45, 37, 33, 0.98);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  border: 4px solid var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  color: var(--white);
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-prev, .lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  color: var(--white);
  font-size: 24px;
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-next { right: -60px; }
.lightbox-prev { left: -60px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

@media only screen and (max-width: 1024px) {
  .lightbox-next { right: 15px; }
  .lightbox-prev { left: 15px; }
}

/* Footer & Social */
.footer {
  background-color: #26201D;
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white) !important;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 2.5rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links-title {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 60px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Statistics Milestone Cards */
.stat-card {
  padding: 35px 20px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-muted);
  margin-bottom: 0;
  font-weight: 500;
}

/* Floating Social Media Buttons */
.floating-social-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-social-bar .social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(45, 37, 33, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--dark-color);
  transition: var(--transition-smooth);
}

.floating-social-bar .social-btn:hover {
  transform: scale(1.1) translateX(-5px);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45, 37, 33, 0.15);
}

.floating-social-bar .social-btn.whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
}

.floating-social-bar .social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  border-color: transparent;
}

.floating-social-bar .social-btn.youtube:hover {
  background-color: #FF0000;
  border-color: #FF0000;
}

@media (max-width: 768px) {
  .floating-social-bar {
    right: 10px;
    gap: 8px;
  }
  .floating-social-bar .social-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

/* Floating Animated CTA Button (Bottom Left) */
.floating-cta-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 999;
  background-color: #1dc72a;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(238, 90, 54, 0.3);
  animation: pulseGlow 3s infinite ease-in-out;
  transition: var(--transition-smooth);
  -webkit-transition: var(--transition-smooth);
  -moz-transition: var(--transition-smooth);
  -ms-transition: var(--transition-smooth);
  -o-transition: var(--transition-smooth);
}

.floating-cta-btn:hover {
  background-color: var(--white);
  color: #1dc72a;
  border: 1px solid #1dc72a;
  box-shadow: 0 10px 30px #1dc72a45;
  animation-play-state: paused; /* Pause animation on hover */
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 #1dc72a45;
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 14px #1dc72a00;
    transform: translateY(-8px);
  }
  100% {
    box-shadow: 0 0 0 0 #1dc72a00;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .floating-cta-btn {
    left: 15px;
    bottom: 15px;
    padding: 10px 20px;
    font-size: 0.75rem;
  }
}

/* ==========================================
   11. SUBPAGE COMMON STYLES (Page Hero, Breadcrumb, Table)
   ========================================== */
.subpage-hero {
  background-color: var(--light-bg);
  padding: 120px 0 60px 0; /* Padding for sticky navbar height space */
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subpage-hero {
    padding: 40px 0 40px 0;
  }
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--accent-gold) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--dark-color);
  font-weight: 400;
  margin-bottom: 15px;
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: var(--gray-muted);
  transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-separator {
  color: var(--border-light);
}

/* Service Comparison Table Styles */
.comparison-table-wrapper {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  margin-bottom: 0;
}

.comparison-table th {
  background-color: var(--light-bg);
  color: var(--dark-color);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--dark-color);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-title {
  font-weight: 500;
}

.comparison-table .check-icon {
  color: #2ecc71;
  font-size: 1.1rem;
}

.comparison-table .times-icon {
  color: #e74c3c;
  font-size: 1.1rem;
}

/* Subpage Content Adjustments */
.subpage-section {
  padding: 80px 0;
}

.subpage-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-muted);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
  .subpage-hero h1 {
    font-size: 2.2rem;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 15px;
    font-size: 0.8rem;
  }
}

/* Service Detail Layout Styles */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px; /* Space for fixed navigation bar */
  z-index: 10;
}

.sidebar-card {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.sidebar-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links-list li {
  margin-bottom: 12px;
}

.sidebar-links-list li:last-child {
  margin-bottom: 0;
}

.sidebar-links-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--gray-muted);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--light-bg);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.sidebar-links-list a:hover,
.sidebar-links-list li.active a {
  color: var(--primary-color);
  background-color: var(--white);
  border-color: var(--primary-color);
  padding-left: 20px;
}

.service-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-spec-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--dark-color);
}

.service-spec-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.service-steps-timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}

.service-steps-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background-color: var(--border-light);
}

.timeline-step-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-step-item:last-child {
  margin-bottom: 0;
}

.timeline-step-badge {
  position: absolute;
  left: -30px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-step-content h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.timeline-step-content p {
  font-size: 0.88rem;
  color: var(--gray-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-banner-img {
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 35px;
  overflow: hidden;
}

.service-banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .sticky-sidebar {
    position: static;
    margin-top: 50px;
  }
}

/* ==========================================
   16. Swiper JS Customizations
   ========================================== */
.heroSwiper .swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: var(--transition-smooth);
}
.heroSwiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: var(--white);
  background-color: rgba(45, 37, 33, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 768px){
  .heroSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 32px;
  height: 32px;
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 12px;
}
}

/* ==========================================
   17. Mobile Typography Normalization
   ========================================== */
@media screen and (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .section-title span {
    font-size: 0.75rem !important;
  }

  h1, .display-font {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.7rem !important;
  }
  
  h3 {
    font-size: 1.4rem !important;
  }
  
  h4 {
    font-size: 1.2rem !important;
  }
  
  h5, .plato-title, .package-title {
    font-size: 1.1rem !important;
  }
  
  h6 {
    font-size: 1rem !important;
  }

  p, .plato-desc, .package-desc, .timeline-step-content p {
    font-size: 0.95rem !important;
    line-height: 1.6;
  }

  .stat-number {
    font-size: 2rem !important;
  }
  
  .stat-label {
    font-size: 0.85rem !important;
  }
}

/* ==========================================
   11. CLIPS / VIDEO GALLERY SECTION
   ========================================== */
.clip-card {
  transition: var(--transition-smooth);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}
.clip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(238, 90, 54, 0.12);
}
.clip-image-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.clip-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.clip-card:hover .clip-image-wrapper img {
  transform: scale(1.06);
}
.clip-card .play-button-overlay {
  width: 54px;
  height: 54px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(238, 90, 54, 0.4);
  transition: var(--transition-smooth);
  z-index: 3;
}
.clip-card:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.12);
  background-color: var(--white);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}
.clip-card:hover .play-button-overlay i {
  color: var(--primary-color) !important;
}
.clip-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-color);
  line-height: 1.5;
  transition: var(--transition-smooth);
}
.clip-card:hover .clip-title {
  color: var(--primary-color);
}