/* Import Premium Tamil Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@300;400;500;600;700;800&family=Noto+Sans+Tamil:wght@300;400;500;600;700&family=Noto+Serif+Tamil:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Utility classes */
.mobile-only { display: none; }

/* Style Reset & Design System Variables */
:root {
  --bg-primary: #FAF6F0;       /* Warm ivory cream background */
  --bg-secondary: #FFFDFB;     /* Warm white for cards/forms */
  --bg-tertiary: #FAF2E6;      /* Darker cream for section backgrounds */
  --accent-gold: #C5A85A;      /* Premium gold */
  --accent-gold-light: #F4EEDF;/* Soft gold background tint */
  --accent-gold-dark: #A6873C; /* Dark gold for borders/hover */
  --text-main: #3D2E24;        /* Deep maroon/olive-brown (primary text) */
  --text-muted: #6E5B4F;       /* Muted brown for descriptions */
  --text-light: #FAF6F0;       /* Light text for dark containers */
  --border-color: #E6DBC6;     /* Subtle warm border color */
  --border-focus: #C5A85A;
  --shadow-soft: 0 4px 20px rgba(61, 46, 36, 0.04);
  --shadow-medium: 0 10px 30px rgba(61, 46, 36, 0.08);
  --shadow-gold: 0 8px 25px rgba(197, 168, 90, 0.15);
  
  --font-heading: 'Noto Serif Tamil', 'Playfair Display', serif;
  --font-body: 'Noto Sans Tamil', sans-serif;
  --font-alt: 'Anek Tamil', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden; /* Block horizontal scroll at body level */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

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

/* Global Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #FFFFFF; /* White text on gold is readable and premium, or deep maroon */
  color: var(--text-main); /* Deep maroon for high contrast and prompt compliance */
  border-color: var(--accent-gold);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}


/* --- SPLASH SCREEN --- */
@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1);   }
}

@keyframes splashBarFill {
  from { width: 0%; }
  to   { width: 100%; }
}

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

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at center, #FFF8EE 0%, #FAF0DC 60%, #F3E4C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#splash-screen.splash-hidden {
  animation: splashFadeOut 0.45s ease forwards;
  pointer-events: none;
}

#splash-screen.splash-done {
  display: none;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: splashLogoIn 0.6s ease-out forwards;
}

.splash-logo {
  width: clamp(140px, 28vw, 200px);
  height: clamp(140px, 28vw, 200px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(197, 168, 90, 0.35), 0 0 0 6px rgba(197, 168, 90, 0.12);
  border: 3px solid var(--accent-gold);
}

.splash-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.splash-name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.splash-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  letter-spacing: 1px;
}

.splash-bar-track {
  width: clamp(160px, 30vw, 240px);
  height: 3px;
  background-color: rgba(197, 168, 90, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}

.splash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 10px;
  animation: splashBarFill 1.8s ease-in forwards;
}

/* --- HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 219, 198, 0.5);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: var(--shadow-soft);
  background-color: rgba(250, 246, 240, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

/* Navigation Bar Logo Styles */
.nav-logo {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

/* Footer Logo Styles */
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.footer-logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

@media (max-width: 480px) {
  .nav-logo {
    display: none;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-alt);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link.active {
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* --- SPA VIEW ROUTING ANIMATIONS --- */
.view-container {
  position: relative;
  min-height: calc(100vh - 80px);
}

.view-section {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.view-section.active-view {
  display: block;
  animation: viewFadeIn 0.6s forwards;
}

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

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Pulsing Glow Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* --- HOME PAGE HERO --- */
.hero {
  padding: 90px 0 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-sub {
  font-family: var(--font-alt);
  font-size: clamp(0.8rem, 3vw, 1.2rem);
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.4vw, 2px);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(1.9rem, 9vw, 3.5rem);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: clamp(0.95rem, 3.5vw, 1.25rem);
  max-width: 750px;
  margin: 0 auto 36px auto;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* --- TRUST STATS BAR --- */
.stats-bar {
  background-color: var(--accent-gold-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.stat-label {
  font-family: var(--font-alt);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- SERVICES PREVIEW SECTION (HOME) --- */
.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.eyebrow-centered {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-gold-dark);
  transition: var(--transition-smooth);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: var(--transition-fast);
}

.card-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition-fast);
}

/* Hover States for Cards */
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium), var(--shadow-gold);
  border-color: var(--accent-gold);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover .card-icon {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.card:hover .card-link {
  color: var(--accent-gold-dark);
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background-color: var(--bg-tertiary);
  padding: 90px 0;
}

.slider-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0 30px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  padding-bottom: 10px;
}

.testimonial-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonials-slider {
  display: flex;
  gap: 30px;
}

.slider-dots {
  display: none;
}

.testimonial-card {
  flex: 1 1 calc(33.333% - 20px);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-gold);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(197, 168, 90, 0.15);
  border-color: var(--accent-gold);
}

.stars-rating {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.user-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Slider Controls */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--accent-gold);
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px 0;
  font-family: var(--font-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

.footer-blurb {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-gold-dark);
  padding-left: 4px;
}

.social-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  background: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.social-share-btn:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- SERVICES / CONTACT / QUOTE PAGE HEADERS (shared) --- */
.services-header {
  text-align: center;
  padding: 80px 0 50px 0;
}

/* Force eyebrow onto its own line above the heading */
.services-header .section-eyebrow {
  display: block;
  margin-bottom: 14px;
}

/* Ensure heading also occupies full width (block) */
.services-header .section-title {
  display: block;
}

.services-header p {
  max-width: 700px;
  margin: 20px auto 0 auto;
  font-size: 1.1rem;
}

.cards-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.card-subtitle {
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold-dark);
  margin-top: -10px;
  margin-bottom: 12px;
}

.featured-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--accent-gold);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.featured-card-content {
  width: 100%;
}

.featured-card-content h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-top: 8px;
  margin-bottom: 16px;
}

.featured-card-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* CTA Banner Styles */
.cta-banner {
  background: linear-gradient(135deg, #4E3629 0%, #3D2E24 100%);
  color: var(--text-light);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 90px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--accent-gold-dark);
}

/* CTA Banner entrance animation override */
.cta-banner.reveal {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-banner.reveal.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Gold CTA button pulse & hover effects */
@keyframes goldPulse {
  0% {
    box-shadow: 0 4px 15px rgba(197, 168, 90, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(197, 168, 90, 0.4);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 4px 15px rgba(197, 168, 90, 0.2);
    transform: scale(1);
  }
}

.cta-banner .btn-gold {
  animation: goldPulse 2.5s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-banner .btn-gold:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(197, 168, 90, 0.5), 0 0 15px rgba(197, 168, 90, 0.3);
}

.cta-banner h2 {
  color: var(--accent-gold);
  font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  margin-bottom: 18px;
}

.cta-banner p {
  color: rgba(250, 246, 240, 0.8);
  max-width: 650px;
  margin: 0 auto 35px auto;
  font-size: 1.05rem;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-alt);
  font-weight: 500;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.cta-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.cta-contact-item a:hover {
  color: var(--accent-gold);
}

/* --- ABOUT PAGE --- */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

.about-content h1 {
  font-size: clamp(1.8rem, 7vw, 3rem);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: 8px;
}

.about-tag svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold-dark);
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--border-color);
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.about-image-wrapper.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61, 46, 36, 0.12), 0 0 20px rgba(191, 161, 86, 0.25);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-gold-dark);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.9rem;
}

/* Dark themed CTA for About Page */
.cta-banner-dark {
  background-color: #3D2E24;
  border: 1px solid var(--accent-gold);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 40px 0 80px 0;
}

.contact-form-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9c8e84;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 168, 90, 0.1);
}

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

.info-card {
  background-color: var(--accent-gold-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.info-card-header h3 {
  font-family: var(--font-alt);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.info-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.info-card-body .wa-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(197, 168, 90, 0.25);
  font-family: var(--font-alt);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.info-card-body .wa-link-row:last-of-type {
  border-bottom: none;
}

.info-card-body .wa-link-row:hover {
  color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
}

.info-card-body .card-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-alt);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.info-card-body .card-link:hover {
  color: var(--text-main);
}

.info-card-body .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.info-card-body .wa-link-row:hover .arrow,
.info-card-body .card-link:hover .arrow {
  transform: translateX(4px);
}

.info-card-text {
  font-size: 0.95rem;
}

.holiday {
  color: #A63C3C !important;
  font-weight: 600;
}

/* Map Section */
.map-section {
  margin-bottom: 80px;
}

.map-card-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

#leaflet-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  z-index: 1;
}

#leaflet-map .leaflet-tile {
  filter: sepia(0.45) hue-rotate(-15deg) saturate(1.2) contrast(0.95) brightness(1.02);
}

/* Location/Map Card Style */
.location-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--accent-gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.map-iframe-wrapper {
  flex: 1.3;
  min-height: 350px;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.location-info {
  flex: 0.7;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--bg-secondary);
}

.location-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-pin-icon {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold-dark);
}

.location-info h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin: 0;
}

.location-address {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.location-btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .location-card {
    flex-direction: column;
  }
  
  .map-iframe-wrapper {
    min-height: 250px;
  }
  
  .location-info {
    padding: 30px;
    align-items: center;
    text-align: center;
  }
  
  .location-title-row {
    justify-content: center;
  }
  
  .location-btn {
    align-self: center;
  }
}

/* Leaflet Custom Style Overrides */
.leaflet-popup-content-wrapper {
  background: var(--bg-secondary) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--accent-gold) !important;
  border-radius: 10px !important;
  box-shadow: var(--shadow-medium) !important;
  font-family: var(--font-body);
}

.leaflet-popup-tip {
  background: var(--bg-secondary) !important;
  border-left: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

.map-popup-card {
  padding: 6px;
  text-align: center;
}

.map-popup-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.map-popup-card p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.popup-maps-link {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.popup-maps-link:hover {
  background-color: var(--accent-gold);
  color: #fff;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto 90px auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transform: rotate(0deg);
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner {
  padding: 0 28px 22px 28px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

/* FAQ Active State */
.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-icon {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer-inner {
  border-top-color: var(--border-color);
}

/* --- GET A QUOTE PAGE --- */
.quote-section {
  max-width: 900px;
  margin: 0 auto 90px auto;
  padding: 40px 0;
}

.quote-form-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 60px;
}

.quote-form-card .btn {
  width: 100%;
  margin-top: 10px;
}

/* Success Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 46, 36, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-secondary);
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-success-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.modal-success-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* --- SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Animation Speeds */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Responsive Adjustments for Tablets */
@media (max-width: 992px) {
  .about-content h1 {
    font-size: 2.5rem;
  }

  .cards-grid-3, 
  .cards-grid-6,
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-tags {
    justify-content: center;
  }
  
  .about-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .featured-card {
    align-items: center;
    text-align: center;
    padding: 30px;
  }

  .testimonials-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
  }

  .slider-dots {
    display: flex;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  /* Clip the fixed nav panel so it never bleeds into the page */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(110%); /* push slightly beyond 100% to avoid edge bleed */
    transition: transform 0.4s ease-in-out;
    z-index: 999;
    border-top: 1px solid var(--border-color);
    visibility: hidden;
  }
  
  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu .nav-link {
    padding: 14px 32px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Hide the single quote button on mobile — hamburger menu is used instead */
  .header-quote-btn {
    display: none;
  }

  .hero {
    padding: 60px 0 50px 0;
  }

  .section-padding {
    padding: 60px 0;
  }

  .services-header {
    padding: 60px 0 35px 0;
  }

  .stats-bar {
    padding: 36px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row .form-group {
    margin-bottom: 0;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 50px 0 40px 0;
  }

  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    padding: 0 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-header {
    padding: 50px 0 30px 0;
  }

  .card {
    padding: 28px 20px;
  }
  
  .cards-grid-3, 
  .cards-grid-6,
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-card, 
  .quote-form-card,
  .featured-card {
    padding: 20px;
  }

  .featured-card-content h2 {
    font-size: 1.5rem;
  }
  
  .stats-bar {
    padding: 30px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-banner {
    padding: 36px 16px;
    margin-bottom: 50px;
    border-radius: 14px;
  }

  .cta-banner h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.6rem);
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  .about-hero {
    padding: 50px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer p,
  .faq-answer-inner {
    padding: 0 20px 18px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-logo {
    display: none;
  }

  .logo-text {
    font-size: 1.35rem;
  }

  .hero {
    padding: 44px 0 36px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .quote-section {
    padding: 24px 0;
  }

  .quote-form-card {
    padding: 16px;
    border-radius: 16px;
  }

  .modal-content {
    padding: 28px 20px;
    border-radius: 14px;
  }

  footer {
    padding: 50px 0 24px 0;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  /* Ensure buttons always meet 44px tap height */
  .btn {
    min-height: 48px;
  }
}

@media (max-width: 375px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cards-grid-3,
  .cards-grid-6,
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 1.15rem;
  }

  .container {
    padding: 0 12px;
  }

  .nav-menu .nav-link {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* --- HERO DECORATIVE BACKGROUND ORB --- */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(197, 168, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* --- MOBILE NAV MENU - show mobile-only inside the open overlay --- */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

/* --- SELECT ELEMENT PLACEHOLDER COLOR --- */
select option[value=""][disabled] {
  color: #9c8e84;
}

select option {
  color: var(--text-main);
  background-color: var(--bg-secondary);
}

/* --- FORM BUTTON FONT SIZE ON MOBILE --- */
@media (max-width: 576px) {
  .quote-form-card .btn {
    font-size: 1.1rem;
    padding: 14px 20px;
  }
}

/* --- REDUCED MOTION ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before {
    animation: none;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .view-section.active-view {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* --- AVATAR LETTER FALLBACK --- */
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  background-color: var(--accent-gold-light);
}

/* --- INFO CARD P SPACING --- */
.info-card-content p + p {
  margin-top: 6px;
}

/* --- SECTION HEADER P SPACING --- */
.services-header p {
  line-height: 1.7;
}

/* --- FAQ ANSWER SMOOTH TRANSITION ON LOAD --- */
.faq-answer {
  will-change: max-height;
}

/* --- STAT NUMBER FONT WEIGHT FOR PREMIUM LOOK --- */
.stat-num {
  font-weight: 800;
}

/* ─── INLINE FORM FIELD VALIDATION ERROR ──────────────────────────────────── */
.field-error {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 500;
  color: #C0533A;
  margin-top: 5px;
  padding-left: 2px;
  animation: errorSlideIn 0.2s ease forwards;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight the invalid input border with a warm red */
.form-group input[style*="border-color"],
.form-group textarea[style*="border-color"],
.form-group select[style*="border-color"] {
  box-shadow: 0 0 0 3px rgba(192, 83, 58, 0.1);
}

/* ─── WHATSAPP REDIRECT CONFIRMATION BANNER ──────────────────────────────── */
.wa-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 20px;
  background-color: #E8F8EF;
  border: 1px solid #25D366;
  border-radius: 10px;
  font-family: var(--font-alt);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A6B3C;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.wa-confirm::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2325D366' d='M12.004 2C6.48 2 2 6.48 2 12.004c0 1.848.502 3.633 1.458 5.201L2 22l4.96-1.301c1.51.823 3.21 1.258 4.978 1.258C17.52 21.957 22 17.478 22 11.957 21.996 6.48 17.52 2 12.004 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.wa-confirm--visible {
  opacity: 1;
  transform: translateY(0);
}

