/* Root Variables */
:root {
    --color-primary: #ef772b;
    --color-secondary: #e9c354;
    --color-dark: #000000;
    --color-gray-dark: #202020;
    --color-gray-medium: #383838;
    --color-gray-light: #a2a2a2;
    --color-white: #ffffff;
    
    --font-archivo: 'Archivo', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
  }
  
  /* Global Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Prevent horizontal overflow */
  /* *,
  *::before,
  *::after {
    max-width: 100%;
  } */
  
  img,
  video,
  iframe,
  embed,
  object {
    max-width: 100%;
    height: auto;
  }
  
  /* Ensure all media elements don't exceed viewport */
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
  }
  
  /* Custom Scrollbar - Cleaning Service Theme */
  ::-webkit-scrollbar {
      width: 12px;
  }
  
  ::-webkit-scrollbar-track {
      background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
      border-left: 1px solid #252525;
  }
  
  ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg,
              #ef772b 0%,
              #f5a855 25%,
              #e9c354 50%,
              #f5a855 75%,
              #ef772b 100%);
      border-radius: 6px;
      border: 2px solid #0a0a0a;
      box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg,
              #e9c354 0%,
              #ffd700 25%,
              #ffffff 50%,
              #ffd700 75%,
              #e9c354 100%);
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5),
          0 0 8px rgba(233, 195, 84, 0.4);
  }
  
  ::-webkit-scrollbar-thumb:active {
      background: linear-gradient(180deg, #d9691f 0%, #ef772b 100%);
  }
  
  /* Firefox scrollbar */
  * {
      scrollbar-width: thin;
      scrollbar-color: #ef772b #0a0a0a;
  }
  
  
  body {
    font-family: var(--font-archivo);
    background-color: var(--color-white);
    color: var(--color-dark);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    /* STICKY NAVIGATION PADDING - Commented out for future use */
    /* padding-top: 102px; */
    padding-top: 0; /* Removed padding since nav is not sticky */
  }
  
  /* Navigation Bar */
  .navbar {
    /* STICKY NAVIGATION - Commented out for future use */
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 1000; */
    position: relative; /* Changed from fixed to relative */
    background-color: var(--color-dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optimize for smooth animations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 1100; /* ensure dropdowns sit above content */
    overflow: visible; /* allow dropdowns to overflow */
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
/*     padding-left: 100px; */
    overflow: visible; /* prevent clipping dropdowns */
  }
  
  /* Remove left padding on mobile for proper menu alignment */
  @media (max-width: 991px) {
    .navbar .container {
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .navbar-logo-wrapper {
      margin: 0 1rem;
    }
    
    .navbar-left-links,
    .navbar-right-links {
      gap: 1rem;
    }
    
    .navbar-right-links .btn-appointment {
      margin-left: 0.5rem;
      padding: 8px 12px;
      font-size: 12px;
    }
  }
  
  .navbar-left-links {
    gap: 2rem;
  }
  
  .navbar-logo-wrapper {
    margin: 0 4rem;
    flex-shrink: 0; !important/* prevent logo from shrinking too much */
    min-width: 0; !important
    
  }
  
  .navbar-right-links {
    gap: 2rem;
  }
  
  .navbar-right-links .btn-appointment {
    margin-left: 2rem;
  }
  
  .navbar-toggler {
    border: 1px solid var(--color-primary);
    padding: 8px 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
  }
  
  .navbar-toggler:active {
    transform: scale(0.95);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(239, 119, 43, 0.25);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28239, 119, 43, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  .navbar-collapse {
    background-color: var(--color-dark);
    margin-top: 10px;
    padding: 20px;
    border-radius: 5px;
    transition: height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    will-change: height, opacity;
  }
  
  /* Smooth collapsing animation */
  .navbar-collapse.collapsing {
    transition: height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    overflow: hidden;
    /* Optimize for smooth animations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: height, opacity;
  }
  
  /* Smooth show state */
  .navbar-collapse.show {
    transition: height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    /* Optimize for smooth animations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  /* Remove padding on mobile menu container for proper left alignment */
  @media (max-width: 991px) {
    .navbar-collapse {
      padding-left: 0;
      padding-right: 0;
    }
    
    /* Optimize mobile menu animation */
    .navbar-collapse.collapsing {
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
      will-change: height, opacity;
    }
    
    .navbar-collapse.show {
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
    
    /* Prevent body scroll during menu animation */
    body.menu-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
    }
  }
  
  @media (min-width: 992px) {
    .navbar-collapse {
      background-color: transparent;
      margin-top: 0;
      padding: 0;
    }
  }
  
  .navbar .nav-link {
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
  }
  
  .navbar-nav {
  gap:40px;!important
  }
  
  .navbar .nav-link:hover {
    color: var(--color-primary) !important;
  }
  
  /* Navbar Dropdowns */
  .navbar .menu-item-has-children > a.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: .35rem;
    vertical-align: .255em;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
  }
  
  .navbar .dropdown-menu {
    background-color: var(--color-dark);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: .5rem 0;
    margin-top: .5rem;
    z-index: 1100;
    overflow: hidden;
    max-height: none;
    inset: auto auto auto 0; /* align under parent */
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  }
  
  .navbar .navbar-nav,
  .navbar .navbar-nav > li,
  .navbar .dropdown {
    overflow: visible;
  }
  
  .navbar .dropdown-menu .menu-item > a,
  .navbar .dropdown-menu > li > a,
  .navbar .dropdown-menu a {
    color: var(--color-white);
    font-family: var(--font-archivo);
    font-size: 14px;
    padding: .45rem 1rem;
    display: block;
    text-decoration: none;
    white-space: normal;
    line-height: 1.4;
  }
  
  .navbar .dropdown-menu a:hover {
    background-color: #2a2a2a;
    color: var(--color-primary);
  }
  
  .navbar .dropdown > .dropdown-toggle {
    color: inherit;
  }
  
  .navbar .dropdown > .dropdown-toggle:focus,
  .navbar .dropdown > .dropdown-toggle.show {
    color: inherit;
    background-color: transparent;
    box-shadow: none;
    outline: none;
  }
  
  @media (max-width: 991.98px) {
    .navbar .dropdown {
      position: static;
    }
    
    .navbar .dropdown-menu {
      position: static;
      float: none;
      width: 100%;
      margin: 0.35rem 0 0.75rem 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 0.5rem 0;
      display: none;
       max-height: 300px;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
    }
    
    .navbar .dropdown-menu.show {
      display: block;
    }
    
    .navbar .dropdown .dropdown-toggle::after {
      float: right;
      margin-top: 0.35rem;
      transform: rotate(0deg);
      transition: transform 0.2s ease;
    }
    
    .navbar .dropdown.show > .dropdown-toggle::after {
      transform: rotate(180deg);
    }
  }
  .logo-img {
    width: 126px;
    height: 101px;
    object-fit: cover;
  }
  
  .btn-appointment {
        font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 12px;
    padding: 10px 10px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-transform: uppercase;

  }
  
  .btn-appointment:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: clamp(600px, 100vh, 800px);
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
  }
  
  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.79) 39%, rgba(0,0,0,0.47) 69%, rgba(255,255,255,0) 100%);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    padding-left: 0px;
  }
  
  .hero-subtitle {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-secondary);
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .hero-title {
    font-family: var(--font-playfair);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 38px;
    line-height: 2.8rem;
    margin-bottom: 28px;
  }
  
  .hero-description {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-white);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 23px;
    max-width: 857px;
  }
  
  .btn-learn-more {
    width: 152px;
    height: 46px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  
  .btn-learn-more:hover {
    background-color: rgba(239, 119, 43, 0.1);
  }
  
  /* Services Section */
  .services-section {
    background-color: var(--color-dark);
    padding: 80px 0;
  }
  
  
   .section-subtitle {
    font-family: var(--font-archivo);
    font-weight: 500;
    color: var(--color-secondary);
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .section-title {
    font-family: var(--font-playfair);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 50px;
    line-height: 60px;
  }
  
  
  
  
  
  /* Map current services markup to old card design (non-destructive) */
  /* Hide grid layout when Swiper is present */
  .services .services-wrapper:not(.swiper) {
    display: grid;
    gap: 32px;
    width: 100%;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) {
    .services .services-wrapper:not(.swiper) {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
  }
  @media (min-width: 992px) {
    .services .services-wrapper:not(.swiper) {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
  }
  .services .services-content {
    position: relative;
    height: 255px;
    overflow: hidden;
    border: 1px solid var(--color-secondary);
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 31px;
    padding: 0;
  }
  .services .services-img {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .services .services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .services .services-content:hover .services-img img {
    transform: scale(1.1);
  }
  .services .services-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.53);
    transition: background-color 0.3s ease;
    z-index: 2;
  }
  .services .services-content:hover::after {
    background-color: rgba(0, 0, 0, 0.45);
  }
  .services .services-title,
  .services .services-content-para,
  .services .services-content-btn {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .services .services-title h3 {
    margin: 0;
    font-family: var(--font-archivo);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 26px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    padding: 0;
    /* Ensure text doesn't overflow */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .services .services-title a {
    color: var(--color-primary);
    text-decoration: none;
  }
  .services .services-content-para { display: none; }
  .services .services-content-btn .btn {
    min-width: 120px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: inline-block;
  }
  .services .services-content-btn .btn:hover {
    background-color: rgba(239, 119, 43, 0.1);
  }
  @media (max-width: 991.98px) {
    .services .services-wrapper:not(.swiper) {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
  }
  
  /* Swiper overrides for services section - only when Swiper is initialized */
  .services .services-wrapper.swiper {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100%;
    position: relative;
    padding-bottom: 60px;
    grid-template-columns: none !important;
    gap: 0 !important;
    /* Ensure container has proper width calculation */
    box-sizing: border-box;
  }
  
  /* Make services section container wider for larger cards */
  .services-section .container {
    max-width: 1400px;
  }
  
  /* Hide any duplicate services-wrapper that doesn't have swiper class */
  .services-section .row .services-wrapper:not(.swiper) {
    display: none !important;
  }
  .services .services-wrapper.swiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
    width: 100%;
    flex-direction: row !important;
  }
  .services .services-wrapper.swiper .swiper-slide {
    height: auto;
    display: flex !important;
    /* Let Swiper calculate width - don't use auto */
    flex-shrink: 0;
    box-sizing: border-box;
    /* Force consistent sizing */
    align-items: stretch;
    /* Prevent slides from sizing based on content */
    min-width: 0;
    max-width: none;
  }
  .services .services-wrapper.swiper .swiper-slide .services-content {
    width: 100% !important;
    height: 255px !important;
    min-width: 0;
    max-width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    /* Ensure consistent card sizing */
    box-sizing: border-box;
    /* Prevent content from affecting card size */
    overflow: hidden;
  }
  /* Swiper pagination styling */
  .services-swiper-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
  }
  .services-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  .services-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    transform: scale(1.2);
  }
  /* Keep pagination visible on all screen sizes */
  .services-swiper-pagination {
    display: block !important;
  }
   
  
   
  
  
  
  
  /* ======= Front page services (custom layout) ======= */
  
  /*   .services .title-box h5 {
    font-family: var(--font-archivo);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: .25rem;
  }
  .services .title-box .section-title {
    margin-bottom: .25rem;
  }
  .services .banner-section-elements .banner-line-1,
  .services .banner-section-elements .banner-line-2 {
    height: 2px;
    background: var(--color-secondary);
  }
  .services .banner-section-elements .banner-line-1 {
    width: 48px;
  }
  .services .banner-section-elements .banner-line-2 {
    width: 24px;
    opacity: .7;
  }
  
  .services .services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
  }
  .services .services-content {
    background-color: var(--color-dark);
    border: 1px solid #2a2a2a;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .services .services-title h3 {
    font-family: var(--font-archivo);
    font-weight: 700;
    font-size: 20px;
    margin: 0;
  }
  .services .services-title a {
    color: var(--color-primary);
    text-decoration: none;
  }
  .services .services-title a:hover {
    text-decoration: underline;
  }
  .services .services-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    display: block;
  }
  .services .services-content-para {
    color: var(--color-white);
    opacity: .85;
    font-family: var(--font-open-sans);
    font-size: 15px;
  }
  .services .services-content-btn .btn {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
  .services .services-content-btn .btn:hover {
    background-color: rgba(239, 119, 43, .1);
  }
  
  @media (max-width: 991.98px) {
    .services .services-img img {
      height: 200px;
    }
  }
  @media (max-width: 575.98px) {
    .services .services-img img {
      height: 180px;
    }
  } */
  
  
  
  
  
  
  .service-card {
    position: relative;
    height: 255px;
    overflow: hidden;
    border: 1px solid var(--color-secondary);
    border-radius: 0;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: scale(1.02);
  }
  
  .service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    /* Prevent image stretching - maintain aspect ratio */
    display: block;
  }
  
  /* Zoom in effect on service images */
  .service-card:hover .service-bg {
    transform: scale(1.1);
  }
  
  .service-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.53);
    transition: background-color 0.3s ease;
  }
  
  /* Slightly reduce overlay on hover for better image visibility */
  .service-card:hover .service-overlay {
    background-color: rgba(0, 0, 0, 0.45);
  }
  
  .service-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 31px;
    padding: 24px;
    z-index: 1;
  }
  
  .service-title {
    font-family: var(--font-archivo);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 26px;
    text-align: center;
    white-space: nowrap;
  }
  
  .service-card .btn {
    width: 120px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
  }
  
  .service-card .btn:hover {
    background-color: rgba(239, 119, 43, 0.1);
  }
   
  
  
  
  
  
  
  /* About Section */
  .about-section {
    background-color: var(--color-dark);
    padding: 80px 0;
  }
  
  
  
  .about-content-wrapper {
    position: relative;
  /*   overflow: hidden; */
  }
  
  .about-image-wrapper {
    float: right;
    width: 45%;
    max-width: 500px;
    margin-left: 40px;
    margin-bottom: 20px;
    overflow: visible;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .about-content {
  /*   overflow: hidden; */
  }
  
  
  .about-content-wrapper-2 {
    margin-top: 60px;
  }
  
  .about-image-wrapper-left {
    float: left !important;
    margin-left: 0 !important;
    margin-right: 40px !important;
  }
  
  .about-content-right {
    /* Content flows around left-floated image */
  }
  
  
  
    
    .about-content {
      width: 100%;
    }
  
  
  
  
  .about-content .section-subtitle {
    color: var(--color-secondary);
    margin-bottom: 16px;
  }
  
  .about-content .section-title {
    text-align: left;
    font-size: 50px;
    line-height: 51px;
    margin-bottom: 32px;
    color: var(--color-primary);
  }
  
  .about-description {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-white);
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 32px;
  }
  
  /* Contact Form Section - Front Page (Original Dark Style) */
  .contact-section:not(.contact-page-section) {
    background-color: var(--color-dark);
  }
  
  .contact-section:not(.contact-page-section) .contact-form-wrapper {
    background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(48,48,48,1) 100%);
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-section:not(.contact-page-section) .contact-form-content {
    width: 100%;
  }
  
  .contact-section:not(.contact-page-section) .contact-form-content .section-subtitle {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  .contact-section:not(.contact-page-section) .contact-form-content .section-title {
    text-align: left;
    font-size: 50px;
  }
  
  .contact-section:not(.contact-page-section) .contact-input {
    height: 55px;
    background-color: var(--color-gray-medium);
    border: 0;
    border-radius: 4px;
    color: var(--color-gray-light);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 15px;
  }
  
  .contact-section:not(.contact-page-section) .contact-input::placeholder {
    color: var(--color-gray-light);
  }
  
  .contact-section:not(.contact-page-section) .contact-input:focus {
    background-color: var(--color-gray-medium);
    color: var(--color-white);
    box-shadow: none;
    border: 0;
  }
  
  .contact-section:not(.contact-page-section) textarea.contact-input {
    height: 154px;
    resize: none;
    padding-top: 12px;
  }
  
  .contact-section:not(.contact-page-section) .contact-form-content .btn {
    height: 46px;
    padding: 0 25px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  
  .contact-section:not(.contact-page-section) .contact-form-content .btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  /* WPForms Button Styling - Front Page (Original Style) */
  .contact-section:not(.contact-page-section) .contact-form-content .wpforms-submit,
  .contact-section:not(.contact-page-section) .contact-form-content .wpforms-form button[type="submit"],
  .contact-section:not(.contact-page-section) .contact-form-content input[type="submit"] {
    height: 46px !important;
    padding: 0 25px !important;
    background-color: transparent !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    font-family: var(--font-archivo) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
  }
  
  .contact-section:not(.contact-page-section) .contact-form-content .wpforms-submit:hover,
  .contact-section:not(.contact-page-section) .contact-form-content .wpforms-form button[type="submit"]:hover,
  .contact-section:not(.contact-page-section) .contact-form-content input[type="submit"]:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
  }
  
  /* Contact Page Section - New Professional Light Style */
  .contact-page-section {
    background-color: #000 !important;
  }
  
  .contact-page-section .contact-form-wrapper {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    padding: 60px 50px !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .contact-page-section .contact-form-content .section-subtitle {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 14px !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
  }
  
  .contact-page-section .contact-form-content .section-title {
    text-align: left !important;
    font-size: 42px !important;
    color: var(--color-dark) !important;
    margin-bottom: 15px !important;
  }
  
  .contact-page-section .contact-input {
    height: 55px !important;
    background-color: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    color: var(--color-dark) !important;
    font-family: var(--font-archivo) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
    transition: all 0.3s ease !important;
  }
  
  .contact-page-section .contact-input::placeholder {
    color: #999 !important;
  }
  
  .contact-page-section .contact-input:focus {
    background-color: #ffffff !important;
    color: var(--color-dark) !important;
    box-shadow: 0 0 0 3px rgba(239, 119, 43, 0.1) !important;
    border-color: var(--color-primary) !important;
    outline: none !important;
  }
  
  .contact-page-section textarea.contact-input {
    height: 154px !important;
    resize: none !important;
    padding-top: 12px !important;
  }
  
  .contact-page-section .contact-form-content .btn {
    height: 50px !important;
    padding: 0 35px !important;
    background-color: transparent !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    font-family: var(--font-archivo) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
  
  .contact-page-section .contact-form-content .btn:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(239, 119, 43, 0.3) !important;
  }
  
  /* WPForms Button Styling - Contact Page */
  .contact-page-section .contact-form-content .wpforms-submit,
  .contact-page-section .contact-form-content .wpforms-form button[type="submit"],
  .contact-page-section .contact-form-content input[type="submit"] {
    height: 50px !important;
    padding: 0 35px !important;
    background-color: transparent !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    font-family: var(--font-archivo) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
  
  .contact-page-section .contact-form-content .wpforms-submit:hover,
  .contact-page-section .contact-form-content .wpforms-form button[type="submit"]:hover,
  .contact-page-section .contact-form-content input[type="submit"]:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(239, 119, 43, 0.3) !important;
  }
  
  /* WPForms Input Styling - Contact Page */
  .contact-page-section .contact-form-content .wpforms-form input[type="text"],
  .contact-page-section .contact-form-content .wpforms-form input[type="email"],
  .contact-page-section .contact-form-content .wpforms-form input[type="tel"],
  .contact-page-section .contact-form-content .wpforms-form input[type="url"],
  .contact-page-section .contact-form-content .wpforms-form textarea,
  .contact-page-section .contact-form-content .wpforms-form select {
    height: 55px !important;
    background-color: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    color: var(--color-dark) !important;
    font-family: var(--font-archivo) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
    transition: all 0.3s ease !important;
  }
  
  .contact-page-section .contact-form-content .wpforms-form textarea {
    height: 154px !important;
    padding-top: 12px !important;
  }
  
  .contact-page-section .contact-form-content .wpforms-form input:focus,
  .contact-page-section .contact-form-content .wpforms-form textarea:focus,
  .contact-page-section .contact-form-content .wpforms-form select:focus {
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(239, 119, 43, 0.1) !important;
    border-color: var(--color-primary) !important;
    outline: none !important;
  }
  
  .contact-page-section .contact-form-content .wpforms-form input::placeholder,
  .contact-page-section .contact-form-content .wpforms-form textarea::placeholder {
    color: #999 !important;
  }
  
  .contact-image-wrapper {
    position: relative;
    height: 618px;
  }
  
  .contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Contact Info Section - Contact Page Only */
  .contact-page-section .contact-info-wrapper {
    background-color: #ffffff !important;
    padding: 60px 50px !important;
    height: 100% !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
  }
  
  .contact-page-section .contact-info-content {
    width: 100%;
  }
  
  .contact-page-section .contact-info-content .section-subtitle {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 14px !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
  }
  
  .contact-page-section .contact-info-content .section-title {
    text-align: left !important;
    font-size: 42px !important;
    color: var(--color-dark) !important;
    margin-bottom: 15px !important;
  }
  
  .contact-page-section .contact-info-list {
    margin-top: 30px;
  }
  
  .contact-page-section .contact-info-item {
    padding-bottom: 25px !important;
    border-bottom: 1px solid #e8e8e8 !important;
    transition: all 0.3s ease !important;
  }
  
  .contact-page-section .contact-info-item:hover {
    padding-left: 5px !important;
  }
  
  .contact-page-section .contact-info-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
  
  .contact-page-section .contact-icon-wrapper {
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(239, 119, 43, 0.1) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
  }
  
  .contact-page-section .contact-icon-wrapper:hover {
    background-color: var(--color-primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(239, 119, 43, 0.3) !important;
  }
  
  .contact-page-section .contact-icon {
    width: 24px !important;
    height: 24px !important;
    color: var(--color-primary) !important;
    transition: color 0.3s ease !important;
  }
  
  .contact-page-section .contact-icon-wrapper:hover .contact-icon {
    color: var(--color-white) !important;
  }
  
  .contact-page-section .contact-info-details {
    flex: 1;
  }
  
  .contact-page-section .contact-info-title {
    font-family: var(--font-archivo) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--color-dark) !important;
    margin-bottom: 8px !important;
  }
  
  .contact-page-section .contact-info-text {
    font-family: var(--font-archivo) !important;
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.6 !important;
  }
  
  .contact-page-section .contact-info-text a {
    color: #666 !important;
    transition: color 0.3s ease !important;
  }
  
  .contact-page-section .contact-info-text a:hover {
    color: var(--color-primary) !important;
  }
  
  /* Google Maps Section */
  .contact-map-section {
    background-color: #f8f9fa;
  }
  
  .map-header {
    margin-bottom: 40px;
  }
  
  .map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .google-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .google-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  
  /* Responsive Contact Page */
  @media (max-width: 992px) {
    .contact-page-section .contact-form-wrapper {
      padding: 50px 40px !important;
    }
    
    .contact-page-section .contact-info-wrapper {
      margin-top: 30px !important;
      padding: 50px 40px !important;
    }
    
    .contact-page-section .contact-form-content .section-title,
    .contact-page-section .contact-info-content .section-title {
      font-size: 36px !important;
    }
    
    .google-map-container {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-page-section .contact-form-wrapper {
      padding: 40px 30px !important;
    }
    
    .contact-page-section .contact-info-wrapper {
      padding: 40px 30px !important;
    }
    
    .contact-page-section .contact-form-content .section-title,
    .contact-page-section .contact-info-content .section-title {
      font-size: 32px !important;
    }
    
    .contact-page-section .contact-icon-wrapper {
      width: 45px !important;
      height: 45px !important;
    }
    
    .contact-page-section .contact-icon {
      width: 20px !important;
      height: 20px !important;
    }
    
    .contact-page-section .contact-info-title {
      font-size: 16px !important;
    }
    
    .contact-page-section .contact-info-text {
      font-size: 14px !important;
    }
    
    .google-map-container {
      height: 350px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-page-section .contact-form-wrapper {
      padding: 30px 20px !important;
    }
    
    .contact-page-section .contact-info-wrapper {
      padding: 30px 20px !important;
    }
    
    .contact-page-section .contact-form-content .section-title,
    .contact-page-section .contact-info-content .section-title {
      font-size: 28px !important;
    }
    
    .google-map-container {
      height: 300px;
    }
  }
  
  
  
  
  
  
  
  
  /* Why Choose Us Section */
  .why-choose-section {
    background-color: var(--color-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Sparkle Glow Effect - Cursor Following */
  .sparkle-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
  }
  
  .sparkle-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle at center,
              rgba(239, 119, 43, 0.15) 0%,
              rgba(233, 195, 84, 0.08) 30%,
              rgba(239, 119, 43, 0.03) 50%,
              transparent 70%);
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.4s ease-out;
      will-change: transform, opacity;
      filter: blur(30px);
  }
  
  .sparkle-glow.active {
      opacity: 1;
  }
  
  /* Sparkle particles */
  .sparkle-particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(233, 195, 84, 0.8);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      animation: sparkleFloat 1.2s ease-out forwards;
      box-shadow: 0 0 6px rgba(233, 195, 84, 0.6), 0 0 12px rgba(239, 119, 43, 0.3);
  }
  
  @keyframes sparkleFloat {
      0% {
          opacity: 1;
          transform: translate(-50%, -50%) scale(1);
      }
  
      100% {
          opacity: 0;
          transform: translate(-50%, -50%) scale(0) translateY(-30px);
      }
  }
  
  /* Ensure section content is above sparkle effect */
  .why-choose-section>.container {
      position: relative;
      z-index: 2;
  }
  
  /* Desktop only - disable on mobile for performance */
  @media (max-width: 1024px),
  (pointer: coarse) {
      .sparkle-container {
          display: none;
      }
  }
  
  
  .feature-card {
    background-color: var(--color-gray-dark);
    border: 1px solid #474747;
    border-radius: 10px;
    padding: 24px;
    height: 316px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  /* Hover Effects on Feature Cards */
  .feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--color-primary);
    background-color: #2a2a2a;
    box-shadow: 0 15px 35px rgba(239, 119, 43, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Icon Animation on Hover */
  .feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 10px rgba(239, 119, 43, 0.5));
  }
  
  /* Title Color Change on Hover */
  .feature-card:hover .feature-title {
    color: var(--color-secondary);
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  
  /* Description Text Enhancement on Hover */
  .feature-card:hover .feature-description {
    color: var(--color-white);
    transition: color 0.3s ease;
  }
  
  /* Subtle Background Glow Effect */
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 119, 43, 0.05) 0%, rgba(233, 195, 84, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
    pointer-events: none;
  }
  
  .feature-card:hover::before {
    opacity: 1;
  }
  
  .feature-icon-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .feature-icon {
    max-width: 70px;
    max-height: 70px;
    transition: filter 0.4s ease, transform 0.4s ease;
  }
  
  .feature-title {
    font-family: var(--font-archivo);
    font-weight: 800;
    color: var(--color-primary);
    font-size: 22px;
    text-align: center;
    white-space: pre-line;
    margin-bottom: 6px;
    transition: all 0.3s ease;
  }
  
  .feature-description {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-gray-light);
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  @media (min-width: 992px) {
    .why-choose-section .row.g-4 {
      display: flex;
      flex-wrap: nowrap;
    }
  
    .why-choose-section .row.g-4 > [class*="col-"] {
      flex: 1 1 0;
      max-width: 20%; /* 5 equal columns */
    }
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--color-dark);
    padding: 80px 0;
  }
  
  
  .testimonial-info {
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-logo {
    width: 83px;
    height: 67px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .testimonial-company {
    font-family: var(--font-archivo);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  
  .testimonial-stars {
    width: 96px;
    height: 15px;
    margin-bottom: 8px;
  }
  
  .testimonial-count {
    font-family: var(--font-open-sans);
    font-weight: 400;
    color: var(--color-white);
    font-size: 14px;
    line-height: 28px;
  }
  
  .testimonial-info .btn {
    width: 139px;
    height: 40px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
  }
  
  .testimonial-info .btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  .testimonial-widget {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .testimonial-widget-large {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  
  
  /* Testimonials Section - Responsive */
  @media (max-width: 991px) {
      .testimonials-section {
          padding: 60px 0;
      }
  
      .testimonials-section .col-lg-3 {
          margin-bottom: 30px;
      }
  
      .testimonial-info {
          align-items: center;
          text-align: center;
      }
  
      .testimonial-info .d-flex.gap-3.mb-4 {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
  
      .testimonial-info .btn {
          margin: 0 auto;
      }
  
      .testimonials-section .col-lg-9 .d-flex {
          justify-content: center;
      }
  }
  
  @media (max-width: 768px) {
      .testimonials-section {
          padding: 50px 0;
      }
  
      .testimonials-section .section-title {
          font-size: 28px;
          line-height: 1.3;
      }
  
      .testimonial-company {
          font-size: 20px;
          line-height: 24px;
      }
  
      .testimonial-logo {
          width: 70px;
          height: 56px;
      }
  
      .testimonial-widget {
          max-width: 100%;
          height: auto;
      }
  }
  
  @media (max-width: 576px) {
      .testimonials-section {
          padding: 40px 0;
      }
  
      .testimonials-section .section-title {
          font-size: 24px;
          padding: 0 10px;
      }
  
      .testimonials-section .section-subtitle {
          font-size: 11px;
      }
  
      .testimonial-company {
          font-size: 18px;
      }
  
      .testimonial-logo {
          width: 60px;
          height: 48px;
      }
  
      .testimonial-stars {
          width: 80px;
          height: 13px;
      }
  
      .testimonial-count {
          font-size: 13px;
      }
  
      .testimonial-info .btn {
          width: 130px;
          height: 38px;
          font-size: 12px;
      }
  
      .testimonial-widget {
          border-radius: 10px;
      }
  }
  
  
  
  
  
  
  /* Gallery Section (fresh implementation) */
  .gallery-section {
    padding: 80px 0;
    background-color: var(--color-dark);
  }
  
  
  
  /* Gallery Page – Tabbed Filter Layout */
  .gallery-sections {
      background-color: var(--color-dark);
      padding: 80px 0;
  }
  
  /* Gallery Tabs Navigation */
  .gallery-tabs-wrapper {
      margin-bottom: 60px;
      display: flex;
      justify-content: center;
  }
  
  .gallery-tabs-nav {
      display: inline-flex;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 8px;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .gallery-tab-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background-color: transparent;
      border: none;
      border-radius: 8px;
      color: var(--color-gray-light);
      font-family: var(--font-archivo);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      white-space: nowrap;
  }
  
  .gallery-tab-btn .tab-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
  }
  
  .gallery-tab-btn .tab-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
  }
  
  .gallery-tab-btn:hover {
      color: var(--color-white);
      background-color: rgba(255, 255, 255, 0.08);
  }
  
  .gallery-tab-btn:hover .tab-icon {
      transform: scale(1.1);
  }
  
  .gallery-tab-btn.active {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      color: var(--color-white);
      box-shadow: 0 4px 15px rgba(239, 119, 43, 0.4);
  }
  
  .gallery-tab-btn.active .tab-icon {
      transform: scale(1.1);
  }
  
  /* Gallery Tab Content */
  .gallery-tab-content {
      display: none;
      animation: fadeInTab 0.4s ease-out;
  }
  
  .gallery-tab-content.active {
      display: block;
  }
  
  @keyframes fadeInTab {
      from {
          opacity: 0;
          transform: translateY(10px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .gallery-empty-message {
      font-family: var(--font-archivo);
      font-size: 15px;
      color: var(--color-gray-light);
      padding: 60px 20px;
      background-color: rgba(255, 255, 255, 0.02);
      border-radius: 12px;
      border: 1px dashed rgba(255, 255, 255, 0.1);
      text-align: center;
  }


.gallery-tabs-wrapper .gallery-tabs-nav .gallery-tab-btn span.tab-text {
    color: white;
}




/* Gallery Page Labels (Before/After) */
/* .fancybox-gallery-item .gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-family: var(--font-archivo);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    z-index: 2;
}

@media (max-width: 576px) {
    .fancybox-gallery-item .gallery-label {
        padding: 5px 10px;
        font-size: 10px;
        bottom: 10px;
        left: 10px;
    }
} */



  
  /* Responsive Gallery Tabs */
  @media (max-width: 768px) {
      .gallery-sections {
          padding: 60px 0;
      }
      
      .gallery-tabs-wrapper {
          margin-bottom: 40px;
          padding: 0 15px;
      }
      
      .gallery-tabs-nav {
          flex-direction: column;
          width: 100%;
          max-width: 400px;
          margin: 0 auto;
      }
      
      .gallery-tab-btn {
          width: 100%;
          justify-content: center;
          padding: 12px 20px;
      }
      
      .gallery-tab-btn .tab-text {
          font-size: 14px;
      }
  }
  
  @media (max-width: 576px) {
      .gallery-sections {
          padding: 50px 0;
      }
      
      .gallery-tabs-nav {
          padding: 6px;
          gap: 6px;
      }
      
      .gallery-tab-btn {
          padding: 10px 16px;
          font-size: 13px;
      }
      
      .gallery-tab-btn .tab-icon {
          width: 18px;
          height: 18px;
      }
      
      .gallery-empty-message {
          padding: 40px 15px;
          font-size: 14px;
      }
  }
  
  
  
  /* Section Header */
  .gallery-section .section-subtitle {
    color: var(--color-secondary);
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .gallery-section .section-title {
    color: var(--color-primary);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
  }
  
  /* Gallery Items */
  .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  
  
  /* Fancybox Gallery Item */
  .fancybox-gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      aspect-ratio: 1 / 1;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .fancybox-gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(239, 119, 43, 0.3);
  }
  
  .fancybox-gallery-link {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      position: relative;
  }
  
  .fancybox-gallery-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform: scale(1);
  }
  
  .fancybox-gallery-item:hover .fancybox-gallery-image {
      transform: scale(1.15);
  }
  
  /* Overlay + Icon for gallery items (used on Gallery page sections) */
  .gallery-item-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg,
              rgba(239, 119, 43, 0.85) 0%,
              rgba(233, 195, 84, 0.75) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
  }
  
  .fancybox-gallery-item:hover .gallery-item-overlay {
      opacity: 1;
  }
  
  .gallery-item-icon {
      width: 60px;
      height: 60px;
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      transform: scale(0.8);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .fancybox-gallery-item:hover .gallery-item-icon {
      transform: scale(1);
  }
  
  .gallery-item-icon svg {
      width: 28px;
      height: 28px;
  }
  
  
  
  
  .gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #E67E3C;
    padding: 25px 30px;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    font-family: 'Georgia', serif;
  }
  
  .gallery-featured {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Layout Adjustments */
  .gallery-section .row.g-0 > .col-lg-6:first-child .row {
    height: 600px;
    flex-direction: row !important;
  }
  
  .gallery-section .row.g-0 > .col-lg-6:first-child .row .col-12 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    height: 100% !important;
  }
  
  .gallery-section .row.g-0 > .col-lg-6 {
    height: 600px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: var(--animation-delay, 0ms);
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .gallery-section .section-title {
      font-size: 36px;
    }
    .gallery-section .row.g-0 > .col-lg-6 {
      height: auto;
    }
    .gallery-section .row.g-0 > .col-lg-6:first-child .row .col-12 {
      height: 300px;
    }
    .gallery-section .gallery-featured {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-section {
      padding: 60px 0;
    }
    .gallery-section .section-title {
      font-size: 32px;
      padding: 0 15px;
    }
    .gallery-section .section-subtitle {
      font-size: 11px;
      letter-spacing: 3px;
    }
    .gallery-section .gallery-label {
      padding: 18px 20px;
      font-size: 22px;
    }
    .gallery-section .row.g-0 > .col-lg-6:first-child .row .col-12 {
      height: 250px;
    }
    .gallery-section .gallery-featured {
      height: 350px;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-section .section-title {
      font-size: 28px;
    }
    .gallery-section .gallery-label {
      padding: 15px;
      font-size: 20px;
    }
  }
  
  
  
  
  /* Front page desktop gallery slider */
  /* .front-gallery-wrapper {
    padding: 0 80px;
  }
  .front-gallery-swiper {
    padding-bottom: 48px;
  }
  .front-gallery-slide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
  }
  .front-gallery-item {
    border: 1px solid rgba(233, 195, 84, 0.35);
    background-color: transparent;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .front-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .front-gallery-item:hover .front-gallery-image {
    transform: scale(1.08);
  }
  .front-gallery-label {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .front-gallery-controls {
    max-width: 100%;
  }
  .front-gallery-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    background: transparent;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .front-gallery-nav button:hover {
    background-color: var(--color-secondary);
    color: #000;
    border-color: var(--color-secondary);
  }
  .front-gallery-pagination {
    position: static;
  }
  .front-gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(233, 195, 84, 0.45);
    opacity: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .front-gallery-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    transform: scale(1.2);
  }
  
  @media (max-width: 1400px) {
    .front-gallery-wrapper {
      padding: 0 40px;
    }
  } */
  
  
  
  
  
  /* Footer Section */
  .footer-section {
    background-color: var(--color-dark);
    padding: 80px 0 40px;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
  }
  
  
  .footer-logo {
    width: 145px;
    height: 116px;
    object-fit: cover;
  }
  
  .footer-text {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-white);
    font-size: 15px;
    line-height: 23px;
  }
  
  .footer-hours {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-white);
    font-size: 18px;
    line-height: 18px;
  }
  
  .footer-hours strong {
    font-weight: 700;
    line-height: 30.2px;
  }
  
  .footer-heading {
    font-family: var(--font-playfair);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 23px;
    margin-bottom: 8px;
  }
  
  .footer-divider {
    width: 63px;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 1;
    margin: 0 0 20px 0;
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-white);
    font-size: 16px;
    line-height: 35px;
  }
  
  .footer-list a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-list a:hover {
    color: var(--color-primary);
  }
  
  .footer-contact {
    font-family: var(--font-archivo);
    font-weight: 400;
    color: var(--color-white);
    font-size: 16px;
  }
  
  .footer-icon {
    width: 20px;
    height: 20px;
    color: var(--color-white);
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--color-primary);
    transition: background-color 0.3s ease;
  }
  
  .social-link:hover {
    background-color: #d66624;
  }
  
  .social-link svg {
    width: 16px;
    height: 16px;
    color: var(--color-white);
  }
  
  .social-link-instagram {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    transition: opacity 0.3s ease;
  }
  
  .social-link-instagram:hover {
    opacity: 0.8;
  }
  
  .social-instagram {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .footer-bottom {
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 3rem !important;
    padding-top: 1.5rem !important;
  }
  
  .footer-bottom-line {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0;
    height: 1px;
    border: 0;
  }
  
  .footer-copyright {
    font-family: var(--font-roboto);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    letter-spacing: -0.39px;
    white-space: nowrap;
    display: block !important;
    visibility: visible !important;
  }
  
  /* Bootstrap Overrides */
  .btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
  }
  
  /* ============================
     Appointment Popup (Global)
     ============================ */
  .appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  }
  
  .appointment-modal.is-visible {
  display: flex;
  }
  
  .appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  }
  
  .appointment-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 24px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  }
  
  .appointment-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  }
  
  .appointment-modal__header {
  text-align: center;
  margin-bottom: 20px;
  }
  
  .appointment-modal__subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 4px;
  color: var(--color-primary);
  }
  
  .appointment-modal__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  }
  
  .appointment-modal__desc {
  margin: 0;
  font-size: 15px;
  color: #555;
  }
  
  .appointment-modal__body {
  padding: 0;
  }
  
  @media (max-width: 576px) {
  .appointment-modal {
    align-items: flex-start;
    padding: 16px;
  }
  
  .appointment-modal__dialog {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1200px) {
    .hero-content {
      padding-left: 40px;
    }
    
    .hero-title {
      font-size: 60px;
      line-height: 65px;
    }
    
    .contact-form-wrapper {
      padding: 60px 30px;
    }
  }
  
  @media (max-width: 992px) {
    body {
      /* STICKY NAVIGATION PADDING - Commented out for future use */
      /* padding-top: 90px; */
      padding-top: 0; /* Removed padding since nav is not sticky */
    }
    
    .navbar {
      padding: 10px 0;
    }
    
    .logo-img {
      width: 100px;
      height: 80px;
    }
    
    .hero-section {
      min-height: 100vh;
      padding: 90px 0 40px;
      overflow: hidden;
    }
    
    .hero-content {
      padding-left: 0;
    }
    
    .section-title {
      font-size: 40px;
      white-space: normal;
    }
    
    .hero-title {
      font-size: 48px;
      line-height: 52px;
      margin-bottom: 40px;
    }
    
    .hero-description {
      margin-bottom: 30px;
    }
    
    .feature-card {
      height: auto;
      min-height: 316px;
    }
    
    .services-section,
    .about-section,
    .why-choose-section,
    .testimonials-section,
    .gallery-section {
      padding: 60px 0;
    }
    
    .contact-form-wrapper {
      padding: 50px 30px;
    }
    
    .about-content .section-title {
      font-size: 40px;
      line-height: 45px;
    }
  }
  
  @media (max-width: 768px) {
    body {
      /* STICKY NAVIGATION PADDING - Commented out for future use */
      /* padding-top: 60px; */
      padding-top: 0; /* Removed padding since nav is not sticky */
      overflow-x: hidden;
      max-width: 100vw;
      width: 100%;
    }
    
    /* Ensure all containers respect viewport width on mobile */
    .container {
      max-width: 100%;
      padding-left: 15px;
      padding-right: 15px;
  /*     overflow-x: visible;!important */
    }
    
    /* Allow horizontal overflow only inside footer to avoid inner scrollbars */
    .footer-section .container,
    .footer-section .row {
  /*     overflow-x: visible !important; */
    }
    
    .container-fluid {
      max-width: 100%;
      overflow-x: hidden;
    }
    
    /* Gallery section container-fluid should have no padding */
    .gallery-section .container-fluid.px-0 {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    
    /* Ensure all sections respect viewport width */
    section {
      max-width: 100vw;
     overflow-x: hidden;
    }
    
    .navbar {
      padding: 8px 0;
    }
    
    .logo-img {
      width: 80px;
      height: 65px;
    }
    
    .hero-section {
      min-height: 550px;
      padding: 80px 0 40px;
    }
    .hero-section .container,
    .hero-section .row {
      overflow-x: visible !important;
    }
    
    .hero-content {
      padding: 0 20px;
    }
    
    .hero-subtitle {
      font-size: 16px;
      margin-bottom: 20px;
    }
    
    .section-title {
      font-size: 32px;
    }
    
    .hero-title {
      font-size: 36px;
      line-height: 40px;
      margin-bottom: 30px;
    }
    
    .hero-description {
      font-size: 14px;
      margin-bottom: 25px;
    }
      
      
  .about-image-wrapper {
      float: none;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 30px;
    }
      
      .about-image-wrapper-left {
      float: none !important;
      margin-right: 0 !important;
    }
      
      .about-content-wrapper-2 {
      margin-top: 40px;
    }
      
      
    
    .services-section,
    .about-section,
    .why-choose-section,
    .testimonials-section,
    .gallery-section {
      padding: 50px 0;
    }
    
    .about-content .section-title {
      font-size: 32px;
      line-height: 38px;
    }
    
    .contact-form-wrapper {
      padding: 40px 20px;
    }
    
    .service-card {
      height: 220px;
    }
    
    .service-title {
      font-size: 22px;
    }
    
    .gallery-item {
    }
    
    .gallery-image {
      height: auto;
    }
   
    
    .footer-section {
      padding: 50px 0 30px;
      overflow-y: visible;
      -webkit-overflow-scrolling: auto;
    }
  }
  
  /* Prevent inner scrollbars inside footer lists on mobile */
  .footer-section .footer-list {
    max-height: none;
    overflow: visible;
  }
  .footer-section .row,
  .footer-section .col-lg-3 {
    overflow: visible;
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 28px;
      line-height: 32px;
    }
    
    .section-title {
      font-size: 28px;
    }
    
    .about-content .section-title {
      font-size: 28px;
      line-height: 32px;
    }
    
    .service-card {
      height: 200px;
    }
    
    .service-title {
      font-size: 20px;
      white-space: normal;
    }
    
    .feature-card {
      min-height: 280px;
      padding: 20px;
    }
    
    .feature-title {
      font-size: 20px;
    }
    
    .contact-form-wrapper {
      padding: 30px 15px;
    }
    
    .contact-input {
      height: 50px;
      font-size: 14px;
    }
    
    textarea.contact-input {
      height: 120px;
    }
  }
  
  /* ============================================
     SERVICE DETAIL PAGE STYLES
     ============================================ */
  
  /* Breadcrumb Section */
  .breadcrumb-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
  }
  
  .breadcrumb {
    margin-bottom: 0;
  }
  
  .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-archivo);
  }
  
  .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb-item.active {
    color: var(--color-gray-medium);
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--color-gray-light);
    padding: 0 8px;
  }
  
  /* Service Banner Section */
  .service-banner-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .service-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
  }
  
  .service-banner-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
    color: var(--color-white);
  }
  
  .service-banner-subtitle {
    font-family: var(--font-archivo);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 15px;
  }
  
  .service-banner-title {
    font-family: var(--font-archivo);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
  }
  
  .service-banner-description {
    font-size: 18px;
    line-height: 1.8;
    color: #ef772b;
    max-width: 600px;
    font-family: var(--font-archivo);
  }
  
  /* Service Content Section */
  .service-content-section {
    padding: 60px 0;
  }
  
  /* Hero Image */
  .service-hero-image {
    margin-bottom: 30px;
  }
  
  /* .service-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  } */
  
  
  
  
  .service-hero-image img {
      object-fit: cover;
      width: 100%;
      height: 540px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Main Heading */
  .service-main-heading {
    font-family: var(--font-archivo);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 30px;
  }
  
  /* Content Text */
  .service-content-text {
    margin-bottom: 40px;
  }
  
  .service-content-subheading {
    font-family: var(--font-archivo);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    margin-top: 30px;
  }
  
  /* Image Slider */
  .service-image-slider {
    margin-top: 50px;
  }
  
  .slider-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .slider-item.active {
    opacity: 1;
    position: relative;
  }
  
  .slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-dark);
  }
  
  .slider-nav:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
  }
  
  .slider-prev {
    left: 15px;
  }
  
  .slider-next {
    right: 15px;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background-color: #f8f9fa;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
  }
  
  .dot.active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: 6px;
  }
  
  /* Sidebar Styles */
  .sidebar-form-wrapper,
  .sidebar-services-wrapper {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  /* .sidebar-form-header,
  .sidebar-services-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 20px;
    text-align: center;
  } */
  
  
  .sidebar-form-header,
  .sidebar-services-header {
    position: relative;
    padding: 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(
      349deg, var(--color-primary), var(--color-secondary)
    ), #000;
    background-blend-mode: multiply;
    border-radius: 6px;
    overflow: hidden; /* important */
  }
  
  /* Animated "water" border */
  .sidebar-form-header::before,
  .sidebar-services-header::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;              /* border thickness */
    border-radius: inherit;
    background: linear-gradient(
      120deg,
      #ee782b,
      #ffb601,
      #ee782b,
      #ffb601
    );
    background-size: 300% 300%;
    animation: borderFlow 4s linear infinite;
  
    /* Show ONLY the border, cut out center */
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
  
    pointer-events: none;
  }
  
  @keyframes borderFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  
  
  .sidebar-form-title,
  .sidebar-services-title {
    font-family: var(--font-archivo);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .sidebar-form-body {
    padding: 0px 20px 20px;
  }
  
  .appointment-form .form-group {
    margin-bottom: 20px;
  }
  
  .appointment-form .form-control {
    font-family: var(--font-archivo);
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
  }
  
  .appointment-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(239, 119, 43, 0.1);
  }
  
  .appointment-form .form-control::placeholder {
    color: var(--color-gray-light);
  }
  
  .btn-submit {
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 30px;
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
  }
  
  .btn-submit:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 119, 43, 0.3);
  }
  
  /* Other Services Sidebar */
  .sidebar-services-body {
    padding: 0;
  }
  
  .sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar-service-item {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .sidebar-service-item:last-child {
    border-bottom: none;
  }
  
  .sidebar-service-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .sidebar-service-item a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 50%;
    top: 0;
    z-index: -1;
    background: var(--color-primary);
    transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
  }
  
  .sidebar-service-item a:hover::before {
    width: 100%;
    left: 0;
  }
  
  .sidebar-service-item a:hover {
    color: #ffffff;
    padding-left: 35px;
  }
  
  .sidebar-service-item a svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .sidebar-service-item a:hover svg {
    transform: translateX(5px);
  }
  
  /* Service CTA Section */
  .service-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-dark) 100%);
  }
  
  .cta-title {
    font-family: var(--font-archivo);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
  }
  
  .cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-family: var(--font-archivo);
  }
  
  .btn-cta {
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 18px;
    padding: 15px 40px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-cta:hover {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 119, 43, 0.3);
  }
  
  /* Responsive Service Detail Page */
  @media (max-width: 992px) {
    .service-banner-title {
      font-size: 42px;
    }
    
    .service-main-heading {
      font-size: 28px;
    }
    
    .service-content-subheading {
      font-size: 20px;
    }
    
    .slider-wrapper {
      height: 350px;
    }
    
    .cta-title {
      font-size: 28px;
      margin-bottom: 15px;
    }
    
    .btn-cta {
      margin-top: 20px;
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .service-banner-section {
      min-height: 300px;
    }
    
    .service-banner-title {
      font-size: 32px;
    }
    
    .service-banner-description {
      font-size: 16px;
    }
    
    .service-main-heading {
      font-size: 24px;
    }
    
    .service-content-subheading {
      font-size: 18px;
    }
    
    .slider-wrapper {
      height: 300px;
    }
    
    .slider-nav {
      width: 35px;
      height: 35px;
    }
    
    .sidebar-form-wrapper,
    .sidebar-services-wrapper {
      margin-top: 30px;
    }
    
    .cta-title {
      font-size: 24px;
    }
    
    .cta-text {
      font-size: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .service-banner-content {
      padding: 40px 0;
    }
    
    .service-banner-title {
      font-size: 28px;
    }
    
    .service-content-section {
      padding: 40px 0;
    }
    
    .service-main-heading {
      font-size: 22px;
    }
    
    .service-content-subheading {
      font-size: 16px;
    }
    
    .slider-wrapper {
      height: 250px;
    }
    
    .slider-nav {
      width: 30px;
      height: 30px;
    }
    
    .slider-prev {
      left: 10px;
    }
    
    .slider-next {
      right: 10px;
    }
  }
  
  
   
  
  
  /* mobile responsive few pages */
  
  
  
  @media (max-width: 991px) {
    #about .row {
      --bs-gutter-x: 0 !important;
      --bs-gutter-y: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }
  
  @media (max-width: 991px) {
  .why-choose-section .row {
      --bs-gutter-x: 0 !important;  /* no horizontal gap */
      --bs-gutter-y: 3rem !important; /* large vertical gap (like gy-5) */
    }
  }
  
  @media (max-width:991px) {
      #contact .row {
          --bs-gutter-x: 0 !important;
      --bs-gutter-y: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      }
  }
  
  @media (max-width:991px) {
  .service-content-section .row {
      --bs-gutter-x: 0 !important;
      --bs-gutter-y: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      
  }
  }
  
  @media (max-width: 991px) {
    .service-hero-image img {
      object-fit: cover !important;
      width: 100% !important;
      height: 300px !important;
      border-radius: 10px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }
  }
  
  /* addiotion css service card inner */
  
  /* Single Service Highlights Section */
  .service-highlights-wrapper {
    background: #000000;
      width: 100%;
  }
  
  .service-highlights-section {
  /* 	 width: min(1200px, 100%);
    margin: 30px auto 0; */
    padding: 20px;
    background: #000000;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  }
  
  .service-highlights-header h2 {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .service-highlights-subtitle {
    font-size: 16px;
    color: #5c5c5c;
    margin-bottom: 30px;
  }
  
  .service-highlights-grid {
    display: grid;
  /*   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
      grid-template-columns: repeat(4, 1fr);
  
    gap: 24px;
  }
  
  .service-highlight-card {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    background: #000000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .service-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
  }
  
  .service-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(239, 119, 43, 0.12);
    color: var(--color-primary, #ef772b);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-highlight-icon i {
    width: 22px;
    height: 22px;
  }
  
  .service-highlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
  }
  
  .service-highlight-card p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
  }
  
  .service-highlight-link {
    margin-top: 8px;
    font-weight: 600;
    color: var(--color-primary, #ef772b);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .service-highlight-link::after {
    content: '→';
    font-size: 14px;
  }
  
  .service-highlights-cta {
    margin-top: 35px;
  }
  
  .service-highlights-cta p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .service-highlights-btn {
    border-radius: 999px;
    padding: 10px 28px;
  }
  
  
  
  /* ========= SERVICE INFO STYLES ========= */
  
  .service-info-bands {
    background: #000000;
  }
  
  /* Make all three blocks align in one row (desktop only) */
  @media (min-width: 992px) {
    .service-info-bands .container {
      display: flex;
      gap: 30px;
      align-items: stretch;
    }
  
    .service-info-bands .service-info-row {
      flex: 1 1 0;
      margin-bottom: 0; /* remove stacked spacing on desktop */
    }
  }
  
  .service-info-row {
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  
  .service-info-content {
    flex: 1 1 480px;
    color: #1d1d1d;
  }
  
  .service-info-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
  }
  
  .service-info-eyebrow {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
  }
  
  /* LIGHT CARD */
  .service-info-flex {
    background: #fff;
  }
  
  /* BADGE (if enabled) */
  .service-info-badge {
    flex: 0 0 220px;
    border-radius: 16px;
    background: rgba(239,119,43,0.1);
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    gap: 12px;
  }
  
  .service-info-badge .badge-icon {
    font-size: 36px;
  }
  
  /* DARK TRUSTED BLOCK */
  .service-info-trusted {
    background: linear-gradient(135deg, #111 0%, #1f1f1f 100%);
    color: #fefefe;
  }
  
  .service-info-trusted p {
    color: rgba(255,255,255,0.82);
  }
  
  /* QUOTE CARD (optional if enabled) */
  .service-info-quote {
    flex: 0 0 320px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
  }
  
  .service-info-quote .stars {
    color: var(--color-secondary);
    margin-bottom: 12px;
    letter-spacing: 2px;
  }
  
  .service-info-quote p {
    font-style: italic;
    color: #fefefe;
    margin-bottom: 10px;
  }
  
  /* ROYAL GRADIENT CARD */
  .service-info-royal {
    background: linear-gradient(120deg, #ef772b, #f4b65a);
    color: #1b1b1b;
    align-items: flex-start;
  }
  
  .service-info-royal h3 {
    font-family: var(--font-playfair);
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .service-info-royal p {
    color: rgba(27,27,27,0.9);
  }
  
  .service-info-btn {
    border-radius: 999px;
    padding: 12px 32px;
    font-weight: 600;
  }
  
  /* ========= RESPONSIVE ========= */
  @media (max-width: 768px) {
  
    .service-highlights-section {
      padding: 30px;
    }
  
    .service-info-row {
      padding: 30px;
    }
  
    .service-info-badge,
    .service-info-quote {
      flex: 1 1 100%;
    }
  }
  
  
  
  /* .service-content-text {
      color:white;
  } */
  
  
  
  
  /* Grid section service page */
  @media (max-width: 768px) {
    .service-highlights-grid {
      grid-template-columns: 1fr; /* single column */
    }
  }
  
  .btn-learn-more {
      padding: 10px!important;
  }
  
  
  
  
  
  .service-content-section {
      background-color: #000000; !important
  }
  .service-content-text {
      color:white;
  }
  
  /* inner service wp form */
  /* Override WPForms Choices.js dropdown min-width in sidebar form */
  .sidebar-form-wrapper .wpforms-container .wpforms-form .choices__list--dropdown {
      min-width: 0 !important;
      width: 100% !important;  /* optional: keeps it aligned with the input */
  }
  
  /* service section text color */
  .service-content-text h3 {
      color: #ef772b !important;
  }
  
  
  
  /* wp form label color */
  /* .contact-section .wpforms-field-label {
    color: #000 !important;
  } */
  
  
  /* padding zero in contact form front page */
  @media (max-width: 767px) {
    .contact-form-wrapper{
      padding: 20px !important;
    }
  }
  
  
  
  
  
  
  
  
  /* Quote Section - Side by Side Layout */
  .service-quote-section {
      background-color: #000;
  }
  
  .quote-info-wrapper {
      background: linear-gradient(135deg, var(--color-primary), #d66a25);
      padding: 50px 40px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 12px 0 0 12px;
  }
  
  .quote-eyebrow {
      font-family: var(--font-archivo);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 15px;
      display: block;
  }
  
  .quote-title {
      font-family: var(--font-playfair);
      font-size: 36px;
      font-weight: 600;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 20px;
  }
  
  .quote-title span {
      color: var(--color-secondary);
  }
  
  .quote-text {
      font-family: var(--font-archivo);
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 30px;
  }
  
  .quote-features {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .quote-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-archivo);
      font-size: 14px;
      color: #fff;
      margin-bottom: 12px;
  }
  
  .quote-features li svg {
      color: var(--color-secondary);
      flex-shrink: 0;
  }
  
  .quote-form-wrapper {
      background-color: #fff;
      padding: 40px;
      height: 100%;
      border-radius: 0 12px 12px 0;
  }
  
  .quote-form-header h3 {
      font-family: var(--font-archivo);
      font-size: 22px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .quote-form .form-control {
      font-family: var(--font-archivo);
      font-size: 14px;
      padding: 14px 18px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      background-color: #f8f9fa;
      transition: all 0.3s ease;
  }
  
  .quote-form .form-control:focus {
      border-color: var(--color-primary);
      background-color: #fff;
      box-shadow: 0 0 0 4px rgba(239, 119, 43, 0.1);
      outline: none;
  }
  
  .quote-form .form-control::placeholder {
      color: #999;
  }
  
  .quote-form textarea.form-control {
      resize: none;
  }
  
  .quote-form select.form-control {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 12px;
  }
  
  .btn-quote-submit {
      background-color: var(--color-primary);
      border: none;
      color: #fff;
      font-family: var(--font-archivo);
      font-weight: 700;
      font-size: 15px;
      padding: 16px 30px;
      border-radius: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      cursor: pointer;
  }
  
  .btn-quote-submit:hover {
      background-color: #d66a25;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(239, 119, 43, 0.35);
  }
  
  /* WPForms in Quote Section */
  .quote-form-wrapper .wpforms-container {
      margin: 0 !important;
      padding: 0 !important;
  }
  
  .quote-form-wrapper .wpforms-form .wpforms-field {
      padding: 0 0 15px 0 !important;
  }
  
  .quote-form-wrapper .wpforms-form input[type="text"],
  .quote-form-wrapper .wpforms-form input[type="email"],
  .quote-form-wrapper .wpforms-form input[type="tel"],
  .quote-form-wrapper .wpforms-form textarea,
  .quote-form-wrapper .wpforms-form select {
      font-size: 14px !important;
  /*     padding: 14px 18px !important; */
      border: 1px solid #e0e0e0 !important;
      border-radius: 8px !important;
      background-color: #f8f9fa !important;
  }
  
  .quote-form-wrapper .wpforms-form input:focus,
  .quote-form-wrapper .wpforms-form textarea:focus,
  .quote-form-wrapper .wpforms-form select:focus {
      border-color: var(--color-primary) !important;
      background-color: #fff !important;
      box-shadow: 0 0 0 4px rgba(239, 119, 43, 0.1) !important;
  }
  
  .quote-form-wrapper .wpforms-form .wpforms-field-label {
      font-size: 13px !important;
      font-weight: 600 !important;
      color: #333 !important;
      margin-bottom: 6px !important;
  }
  
  .quote-form-wrapper .wpforms-submit {
      width: 100% !important;
      background-color: var(--color-primary) !important;
      border: none !important;
      color: #fff !important;
      font-weight: 700 !important;
      padding: 16px 30px !important;
      font-size: 15px !important;
      border-radius: 8px !important;
      text-transform: uppercase !important;
  }
  
  .quote-form-wrapper .wpforms-submit:hover {
      background-color: #d66a25 !important;
      transform: translateY(-2px) !important;
  }
  
  /* Responsive Quote Section */
  @media (max-width: 991px) {
      .quote-info-wrapper {
          border-radius: 12px 12px 0 0;
          padding: 40px 30px;
      }
  
      .quote-form-wrapper {
          border-radius: 0 0 12px 12px;
          padding: 30px;
      }
  
      .quote-title {
          font-size: 28px;
      }
  }
  
  @media (max-width: 767px) {
      .other-service-link {
          font-size: 12px;
          padding: 10px 12px;
      }
  
      .quote-info-wrapper {
          padding: 30px 20px;
      }
  
      .quote-title {
          font-size: 24px;
      }
  
      .quote-form-wrapper {
          padding: 25px 20px;
      }
  
      .quote-form-header h3 {
          font-size: 18px;
      }
  }
  
  /* Remove padding from upload dropzone box */
  div.wpforms-container .wpforms-field-file-upload .wpforms-uploader .dz-message,
  div.wpforms-container .wpforms-field-file-upload .wpforms-uploader.dz-clickable {
      padding: 0 !important;
  }
  
  
  /* Dark sections positioning for sparkle effect */
  .testimonials-section,
  .gallery-section {
      position: relative;
      overflow: hidden;
  }
  

/* ============================================================
   AIRBNB FAQ — Two-Column Tab Layout  (ID: 62 only)
   ============================================================ */

.afaq-section {
    background: #0e0e0e;
    padding: 80px 0 90px;
    border-top: 1px solid rgba(239, 119, 43, 0.12);
}

/* ---- Header ---- */
.afaq-header {
    text-align: center;
    margin-bottom: 52px;
}

.afaq-eyebrow {
    display: inline-block;
    font-family: var(--font-archivo);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-secondary);
    text-transform: uppercase;
    padding: 5px 16px;
    border: 1px solid rgba(233, 195, 84, 0.28);
    border-radius: 100px;
    background: rgba(233, 195, 84, 0.06);
    margin-bottom: 18px;
}

.afaq-title {
    font-family: var(--font-playfair);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.15;
}

.afaq-title em {
    font-style: normal;
    color: var(--color-primary);
}

.afaq-subtitle {
    font-family: var(--font-open-sans);
    font-size: 15px;
    color: #888;
    margin: 0;
}

/* ---- Two-column layout ---- */
.afaq-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    min-height: 560px;
    max-height: 640px;
}

/* ---- Left: question tabs ---- */
.afaq-tabs {
    display: flex;
    flex-direction: column;
    background: #111111;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(239, 119, 43, 0.3) transparent;
	height: 700px;
}

.afaq-tabs::-webkit-scrollbar {
    width: 4px;
}

.afaq-tabs::-webkit-scrollbar-thumb {
    background: rgba(239, 119, 43, 0.3);
    border-radius: 2px;
}

.afaq-tab {
    all: unset;
    display: block;
    padding: 16px 20px;
    font-family: var(--font-archivo);
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    line-height: 1.4;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: left;
    box-sizing: border-box;
	height:
}

.afaq-tab:hover {
    background: rgba(239, 119, 43, 0.06);
    color: #ddd;
}

.afaq-tab--active {
    background: rgba(239, 119, 43, 0.08) !important;
    color: var(--color-primary) !important;
    border-left-color: var(--color-primary) !important;
    font-weight: 600;
}

/* ---- Right: answer panels ---- */
.afaq-panels {
    background: #141414;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(239, 119, 43, 0.3) transparent;
    position: relative;
}

.afaq-panels::-webkit-scrollbar {
    width: 4px;
}

.afaq-panels::-webkit-scrollbar-thumb {
    background: rgba(239, 119, 43, 0.3);
    border-radius: 2px;
}

.afaq-panel {
    display: none;
    padding: 40px 44px;
    animation: afaqFadeIn 0.25s ease;
}

.afaq-panel--active {
    display: block;
}

@keyframes afaqFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.afaq-panel h3 {
    font-family: var(--font-playfair);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(239, 119, 43, 0.2);
}

.afaq-panel p {
    font-family: var(--font-open-sans);
    font-size: 15px;
    color: #adadad;
    line-height: 1.8;
    margin: 0 0 14px;
}

.afaq-panel p:last-child {
    margin-bottom: 0;
}

.afaq-panel ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.afaq-panel ul li {
    font-family: var(--font-open-sans);
    font-size: 15px;
    color: #adadad;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.afaq-panel ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* ---- Mobile: accordion fallback ---- */
@media (max-width: 860px) {
    .afaq-section {
        padding: 60px 0 70px;
    }

    .afaq-layout {
        grid-template-columns: 1fr;
        max-height: none;
        min-height: 0;
    }

    .afaq-tabs {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        overflow-y: visible;
        max-height: 260px;
        overflow-y: auto;
    }

    .afaq-tab {
        padding: 14px 18px;
        font-size: 12.5px;
    }

    .afaq-panel {
        padding: 28px 24px;
    }

    .afaq-panel h3 {
        font-size: 18px;
    }
}


/* ============================================================
   AREAS WE SERVICE PAGE
   ============================================================ */

.areas-we-service-section {
    background: #0e0e0e;
}

.areas-content-col {
    padding: 10px;
    background: #0e0e0e;
    min-height: 100vh;
}

.areas-content-wrapper {
/*     max-width: 650px; */
    margin-left: auto; /* Push content towards the map */
}

.areas-title {
    font-family: var(--font-playfair);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
}

.areas-title em {
    font-style: normal;
    color: var(--color-primary);
}

.areas-description {
    font-family: var(--font-open-sans);
    font-size: 16px;
    color: #adadad;
    line-height: 1.8;
    margin-bottom: 30px;
}

.areas-instruction {
    font-family: var(--font-open-sans);
    font-size: 14px;
    color: var(--color-primary);
    opacity: 0.9;
}

/* Suburb Grid interactive buttons */
.suburb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.suburb-btn {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 16px 20px;
    color: #e2e2e2;
    font-family: var(--font-archivo);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.suburb-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--color-primary);
    transition: width 0.3s ease;
    z-index: 0;
    opacity: 0.15;
}

.suburb-btn:hover {
    border-color: var(--color-primary);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(239, 119, 43, 0.15);
}

.suburb-btn:hover::before {
    width: 100%;
}

.suburb-btn span {
    position: relative;
    z-index: 1;
}

.areas-cta {
    margin-top: 50px;
}

.areas-cta .btn {
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
}

/* Right Column & Square Map */
.areas-map-col {
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-map {
    width: 100%;
    max-width: 600px;
    height: 600px;
    border-radius: 12px;
    border: 4px solid #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: #111; 
}

/* Leaflet Overrides for Dark Theme */
.leaflet-container {
    background: #0e0e0e !important;
    font-family: var(--font-open-sans) !important;
}

.leaflet-popup-content-wrapper, 
.leaflet-popup-tip {
    background: #1e1e1e;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(239, 119, 43, 0.2);
}

.leaflet-popup-content b {
    color: var(--color-primary);
    font-family: var(--font-archivo);
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .areas-map-col {
        padding: 0 5% 60px;
    }
    
    .areas-map {
        height: 500px;
        margin: 0 auto;
    }

    .areas-content-col {
        padding: 60px 5% 40px;
        min-height: auto;
    }
    
    .areas-content-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .suburb-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}