/*--------------------------------------------------------------
# Global Header - Modern Design
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff; /* White background */
  --default-color: #2b2b2b; /* Dark text */
  --heading-color: #1e1e1e; /* Dark heading */
  --nav-color: #2b2b2b; /* Dark navigation text */
  --nav-hover-color: #b97a56; /* Accent color for hover */
  --nav-dropdown-background-color: #ffffff; /* White dropdown */
  --nav-dropdown-color: #2b2b2b; /* Dark dropdown text */
  --nav-dropdown-hover-color: #b97a56; /* Accent color for dropdown hover */
  --accent-color: #b97a56; /* Theme accent color */
  --contrast-color: #ffffff; /* White text for buttons */
  
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s ease;
  z-index: 997;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* ---------- Logo Styling ----------
.header .logo {
  line-height: 1;
  transition: transform 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.03);
}

.header .logo img {
  max-height: 120px;
  transition: all 0.3s ease;
} */


/* ---------- Logo Styling ---------- */
.header .logo {
  line-height: 1;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  max-width: 100%;
}

.header .logo:hover {
  transform: scale(1.03);
}

.header .logo img {
  height: auto;
  max-height: 120px;
  max-width: 100%;
  width: auto;
  transition: all 0.3s ease;
}

/* Logo Resize for Smaller Screens */
@media (max-width: 992px) {
  .header .logo img {
    max-height: 100px;
  }
}

@media (max-width: 576px) {
  .header .logo img {
    max-height: 80px;
  }
}


/* ---------- Get in Touch Button ---------- */
.header .btn-getintouch,
.header .btn-getintouch:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: clamp(13px, 2vw, 15px); /* ✅ scales smoothly with screen */
  padding: clamp(8px, 2vw, 10px) clamp(18px, 4vw, 28px); /* ✅ adaptive padding */
  margin: 0;
  border-radius: 4px; /* Rectangular */
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(185, 122, 86, 0.2);
}

/* Hover states */
.header .btn-getintouch:hover,
.header .btn-getintouch:focus:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 122, 86, 0.3);
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .header .btn-getintouch {
    font-size: 13px;
    padding: 8px 18px; /* ✅ smaller touch-friendly */
    border-radius: 6px; /* ✅ slightly rounder for mobile */
  }
}

/* Large screens (1200px+) */
@media (min-width: 1200px) {
  .header .btn-getintouch {
    font-size: 16px;
    padding: 12px 32px;
  }
}


/* ---------- Responsive Styling (<1200px) ---------- */
@media (max-width: 1200px) {
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0 !important;      /* Removes top/bottom empty space */
    margin: 0 !important;
    gap: 0 !important;
    height: auto !important;
  }

  .header .logo {
    order: 2;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center;
  }

  .header .btn-getintouch {
    display: none !important;        /* Hide button */
    margin: 0 !important;
    padding: 0 !important;
  }

  .header .navmenu {
    order: 3;
  }
}


/* Scrolled State - Theme Colors */
.scrolled .header {
  --background-color: #ffffff; /* Keep white or use theme color */
  --nav-color: #2b2b2b; /* Dark text */
  --nav-hover-color: #b97a56; /* Accent color */
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2b2b2b;
  --nav-dropdown-hover-color: #b97a56;
  background-color: var(--background-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}




/*--------------------------------------------------------------
# Navigation Menu - Modern Design
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    padding: 10px 12px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 8px 12px;
    font-weight: 700; /* Bold text */
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .navmenu a:hover,
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 60%;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 12px;
    top: 100%;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    min-width: 220px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navmenu .dropdown ul li {
    padding: 0;
  }

  .navmenu .dropdown ul a {
    padding: 12px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-radius: 0;
    font-weight: 500;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    background: rgba(185, 122, 86, 0.05);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 10px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9999;
  }


  body.mobile-nav-active .enquiry-tab,
  body.mobile-nav-active .floating-call {
      display: none !important;
    }

  body.mobile-nav-active .floating-whatsapp {
  display: none !important;
}


  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(185, 122, 86, 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: rgba(185, 122, 86, 0.05);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 0;
    background-color: rgba(185, 122, 86, 0.05);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    position: fixed;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 0;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    transition: 0.3s;
    padding-top: 70px;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Announcement Bar
--------------------------------------------------------------*/
.announcement-bar {
  --announcement-bg: #b97a56;
  --announcement-text: #ffffff;
  
  position: relative;
  background-color: var(--announcement-bg);
  color: var(--announcement-text);
  padding: 10px 0;
  overflow: hidden;
  z-index: 998;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.announcement-track {
  width: calc(100% - 40px);
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20px,
    black calc(100% - 20px),
    transparent
  );
}

.announcement-content {
  display: inline-flex;
  white-space: nowrap;
  animation: scrollAnnouncement 20s linear infinite;
  will-change: transform;
  padding-right: 100%;
}

.announcement-content::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  flex-shrink: 0;
}

.emoji-badge {
  font-size: 1.2em;
  margin-right: 10px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.announcement-close {
  background: transparent;
  border: none;
  color: var(--announcement-text);
  padding: 0 15px;
  cursor: pointer;
  font-size: 16px;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.announcement-close:hover {
  opacity: 0.8;
}

@keyframes scrollAnnouncement {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 13px;
    padding: 8px 0;
  }
  
  .announcement-track {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10px,
      black calc(100% - 10px),
      transparent
    );
  }
  
  .announcement-item {
    padding: 0 20px;
  }
  
  .announcement-close {
    padding: 0 10px;
  }
}

/* Header Position Adjustment */
.has-announcement .header {
  top: 40px;
}

.scrolled.has-announcement .header {
  top: 0;
}


/* Gallery Carousel Styles */
.gallery-carousel {
  position: relative;
  padding: 0 50px;
  margin: 40px 0;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.gallery-item {
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(185, 122, 86, 0.3);
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.zoom-icon {
  color: white;
  font-size: 2.5rem;
  background: rgba(185, 122, 86, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b97a56;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background: #9e6546;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 0;
}

.carousel-control.next {
  right: 0;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-height: 80vh;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-item {
    min-width: 250px;
    height: 350px;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .gallery-carousel {
    padding: 0 30px;
  }

  .gallery-item {
    min-width: 270px;
    height: 360px;
  }

  .carousel-control {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .zoom-icon {
    font-size: 2.2rem;
    width: 55px;
    height: 55px;
  }
}

/* Small Tablets and Large Phones */
@media (max-width: 600px) {
  .gallery-carousel {
    padding: 0 20px;
  }

  .gallery-item {
    min-width: 220px;
    height: 320px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .zoom-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
}

/* Mobile Phones */
@media (max-width: 420px) {
  .gallery-carousel {
    padding: 0 10px;
  }

  .gallery-item {
    min-width: 200px;
    height: 300px;
  }

  .carousel-control {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .zoom-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 70vh;
  }

  .close-modal {
    top: -30px;
    font-size: 1.6rem;
  }
}



/* Clients Section */
.clients {
  background-color: var(--background-color);
  padding: 60px 0;
  position: relative;
}

/* Logos container */
.client-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}

.client-logos::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Logo item */
.client-logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.client-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(185, 122, 86, 0.1);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-logo-item:hover img {
  opacity: 1;
}

/* Arrow buttons */
.client-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface-color);
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.client-arrow:hover {
  background: var(--primary-color, #b97a56);
  color: #fff;
}

.client-arrow.left {
  left: -10px; /* Adjust based on design */
}

.client-arrow.right {
  right: -10px;
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo-item {
    width: 150px;
    height: 80px;
    padding: 10px;
  }

  .client-logo-item img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .client-logo-item {
    width: 120px;
    height: 70px;
  }

  .client-logo-item img {
    max-height: 50px;
  }
}



/* Global Hero Section Styles */
.page-hero {
  position: relative;
  margin-bottom: 30px;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 350px; /* Adjust height as needed */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
}

.hero-text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: white
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--accent-color); /* Your brand accent color */
}

.hero-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Breadcrumb Styles */
.breadcrumb {
  padding: 10px 0 5px 0; 
  background: transparent;
  margin-bottom: 0;     
  height: auto; 
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 8px;

}

.breadcrumb-item a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

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

.breadcrumb-item.active {
  color: var(--accent-color);
  font-weight: 600;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-container {
    height: 280px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 15px;
  }
}

/* Contact Grid Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin: 80px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-toggle {
  display: flex;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 5px;
}

.toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--accent-color);
  color: white;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: none;
}

.contact-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(185, 122, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact-card address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--default-color);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  color: var(--default-color);
}

.contact-method i {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent; /* No background */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease; /* Only movement transition */
}

.social-icon:hover {
  transform: translateY(-3px); /* Subtle upward motion */
}


/* Contact Form Styles */
.contact-form {
  background-color: var(--surface-color, #fff);
  border-radius: 15px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

/* Form Groups */
.form-group {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .contact-form {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .form-group {
    margin-bottom: 20px;
  }
}








/* Map Section */
.map-section {
  padding: 40px 0; /* Reduced spacing */
  background-color: #f9f9f9; /* Optional light background if needed */
}

.map-container {
  position: relative;
  height: 350px; /* Slightly reduced height */
  width: 90%;
  max-width: 1000px;
  margin: 0 auto; /* Centered */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Section */
.contact-faq {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-hero {
    height: 400px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .map-container {
    height: 350px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .contact-card {
    padding: 20px;
  }
}



/* Gallery  Styles */

.gallery-section {
  padding: 80px 0;
  background: var(--background-color);
}

.gallery-filter-container {
  overflow-x: auto;
  padding: 0 20px;
  margin-bottom: 40px;
}



.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  min-width: max-content;
  padding: 10px 0;
}

.filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s;
}

.filter-btn.active, 
.filter-btn:hover {
  background: var(--accent-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-item {
  aspect-ratio: 1/1;
  perspective: 1000px;
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover .gallery-item-inner {
  transform: rotateY(180deg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(185, 122, 86, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay-content h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.overlay-content p {
  opacity: 0.9;
  margin-bottom: 15px;
}

.view-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: var(--accent-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.view-btn:hover {
  transform: scale(1.1);
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  animation: fadeIn 0.3s;
}

.lightbox-content {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

#lightboxImage {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 8px;
}

.image-info {
  color: white;
  text-align: center;
  margin-top: 20px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  
  .gallery-item-inner {
    transform: none !important;
  }
  
  .gallery-overlay {
    transform: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .filter-btn {
    padding: 6px 18px;
    font-size: 0.8rem;
  }
}



/* Reviews Section Styling */
.reviews-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  position: relative;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-widget-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 40px 0;
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease;
}

.reviews-widget-wrapper:hover {
  transform: translateY(-5px);
}

.widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 10%);
}

.reviews-cta {
  text-align: center;
  margin-top: 30px;
}

.reviews-cta p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .reviews-widget-wrapper {
    border-radius: 8px;
  }
  
  .reviews-section {
    padding: 60px 0;
  }
}





/* ======================
   About Us Page Styles
   ====================== */

/* Hero Section Overrides */
.page-hero .hero-title {
  color: var(--contrast-color) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.page-hero .hero-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
}

/* Section Base Styling */
.section {
  padding: 80px 0;
  position: relative;
}
.section.bg-light {
  background-color: color-mix(in srgb, var(--background-color), white 20%);
}


.timeline-wrapper {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}

.timeline-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}

.timeline-track svg {
  width: 100%;
  height: 100px;
}

.timeline-events {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.event {
  text-align: center;
  flex: 1 1 22%;
  min-width: 200px;
  position: relative;
}

.event-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.event-card {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.event-card h3 {
  color: var(--heading-color);
  margin-bottom: 10px;
}

.event-card p {
  color: var(--default-color);
  font-size: 0.95rem;
}

/* Hover animation */
.event-card:hover {
  transform: translateY(-6px);
}

/* Responsive: Stack vertically */
@media screen and (max-width: 768px) {
  .timeline-track {
    display: none;
  }

  .timeline-events {
    flex-direction: column;
    align-items: center;
  }

  .event {
    flex: 1 1 100%;
    max-width: 90%;
    margin-bottom: 40px;
  }
}

/* Service Cards */
.service-card {
  height: 100%;
  padding: 30px 25px;
  text-align: center;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-bottom-color: var(--accent-color);
}
.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card:hover .icon-box {
  background: color-mix(in srgb, var(--accent-color), var(--surface-color) 80%);
  transform: scale(1.05);
}
.service-card h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.service-card p {
  color: var(--default-color);
  font-size: 0.95rem;
}

/* Value Cards */
.value-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.value-card p {
  color: var(--default-color);
  font-size: 0.95rem;
}

/* Team Section */
.team-description {
  max-width: 800px;
  margin: 0 auto 40px;
}
.team-description .lead {
  color: var(--heading-color);
  font-weight: 500;
}

/* Vision Section */
.vision-content {
  padding-right: 30px;
}
.vision-content p {
  color: var(--default-color);
  margin-bottom: 30px;
}
.vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vision-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.vision-list img {
  margin-right: 15px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.vision-list span {
  color: var(--default-color);
  line-height: 1.5;
}


/* CTA*/

.cta-headline {
  font-family: var(--heading-font);
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.cta-subtext {
  font-family: var(--default-font);
  font-size: 16px;
  color: var(--default-color);
}

/* Themed Buttons */
.btn-theme-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--nav-font);
  transition: all 0.3s ease;
}

.btn-theme-primary:hover {
  background-color: #a46045;
}

.btn-theme-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--nav-font);
  transition: all 0.3s ease;
}

.btn-theme-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Image with abstract background */
.cta-image-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
  position: relative;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shape-bg {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50% 50% 50% 0;
  z-index: 1;
  opacity: 0.15;
}




/* Founders Page Styles */
.founder-image-wrapper {
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.founder-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(185, 122, 86, 0.9);
  color: white;
  padding: 20px;
  text-align: center;
}
.founder-quote p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
}
.founder-quote img {
  margin-bottom: 10px;
}
.founder-content {
  position: relative;
}
.section-subtitle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  margin-right: 15px;
}
.section-subtitle h3 {
  color: var(--heading-color);
  margin: 0;
}
.founder-name {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 5px;
}
.founder-role {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 25px;
}
.founder-story p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.8;
}
.highlight-box {
  background: color-mix(in srgb, var(--accent-color), var(--surface-color) 95%);
  border-left: 3px solid var(--accent-color);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}
.highlight-box p {
  margin: 0;
  font-style: italic;
  color: var(--heading-color);
}
.founder-skills {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.founder-skills li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}
.founder-skills img {
  margin-right: 10px;
  margin-top: 3px;
}
.founder-skills span {
  color: var(--default-color);
}
.signature {
  margin-top: 30px;
  max-width: 180px;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.expertise-item {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.expertise-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.expertise-item h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.expertise-item p {
  color: var(--default-color);
  font-size: 0.9rem;
  margin: 0;
}

/* Philosophy Box */
.philosophy-box {
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.philosophy-content {
  padding: 40px;
}
.philosophy-content .lead {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 30px;
}
.philosophy-points {
  margin-top: 20px;
}
.point-item {
  display: flex;
  margin-bottom: 25px;
}
.point-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 20px;
  min-width: 40px;
}
.point-text h4 {
  color: var(--heading-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.point-text p {
  color: var(--default-color);
  margin: 0;
  font-size: 0.95rem;
}
.philosophy-image {
  height: 300px;
  overflow: hidden;
}
.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
  .philosophy-box {
    flex-direction: row;
  }
  .philosophy-content {
    flex: 1;
  }
  .philosophy-image {
    width: 40%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .founder-content {
    padding: 0 !important;
    margin-top: 30px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-content {
    padding: 25px;
  }
}



/* Minimal Services Page */
.services-hero-minimal {
  padding: 100px 0;
  background: var(--background-color);
}
.hero-image-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  height: 400px;
}
.mosaic-item {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.mosaic-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.mosaic-item:hover::after {
  background: rgba(185, 122, 86, 0.1);
}
.btn-scroll-down {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 0;
}

/* On hover: move the icon only, no background or color fill */
.btn-scroll-down:hover {
  transform: translateY(4px);
}

/* Optional: animate the icon inside */
.scroll-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}



.clean-card-services {
  padding: 100px 0;
  background-color: #fefefe;
}

.services-clean-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-clean-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.service-clean-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.icon-container {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.icon-container img {
  width: 100%;
  height: auto;
}

.service-clean-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.service-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}

.service-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.service-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #f47c20;
  font-weight: bold;
  font-size: 1rem;
  top: 0;
}

.btn-cta-outline {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #b97a56;
  border-radius: 6px;
  color: #b97a56;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background-color: #b97a56;
  color: #fff;
}

/* Spotlight Tabs */
.spotlight-tabs {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.tab-header {
  display: flex;
  border-bottom: 1px solid rgba(185, 122, 86, 0.1);
}
.tab-button {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--default-color);
  position: relative;
}
.tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: all 0.3s;
}
.tab-button.active {
  color: var(--accent-color);
}
.tab-button.active::after {
  transform: scaleX(1);
}
.tab-content {
  display: none;
  padding: 40px;
}
.tab-content.active {
  display: block;
}
.spotlight-visual {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.spotlight-text h3 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.spotlight-text p {
  color: var(--default-color);
  margin-bottom: 25px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--default-color);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--accent-color);
}

.cta-split-section {
  background-color: #fff;
  padding: 100px 0;
}

.cta-split-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.cta-split-image {
  flex: 1 1 50%;
  min-height: 300px;
}

.cta-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-split-content {
  flex: 1 1 50%;
  padding: 60px;
  background-color: #fef9f6;
}

.cta-split-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.cta-split-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

.cta-split-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #b97a56;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-split-btn:hover {
  background-color: #a66544;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-split-row {
    flex-direction: column;
  }
  .cta-split-content {
    padding: 40px 20px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-image-mosaic {
    height: 300px;
    margin-top: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 350px;
  }
  .tab-header {
    flex-direction: column;
  }
}


/* LEGAL PAGE STYLES */

.legal-policy {
  background-color: var(--background-color);
  padding: 100px 0;
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Policy Card */
.policy-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.policy-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* Headings */
.policy-card h3 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.policy-card h4 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #222;
}

/* Body Text */
.policy-card p,
.policy-card li {
  font-family: var(--default-font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--default-color);
}

.policy-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.policy-card li {
  margin-bottom: 10px;
}

/* List Bullet */
.policy-card ul li::marker {
  content: "✔️ ";
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-policy {
    padding: 60px 0;
  }

  .policy-card {
    padding: 24px;
    margin-bottom: 30px;
  }

  .policy-card h3 {
    font-size: 1.3rem;
  }

  .policy-card h4 {
    font-size: 1.1rem;
  }
}



/* Gallery */
.masonry-gallery {
  padding: 5rem 0;
  background-color: var(--light-background);
}

/* Filter Buttons */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}


.masonry-grid {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.filter-btn {
  padding: 8px 22px;
  border: 1px solid var(--accent-color);
  background: #fff;
  color: var(--accent-color);
  border-radius: 30px;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(185, 122, 86, 0.3);
}

/* Masonry Grid */
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.gallery-image-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 6px 18px;
  }
}


/* === Floating call Button === */
.floating-call {
  position: fixed;
  bottom: 200px;
  left: 20px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 10px; 
}



/* Circular Icon Button */
.call-icon-wrapper {
  width: 50px;
  height: 50px;
 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.call-icon {
  width: 48px;
  height: 48px;
}

/* Rounded Number Box */
.call-number {
  display: inline-block;
  background-color: #fef6f3; /* Matches your theme surface */
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--nav-font);
  font-size: 16px;
  color: var(--default-color);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.call-number:hover {
  transform: scale(1.03);
}



/* === Floating Enquiry Tab === */
.enquiry-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--accent-color);
  color: #fff;
  writing-mode: vertical-rl;
  text-align: center;
  padding: 12px 6px;
  font-family: var(--nav-font);
  font-size: 14px;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  z-index: 999;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* === Slide-in Enquiry Panel === */
.enquiry-panel {
  position: fixed;
  top: 50%;
  right: -400px;
  transform: translateY(-50%);
  width: 360px;
  background-color: var(--surface-color);
  border-radius: 12px 0 0 12px;
  box-shadow: -8px 8px 30px rgba(0, 0, 0, 0.15);
  padding: 30px 25px;
  transition: right 0.4s ease;
  z-index: 998;
  max-height: 90vh;
  overflow-y: auto;
}

.enquiry-panel.show {
  right: 0;
}

/* === Header with Title and Custom Close Icon === */
.enquiry-panel .enquiry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.enquiry-panel .form-title {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--heading-color);
  margin: 0;
}

.enquiry-panel .close-btn {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.enquiry-panel .close-btn:hover {
  transform: scale(1.1);
}

/* === Form Fields === */
.enquiry-panel form {
  display: flex;
  flex-direction: column;
  /* gap: 0; */
}

.enquiry-panel input,
.enquiry-panel select {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--nav-font);
  font-size: 14px;
  background-color: #fff;
}



/* === Responsive Design for Mobile === */
@media (max-width: 768px) {
  .enquiry-panel {
    top: 0;
    right: -100%;
    transform: none;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 30px 20px;
    max-height: none;
  }

  .enquiry-panel.show {
    right: 0;
  }

  .enquiry-panel .form-title {
    font-size: 20px;
  }
}



/* Chat Button whats app */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}



/* Counterup - section */


.counter-box {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.icon-circle {
  background: #ffffff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-circle img {
  width: 56px;
  height: 56px;
}

.counter-box h3 {
  font-family: var(--heading-font);
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.counter-box p {
  font-family: var(--nav-font);
  color: var(--default-color);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}



/* CTA Buttons - Custom for Vision Section */
.vision-btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  font-family: var(--nav-font);
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  border: none;
}

.vision-btn-primary:hover {
  background-color: #a46045;
  color: var(--contrast-color);
}

.vision-btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  padding: 12px 28px;
  font-family: var(--nav-font);
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  border: 2px solid var(--accent-color);
}

.vision-btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}






/* Why us section */

.why-choose-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex: 1;
  min-width: 250px;
}

.why-item {
  text-align: center;
}

.why-item h5 {
  font-family: var(--nav-font);
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 15px;
}

.why-item p {
  color: var(--default-color);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
  font-family: var(--default-font);
}

.icon-bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.why-center {
  flex-shrink: 0;
  text-align: center;
}

.why-circle-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background-color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .why-circle-image {
    width: 220px;
    height: 220px;
    margin-bottom: 30px;
  }
}



/* Service Detail Section */
.service-story-section {
  padding: 60px 0;
}

/* Image Wrapper for Padding */
.service-img-wrapper {
  padding: 0 15px;
}

.service-img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

/* Responsive Padding for Larger Screens */
@media (min-width: 768px) {
  .service-img-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 992px) {
  .service-img-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Content Styling */
.story-content .story-title {
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.story-content .story-intro {
  font-size: 16px;
  color: var(--default-color);
  font-family: var(--default-font);
  margin-bottom: 25px;
}

/* Step Items */
.story-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-number {
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-family: var(--nav-font);
  flex-shrink: 0;
}

.story-step h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--nav-font);
  margin-bottom: 4px;
  color: var(--accent-color);
}

.story-step p {
  font-size: 14px;
  margin: 0;
  color: var(--default-color);
}

/* Buttons */
.btn-theme-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 28px;
  font-family: var(--nav-font);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-theme-primary:hover {
  background-color: var(--accent-color); /* No hover effect */
}

.btn-theme-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
  padding: 10px 28px;
  font-family: var(--nav-font);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-theme-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}









/* CTA Section - Light Background */
.service-cta-section-light {
  background-color: var(--background-color); /* Soft white or beige from your theme */
  padding: 60px 0;
}

.service-cta-section-light .cta-box {
  background: #ffffff;
  border: 1px solid #f0e8e4;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.service-cta-section-light .cta-text {
  flex: 1;
  max-width: 540px;
}

.service-cta-section-light .cta-heading {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
}

.service-cta-section-light .cta-subtext {
  font-family: var(--default-font);
  font-size: 16px;
  color: var(--default-color);
  margin-top: 10px;
}

.service-cta-section-light .cta-image {
  flex: 1;
  text-align: right;
  background: none;
  box-shadow: none;
}

.service-cta-section-light .cta-image img {
  max-height: 200px;
  width: auto;
  display: block;
  border: none;
  box-shadow: none;
  background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-cta-section-light .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .service-cta-section-light .cta-image {
    text-align: center;
    margin-top: 20px;
  }
}


/* CTA Section - Light Background */
.service-cta-section-light {
  background-color: var(--background-color); /* Soft beige or white */
  padding: 60px 0;
}

.service-cta-section-light .cta-box {
  background: #ffffff;
  border: 1px solid #f0e8e4;
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px; /* space between text and image */
}

.service-cta-section-light .cta-text {
  flex: 1;
  max-width: 540px;
}

.service-cta-section-light .cta-heading {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.service-cta-section-light .cta-subtext {
  font-family: var(--default-font);
  font-size: 16px;
  color: var(--default-color);
}

.service-cta-section-light .cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service-cta-section-light .cta-image img {
  max-height: 300px;
  width: auto;
  border-radius: 10px;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-cta-section-light .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .service-cta-section-light .cta-image {
    justify-content: center;
    margin-top: 30px;
  }

  .service-cta-section-light .cta-image img {
    max-height: 200px;
  }
}




/* Overlay and Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.7); /* Improved dark overlay */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Form Container */
.popup-form-container {
  background-color: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease-in-out;
  z-index: 1;
}

/* Close Icon */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  z-index: 1;
}

.popup-close img {
  width: 22px;
  height: 22px;
}

/* Section Title Styling (Reused Theme Style) */
.popup-title {
  text-align: center;
  margin-bottom: 25px;
}

.popup-title h2 {
  font-family: var(--heading-font);
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.popup-title .description-title {
  font-family: var(--nav-font);
  font-weight: 600;
  color: var(--accent-color);
}

/* Form Fields */
.popup-form-container .form-group input,
.popup-form-container .form-group select,
.popup-form-container .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: var(--default-font);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .popup-form-container {
    padding: 30px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ------------------------------
   Search Bar Styling
------------------------------ */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 4px 12px;
  margin-left: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  padding: 6px 8px;
  width: 120px;
  transition: width 0.3s ease;
  font-family: var(--nav-font);
}

.search-bar input:focus {
  width: 160px;
}

.search-bar button {
  border: none;
  background: transparent;
  color: var(--accent-color);
  font-size: 16px;
  padding: 4px;
  cursor: pointer;
}

/* Hide Search Bar on Mobile */
@media (max-width: 991px) {
  .search-bar {
    display: none !important;
  }
}



