/* ==========================================================================
   GAYA TOUR PACKAGE — CORE DESIGN SYSTEM & STYLES
   Domain: gayatourpackage.com | Phone: +91 95606 07497
   Aesthetic: Spiritual, Authentic, Trustworthy, Premium Pilgrimage & Culture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand Color Palette */
  --saffron-primary: #C2410C;      /* Deep Royal Saffron */
  --saffron-hover: #9A3412;
  --saffron-light: #FFF7ED;
  --saffron-glow: rgba(194, 65, 12, 0.15);
  
  --maroon-deep: #881337;          /* Sacred Temple Maroon */
  --maroon-dark: #4C0519;
  --maroon-soft: #FFE4E6;
  
  --gold-accent: #B45309;          /* Subtle Sacred Gold / Ochre */
  --gold-light: #FEF3C7;
  --gold-metallic: #D4AF37;
  
  --buddhist-terracotta: #EA580C;
  --buddhist-green: #047857;       /* Zen Forest Green */
  --buddhist-green-light: #ECFDF5;
  
  /* Neutrals & Surfaces */
  --sand-bg: #FDFBF7;              /* Warm Sacred Sand Base */
  --sand-surface: #F7F3EB;         /* Subtle card / section surface */
  --sand-border: #E8E2D5;
  --sand-dark: #D3C9B8;
  
  --white: #FFFFFF;
  --charcoal-900: #0F172A;         /* Primary Dark Typography */
  --charcoal-800: #1E293B;
  --charcoal-700: #334155;
  --charcoal-500: #64748B;
  --charcoal-300: #CBD5E1;
  --charcoal-100: #F1F5F9;
  
  /* WhatsApp Green */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout & Shadows */
  --max-width: 1280px;
  --container-padding: 1.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 25px rgba(194, 65, 12, 0.25);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--sand-bg);
  color: var(--charcoal-800);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Typography Helpers */
.font-serif { font-family: var(--font-serif); }
.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }

h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal-900);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--charcoal-700);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal-700);
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron-primary);
  background-color: var(--saffron-light);
  border: 1px solid rgba(194, 65, 12, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag.tag-maroon {
  color: var(--maroon-deep);
  background-color: var(--maroon-soft);
  border-color: rgba(136, 19, 55, 0.2);
}

.section-tag.tag-green {
  color: var(--buddhist-green);
  background-color: var(--buddhist-green-light);
  border-color: rgba(4, 120, 87, 0.2);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--saffron-primary);
  color: var(--white);
  box-shadow: 0 4px 14px var(--saffron-glow);
}

.btn-primary:hover {
  background-color: var(--saffron-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--saffron-glow);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--charcoal-900);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--sand-surface);
  border-color: var(--charcoal-300);
  transform: translateY(-2px);
}

.btn-maroon {
  background-color: var(--maroon-deep);
  color: var(--white);
}

.btn-maroon:hover {
  background-color: var(--maroon-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal-900);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 8px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.top-bar {
  background-color: var(--charcoal-900);
  color: var(--charcoal-300);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-locations {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--saffron-primary);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact a:hover {
  color: var(--white);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-border);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron-primary), var(--maroon-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 2px 8px var(--saffron-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--saffron-primary);
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-800);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--saffron-primary);
}

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

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1010;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--charcoal-700);
  transition: var(--transition);
}

.nav-dropdown-item:hover {
  background-color: var(--saffron-light);
  color: var(--saffron-primary);
  padding-left: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--charcoal-900);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.84) 100%),
              url('../images/mahabodhi-temple.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 5.5rem 0 4.5rem 0;
  overflow: hidden;
}

.hero-content {
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  color: var(--saffron-primary);
  width: 18px;
  height: 18px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-family: var(--font-serif);
  line-height: 1.12;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 780px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}

.hero-phone:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--saffron-primary);
}

.hero-phone svg {
  color: var(--saffron-primary);
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.hero-feat-item svg {
  color: var(--saffron-primary);
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   QUICK SERVICE BAR
   ========================================================================== */

.quick-service-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--sand-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 20;
  margin-top: -1.25rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.service-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  gap: 0.5rem;
  transition: var(--transition);
  border-right: 1px solid var(--sand-border);
}

.service-strip-item:last-child {
  border-right: none;
}

.service-strip-item:hover {
  background-color: var(--saffron-light);
  transform: translateY(-2px);
}

.service-strip-icon {
  width: 38px;
  height: 38px;
  background-color: var(--sand-surface);
  color: var(--saffron-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.service-strip-item:hover .service-strip-icon {
  background-color: var(--saffron-primary);
  color: var(--white);
}

.service-strip-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--charcoal-800);
  line-height: 1.2;
}

/* ==========================================================================
   SECTIONS & GRIDS
   ========================================================================== */

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-sand {
  background-color: var(--sand-surface);
}

.section-white {
  background-color: var(--white);
}

.section-dark {
  background-color: var(--charcoal-900);
  color: var(--white);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--charcoal-300);
}

/* Package Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.package-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.package-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--saffron-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.package-badge.badge-maroon {
  background-color: var(--maroon-deep);
}

.package-badge.badge-green {
  background-color: var(--buddhist-green);
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.package-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
  line-height: 1.35;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  flex-grow: 1;
}

.package-highlights {
  margin-bottom: 1.5rem;
  border-top: 1px dashed var(--sand-border);
  padding-top: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal-700);
  margin-bottom: 0.4rem;
}

.highlight-item svg {
  color: var(--saffron-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 14px;
  height: 14px;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--sand-surface);
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  text-transform: uppercase;
}

.price-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-900);
}

/* Feature & Destination Cards */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.destination-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--sand-border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.dest-img-wrap {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.dest-content {
  padding: 1.25rem;
}

.dest-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-900);
}

.dest-desc {
  font-size: 0.875rem;
  color: var(--charcoal-500);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--saffron-primary);
}

.dest-link:hover {
  gap: 0.65rem;
  color: var(--saffron-hover);
}

/* Why Choose Us Cards */
.features-6-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.trust-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron-primary);
  box-shadow: var(--shadow-lg);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--saffron-light);
  color: var(--saffron-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.trust-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.trust-desc {
  font-size: 0.925rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

/* How It Works - 4 Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-card {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron-primary);
  box-shadow: var(--shadow-md);
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--charcoal-500);
}

/* Interactive Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-tab-btn {
  background-color: var(--white);
  border: 1px solid var(--sand-border);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--charcoal-700);
  transition: var(--transition);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background-color: var(--saffron-primary);
  color: var(--white);
  border-color: var(--saffron-primary);
  box-shadow: 0 4px 12px var(--saffron-glow);
}

/* Lead Enquiry Form */
.enquiry-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-xl);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-300);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: var(--saffron-primary);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.2);
}

.form-control option {
  background-color: var(--charcoal-900);
  color: var(--white);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--sand-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal-900);
  transition: var(--transition);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--saffron-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--charcoal-700);
  line-height: 1.65;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--charcoal-900);
  color: var(--charcoal-300);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 3px solid var(--saffron-primary);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--charcoal-300);
  font-size: 0.925rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-title {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-serif);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--charcoal-300);
}

.footer-link:hover {
  color: var(--white);
  padding-left: 0.35rem;
}

.footer-office-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.footer-office-card strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-office-card span {
  font-size: 0.825rem;
  color: var(--charcoal-300);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   FLOATING WHATSAPP & STICKY MOBILE CONVERSIONS
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-dark);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* Pulse animation */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2s infinite;
}

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

/* Mobile Sticky Bar (Hidden on desktop) */
.mobile-sticky-bar {
  display: none;
}

/* Quick Quote Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1rem;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--sand-surface);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal-700);
}

.modal-close-btn:hover {
  background: var(--sand-border);
  color: var(--charcoal-900);
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--charcoal-500);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.breadcrumb-separator {
  color: var(--charcoal-300);
}

/* Content Article Stylings */
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-800);
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

.article-body ul, .article-body ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  list-style-type: disc;
}

.article-callout {
  background-color: var(--saffron-light);
  border-left: 4px solid var(--saffron-primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}

/* ==========================================================================
   FORM SUBMISSION FEEDBACK: SPINNER & TOAST NOTIFICATION
   ========================================================================== */
.btn-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.15em;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpinnerRotate 0.65s linear infinite;
  margin-right: 0.5rem;
}

@keyframes btnSpinnerRotate {
  to { transform: rotate(360deg); }
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 440px;
  width: calc(100% - 2rem);
  pointer-events: none;
}

.toast-notification {
  pointer-events: auto;
  background: #ffffff;
  color: var(--charcoal-900);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18), 0 2px 6px rgba(15, 23, 42, 0.08);
  border-left: 5px solid var(--buddhist-green);
  animation: toastSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast-notification.toast-error {
  border-left-color: var(--maroon-deep);
}

@keyframes toastSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.toast-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toast-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--buddhist-green);
}

.toast-error .toast-icon {
  color: var(--maroon-deep);
}

.toast-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--charcoal-900);
  margin: 0;
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--charcoal-500);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  transition: color 0.2s;
}

.toast-close-btn:hover {
  color: var(--charcoal-900);
}

.toast-body {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--charcoal-700);
  margin: 0;
}

.toast-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.toast-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--whatsapp);
  color: #ffffff !important;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s;
  text-decoration: none;
}

.toast-btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: #ffffff !important;
}

.toast-btn-whatsapp svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

@media (max-width: 640px) {
  .toast-container {
    bottom: 5rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

