/* ==========================================================================
   RAKSHANA WATER SOLUTIONS - MASTER DESIGN SYSTEM & STYLESHEET
   Brand Palette: Deep Royal Blue, Electric Cyan/Azure, Steel Silver, Ice White
   Tagline: Pure Water. Perfect Life.
   Hotline: 9741620441
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors from Logo */
  --primary-navy: #0B2B67;
  --primary-blue: #0A4D9C;
  --accent-cyan: #00A3E0;
  --accent-glow: #00D2FF;
  --accent-teal: #00E5FF;
  
  /* Metallic & Neutral Palette */
  --silver-light: #F1F5F9;
  --silver-mid: #CBD5E1;
  --silver-dark: #64748B;
  --charcoal: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --bg-ice: #F8FAFC;
  --white: #FFFFFF;
  
  /* Status & Accents */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE57;
  --gold-star: #F59E0B;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0B2B67 0%, #0A4D9C 50%, #00A3E0 100%);
  --grad-hero: linear-gradient(180deg, #071D49 0%, #0B2B67 60%, #0A4D9C 100%);
  --grad-form: linear-gradient(135deg, #071D49 0%, #0B2B67 40%, #0A4D9C 80%, #00A3E0 100%);
  --grad-accent: linear-gradient(135deg, #00A3E0 0%, #00D2FF 100%);
  --grad-btn-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(11, 43, 103, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 43, 103, 0.12);
  --shadow-lg: 0 16px 40px rgba(11, 43, 103, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 210, 255, 0.4);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-ice);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 700;
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Notification Bar */
.top-bar {
  background: var(--charcoal);
  color: var(--silver-light);
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.top-bar-item i {
  color: var(--accent-cyan);
}

.top-bar-phone {
  color: var(--accent-glow);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--silver-mid);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

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

.brand-logo-img {
  height: 54px;
  width: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

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

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue);
  background: var(--silver-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.65rem;
  right: 0.65rem;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
}

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

.btn-book-nav {
  background: var(--grad-primary);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(10, 77, 156, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 77, 156, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--silver-mid);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
}

.mobile-nav-links a:hover {
  background: var(--silver-light);
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 4rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.22) 0%, rgba(11, 43, 103, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge i {
  color: var(--accent-glow);
}

.hero-title {
  font-size: 3.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, #00D2FF 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--silver-light);
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.95;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feat-item i {
  font-size: 1.25rem;
  color: var(--accent-glow);
}

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

.btn-whatsapp-hero {
  background: var(--whatsapp-green);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.btn-whatsapp-hero:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-call-hero {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(5px);
}

.btn-call-hero:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 3px solid rgba(255,255,255,0.2);
}

.hero-image-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 43, 103, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 210, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-stat-item h4 {
  color: var(--accent-glow);
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}

.floating-stat-item p {
  color: var(--silver-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ambassador Spotlight Section with Logo Badge on Chest */
.ambassador-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

.ambassador-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-mid);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.ambassador-img-col {
  position: relative;
  background: var(--grad-hero);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 2rem 0 2rem;
  overflow: hidden;
}

.ambassador-photo-wrap {
  position: relative;
  display: inline-block;
}

.ambassador-photo {
  max-height: 440px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

/* Founder T-Shirt Logo Badge Overlay */
.founder-chest-logo-badge {
  position: absolute;
  top: 56%;
  left: 48%;
  transform: translate(-50%, -50%);
  background: rgba(11, 43, 103, 0.95);
  border: 1.5px solid var(--accent-glow);
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  pointer-events: none;
}

.founder-chest-logo-badge img {
  height: 24px;
  width: auto;
  border-radius: 4px;
}

.founder-chest-logo-badge span {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ambassador-seal {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 163, 224, 0.95);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
}

.ambassador-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.ambassador-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.ambassador-quote {
  font-size: 1.05rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 1.25rem;
}

.ambassador-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.92rem;
}

.point-item i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.ambassador-direct-call {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-ice);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--silver-mid);
}

.direct-call-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(10, 77, 156, 0.3);
}

.direct-call-text h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.direct-call-text a {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
}

/* Purifier Domestic vs Commercial Section */
.purifiers-spotlight {
  padding: 5rem 0;
  background: var(--white);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.spotlight-box {
  background: var(--bg-ice);
  border-radius: var(--radius-lg);
  border: 2px solid var(--silver-mid);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.spotlight-box:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.spotlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spotlight-icon {
  width: 54px;
  height: 54px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.spotlight-title h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.spotlight-title p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.spotlight-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 220px;
}

.spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-features-list {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.spotlight-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
}

.spotlight-features-list li i {
  color: var(--accent-cyan);
}

/* HIGH-END ENHANCED BOOKING SECTION & FORM */
.booking-section {
  padding: 5.5rem 0;
  background: var(--grad-form);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(0, 210, 255, 0.25) 0%, rgba(7, 29, 73, 0) 70%);
  pointer-events: none;
}

.booking-container {
  background: rgba(11, 43, 103, 0.75);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 210, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.booking-header h2 span {
  color: var(--accent-glow);
}

.booking-header p {
  color: var(--silver-light);
  font-size: 1.1rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.3px;
}

.form-label i {
  color: var(--accent-glow);
}

.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 2px solid var(--silver-mid);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-glow);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.35);
}

.booking-type-toggle {
  display: flex;
  gap: 1rem;
  background: rgba(7, 29, 73, 0.8);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
}

.type-toggle-btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  background: none;
  color: var(--silver-light);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.type-toggle-btn.active {
  background: var(--grad-accent);
  color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.4);
}

.btn-submit-booking {
  background: var(--grad-btn-whatsapp);
  color: var(--white);
  padding: 1.15rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition-fast);
  width: 100%;
}

.btn-submit-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

/* AMC Calculator Section */
.amc-section {
  padding: 5rem 0;
  background: var(--bg-ice);
}

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

.amc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--silver-mid);
  padding: 2.25rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.amc-card.featured {
  border: 2px solid var(--accent-cyan);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: scale(1.03);
}

.amc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amc-title {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.amc-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.amc-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.amc-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.amc-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--silver-light);
  font-size: 0.92rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.amc-features li i {
  color: var(--accent-cyan);
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: var(--white);
}

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

.review-card {
  background: var(--bg-ice);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--silver-mid);
}

.stars {
  color: var(--gold-star);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}

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

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-ice);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--silver-mid);
  overflow: hidden;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--silver-light);
  padding: 4rem 0 2rem 0;
  border-top: 4px solid var(--accent-cyan);
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--silver-mid);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  color: var(--silver-mid);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-glow);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--silver-mid);
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--silver-dark);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: var(--whatsapp-green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 2px solid var(--accent-cyan);
  position: relative;
  transform: translateY(25px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  background: var(--grad-hero);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.modal-body {
  padding: 2rem;
  max-height: 85vh;
  overflow-y: auto;
}

/* Navigation Dropdown Menu for Other Services */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--silver-mid);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1100;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: var(--silver-light);
  color: var(--primary-blue);
}

.nav-dropdown-menu a i {
  color: var(--accent-cyan);
  width: 18px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .ambassador-card {
    grid-template-columns: 1fr;
  }
  .services-grid, .amc-grid, .reviews-grid, .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-container {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .services-grid, .amc-grid, .reviews-grid, .spotlight-grid, .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .ambassador-content {
    padding: 1.75rem 1.25rem;
  }
  .ambassador-points {
    grid-template-columns: 1fr;
  }
  .spotlight-features-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .booking-container {
    padding: 2rem 1.25rem;
  }
  .booking-header h2 {
    font-size: 2rem;
  }
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
    bottom: 20px;
    right: 20px;
  }
}
