@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  /*--heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --matcha-dark: #2D5F3F;   Green like your screenshot 
  --matcha-light: #B8D4A8;   
  --beige: #fdefd5;          
  --cream: #FFF8F0;            
  --text-dark: #1A1A1A;  
  --accent: #ebbe4d;  Gold accent like "Meets Craft" */
  
  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  
  /* Premium Orange Luxury Palette */
  --primary: #D97706;        /* Rich amber orange - main brand */
  --primary-dark: #B45309;   /* Darker burnt orange for hover */
  --accent: #F59E0B;         /* Gold amber for highlights */
  --accent-light: #FCD34D;   /* Light gold for text accents */
  
  --bg-dark: #1C1917;        /* Deep charcoal brown - like your screenshot */
  --bg-overlay: #292524;     /* Warm dark brown */
  --bg-light: #FFFBF5;       /* Warm off-white/cream */
  --bg-section: #FEF3E7;     /* Light peach cream for sections */
  
  --text-dark: #1C1917;      /* Near black */
  --text-light: #FAFAF9;     /* Off white */
  --text-muted: #A8A29E;     /* Warm gray */
}

/* Popup Base Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 450px;
  width: 100%;
  position: relative;
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.popup-close:hover {
  color: #000;
}

.popup-content h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  color: #111;
}

.popup-content p {
  margin: 0 0 20px 0;
  color: #666;
  font-size: 14px;
}

#siteVisitForm input,
#siteVisitForm select,
#leadForm input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  font-family: inherit;
}

#siteVisitForm input:focus,
#siteVisitForm select:focus,
#leadForm input:focus {
  outline: none;
  border-color: var(--accent-light);
}

#siteVisitForm .btn-primary,
#leadForm .btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--accent-light);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

#siteVisitForm .btn-primary:hover,
#leadForm .btn-primary:hover {
  background: var(--accent);
}

.form-msg {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

@media (max-width: 480px) {
  .popup-content {
    padding: 20px;
  }
  .popup-content h3 {
    font-size: 20px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  position: relative;
  text-align: center;
}

.popup-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.popup-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

#leadForm input {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #D6D3D1;
  border-radius: 4px;
  font-size: 1rem;
}

#leadForm input:focus {
  outline: none;
  border-color: var(--accent);
}

#leadForm .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.form-msg {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

/* REMOVED THE FIRST BODY RULE - keeping only the flex version below */

/* --- NAVBAR - Transparent at top, solid on scroll --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: #ecbf5fc3;
  box-shadow: 0 2px 20px rgba(243, 230, 177, 0.648);
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.navbar.scrolled .logo img {
  filter: none;
}

.icon-btn {
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #FFF;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar.scrolled .icon-btn {
  color: #FFF8F0;
}

/* --- SLIDE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--primary);
  opacity: 0.9;
  padding: 80px 20px 20px;
  transition: left 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  color: #FFF8F0;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  color: #FFF;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  font-weight: 700;
}

.hero h1 span {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: #FCD34D;
  flex-wrap: wrap;
}

.stat-divider {
  opacity: 0.5;
  font-size: 0.7rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-outline {
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border: 2px solid var(--accent);
  display: flex;
}

.btn-primary:hover {
  background: #d4a73d;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #FFF;
  border: 2px solid #FFF;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* --- SECTIONS --- */
.menu-section {
  padding: 4rem 1rem;
  background: #fdefd5;
}

.menu-title {
  font-family: var(--heading-font);
  text-align: center;
  font-size: 2.2rem;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--text-dark);
  width: 100%;
}

.menu-title::before,
.menu-title::after {
  content: '';
  height: 2px;
  background-color: var(--primary); /* #D97706 orange */
  flex: 1; /* Lines auto-expand to fill space */
  max-width: 150px; /* Cap line length */
}

/* --- DESKTOP --- */
@media (min-width: 768px) {
  .menu-title { 
    font-size: 2.6rem;
    gap: 2.5rem;
  }
  .menu-title::before,
  .menu-title::after {
    max-width: 250px; /* Longer lines on desktop */
  }
}

@media (min-width: 1024px) {
  .menu-title { 
    font-size: 3rem;
  }
}

/* --- PLOTS CARDS SECTION --- */
.plots-section {
  padding: 3rem 1rem;
  background: var(--bg-section);
  font-family: 'Poppins', sans-serif;
}

.plots-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}


/* --- CLICKABLE PLOT CARDS --- */
.plot-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.plot-card {
  position: relative;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 380px;
}

.plot-card-link:hover .plot-card {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.25);
}

.plot-card-link:active .plot-card {
  transform: translateY(-6px);
}

.plot-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.plot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.plot-card-link:hover .plot-image img {
  transform: scale(1.15);
}

/* Orange gradient overlay instead of flat black */
.plot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  transition: 0.4s;
}

.plot-card-link:hover .plot-overlay {
  background: linear-gradient(180deg, 
    rgba(255, 107, 0, 0.2) 0%, 
    rgba(50, 207, 243, 0.4) 40%,
    rgba(6, 7, 71, 0.9) 100%
  );
}

.plot-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
  color: #FFF;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.plot-card-link:hover .plot-content {
  transform: translateY(0);
}

.plot-location {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFD700;
}


/* Arrow indicator on hover */
.plot-content::after {
  content: '→';
  position: absolute;
  bottom: 2rem;
  right: 1.75rem;
  font-size: 1.75rem;
  color: #FFD700;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.plot-card-link:hover .plot-content::after {
  opacity: 1;
  transform: translateX(0);
}

/* --- TABLET + DESKTOP --- */
@media (min-width: 768px) {
  .plots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .plot-card {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .plots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .menu-title {
    font-size: 3.5rem;
  }
}

/* Make sure your body uses flex for sticky footer */
body {
  font-family: var(--body-font);
  background: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* --- FIND US SECTION --- */
.find-us-section {
  padding: 4rem 1rem;
  background: var(--bg-light);
}

.find-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Mobile: stacked */
  gap: 2.5rem;
}

.map-container {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.find-us-content {
  width: 100%;
  background: var(--bg-section);
  padding: 1rem;
  text-align: left;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.find-us-headline {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.find-us-headline .italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.find-us-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- DESKTOP: Map left, content right --- */
@media (min-width: 1024px) {
  .find-us-container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  
  .map-container {
    flex: 0 0 55%; /* Map = 55% width */
    height: 450px; /* Fixed height so it matches content */
    max-width: 55%;
  }
  
  .find-us-content {
    flex: 1; /* Content = 45% width */
  }
  
  .find-us-headline {
    font-size: 2.6rem;
  }
  
  .find-us-buttons {
    flex-direction: row;
  }
}

.btn-outline-dark {
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--bg-dark);
}

.btn-outline-dark:hover {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* --- DESKTOP --- */
@media (min-width: 768px) {
  
  .find-us-headline {
    font-size: 2.6rem;
  }
  
  .find-us-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
}

/* --- FOOTER - Centered + Sticky --- */
.footer-cta {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1.5rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.footer-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-headline {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
}

.footer-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-bottom {
  background: #0C0A09;
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- MOBILE --- */
@media (min-width: 768px) {
  .hero h1 { 
    font-size: 4rem;
  }
  .menu-title { 
    font-size: 2.6rem;
    gap: 2.5rem;
  }
  .menu-title::before,
  .menu-title::after {
    width: 200px;
  }
}




/*--ANUGRAH STARTS--*/
/* Back Button in Navbar */
.back-btn {
  font-size: 1.4rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.back-btn:hover {
  color: var(--accent);
}

/* Project Hero Section */
.project-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-hero .hero-content {
  color: #fff;
  padding: 0 1.5rem;
  max-width: 700px;
}

.project-hero .hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.project-hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  font-weight: 700;
}

.project-hero h1 span {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.project-hero .hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.project-hero .hero-tagline {
  font-family: var(--body-font);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.project-hero .hero-cta-text {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .project-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .project-hero h1 {
    font-size: 2.5rem;
  }
  
  .project-hero .hero-tagline {
    font-size: 1.05rem;
  }
  
  .project-hero .hero-cta-text {
    font-size: 0.95rem;
  }
}

/* Fix Location heading lines to orange */
.menu-title::before,
.menu-title::after {
  content: '';
  height: 1px;
  background-color: var(--primary); /* Orange #D97706 */
  width: 80px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .menu-title::before,
  .menu-title::after {
    width: 200px;
  }
}


/* --- GALLERY SECTION --- */
.gallery-section {
  padding: 4rem 1rem;
  background: var(--bg-light);
}

.gallery-section.section-eyebrow,
.gallery-section.find-us-headline {
  text-align: center;
}

.gallery-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 400px;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: all 0.2s ease;
}

.gallery-btn:hover {
  background: var(--primary);
  color: #FFF;
}

.gallery-btn.prev { left: 1rem; }
.gallery-btn.next { right: 1rem; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gallery-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D6D3D1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dots span.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

@media (min-width: 768px) {
 .gallery-slide {
    height: 500px;
  }
}

.layout {
  object-fit: contain;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.layout img {
  object-fit: contain;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  object-fit: contain;
}

/* Tablets */
@media (min-width: 768px) {
  .layout {
    max-width: 900px;
    padding: 2rem;
  }
}

/* Laptops */
@media (min-width: 1024px) {
  .layout {
    max-width: 1000px;
    padding: 2rem;
  }

  .layout img {
    border-radius: 35px;
  }
}

/* Large Desktops */
@media (min-width: 1440px) {
  .layout {
    max-width: 800px;
  }

  .layout img {
    border-radius: 40px;
  }
}

/* --- MAP SECTION --- */
.location-section {
  padding: 4rem 1rem;
  background: var(--bg-section);
}

.location-section .menu-title {
  margin-bottom: 2rem;
}

.map-container {
  max-width: 900px;
  margin: 0 auto 3rem;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .map-container {
    height: 420px;
  }
}
 


/* LIGHT SECTION --- */
.light-section {
  padding: 4rem 1rem;
  background: var(--bg-light);
}
/* --- DARK HIGHLIGHTS*/
.dark-section {
  padding: 4rem 1rem;
  background: var(--bg-section);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.find-us-headline {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
  text-align: center;
}

.find-us-headline .italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

@media (min-width: 768px) {
    .find-us-headline {
      font-size: 2.6rem;
    }
  
  
  .info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* Reuses .info-list, .info-item, .info-icon from previous sections */
/* Tablet: 2 columns */
@media (min-width: 768px) {
  .light-section .info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* Desktop: 3 columns for balance */
@media (min-width: 1024px) {
  .light-section .info-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .dark-section .info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* Desktop: 3 columns for balance */
@media (min-width: 1024px) {
  .dark-section .info-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === ABOUT SECTION - PREMIUM === */
.about-section {
  position: relative;
  padding: 120px 20px;
  color: #fff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.about-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 107, 0, 0.92) 0%, 
    rgba(229, 90, 0, 0.58) 100%
  );
  z-index: 2;
}

.about-section .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-divider {
  width: 80px;
  height: 4px;
  background: #FFD700;
  margin: 0 auto 40px;
  border-radius: 2px;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.about-text strong {
  color: #FFD700;
  font-weight: 600;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  margin-top: 30px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }
  .about-content h2 {
    font-size: 36px;
  }
  .about-text p {
    font-size: 15px;
    text-align: center;
  }
  .about-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
  .stat-number {
    font-size: 36px;
  }
  .about-tagline {
    font-size: 20px;
  }
}
/* --- STICKY ICONS --- */
.sticky-icons {
  position: fixed;
  right: 20px;
  bottom: 100px; /* Above footer */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sticky-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFF;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: floatUp 0.5s ease;
}

.sticky-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Brand Colors */
.sticky-icon.whatsapp { background: #25D366; }
.sticky-icon.instagram { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.sticky-icon.gmail { background: #D93025; }

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .sticky-icons {
    right: 15px;
    bottom: 80px;
  }
  .sticky-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}