/* ==========================================================================
   Sai Painting Services - Seamless Responsive Design System
   Location: Marunji, Hinjewadi - Pune
   ========================================================================== */

:root {
  --primary-navy: #0f172a;
  --secondary-blue: #1e3a8a;
  --accent-gold: #f59e0b;
  --accent-gold-dark: #d97706;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1da851;
  --bg-light: #ffffff;
  --bg-subtle: #f8fafc;
  --surface-card: #ffffff;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-gold: rgba(245, 158, 11, 0.3);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.16);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  padding-bottom: 70px;
  overflow-x: hidden;
  width: 100%;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

/* Full Width Seamless Sections with Left/Right Content Margin */
.site-section {
  width: 100%;
  padding: 70px 0;
  position: relative;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.site-section.bg-subtle {
  background-color: var(--bg-subtle);
}

.site-section.bg-dark-navy {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .site-section {
    padding: 45px 0;
  }
}

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

.bg-dark-navy h1, .bg-dark-navy h2, .bg-dark-navy h3, .bg-dark-navy h4 {
  color: #ffffff;
}

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

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.bg-dark-navy .section-desc {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.7rem;
  }
  .section-desc {
    font-size: 0.92rem;
  }
}

.gradient-gold-text {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary-navy);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-contact a {
  color: #ffffff;
}

.wa-top-badge {
  background: rgba(37, 211, 102, 0.2);
  color: #4ade80 !important;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

@media (max-width: 640px) {
  .top-bar-content {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 0.76rem;
  }
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

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

.emblem-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold-gradient);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  letter-spacing: 0.8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.desktop-nav a:hover {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 991px) {
  .desktop-nav, .desktop-only {
    display: none;
  }
}

/* Rich Video Hero Section */
.hero-wrapper-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #0f172a;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 58, 138, 0.88) 60%, rgba(15, 23, 42, 0.96) 100%);
  z-index: 2;
}

.hero-content-box {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 60px 0;
  max-width: 860px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 760px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.stat-card strong {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.2;
}

.stat-card span {
  font-size: 0.76rem;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-wrapper-section {
    min-height: 440px;
  }
  .hero-content-box {
    padding: 36px 0;
  }
  .hero-badge-pill {
    font-size: 0.76rem;
    padding: 4px 12px;
  }
  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 0.94rem;
    margin-bottom: 22px;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 22px;
  }
  .stat-card {
    padding: 10px;
  }
  .stat-card i {
    font-size: 1.3rem;
  }
  .stat-card strong {
    font-size: 0.96rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Video Showcase Section */
.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.video-wrapper {
  position: relative;
  height: 220px;
  background: #000000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-body {
  padding: 20px;
}

.video-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.video-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services Showcase */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  position: relative;
  height: 190px;
}

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

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 18px;
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--whatsapp-green);
}

.service-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--secondary-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

/* Calculator Section */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
}

.calc-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
}

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

.calc-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.calc-options-grid, .calc-preset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.calc-opt-btn, .preset-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 6px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.calc-opt-btn.active, .preset-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0f172a;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.range-val-badge {
  background: var(--accent-gold);
  color: #0f172a;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  accent-color: var(--accent-gold);
  cursor: pointer;
}

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

.tier-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 10px;
  cursor: pointer;
}

.tier-card input {
  position: absolute;
  opacity: 0;
}

.tier-content {
  display: flex;
  flex-direction: column;
}

.tier-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
}

.tier-price {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.8rem;
}

.tier-content small {
  font-size: 0.7rem;
  color: #cbd5e1;
}

.tier-card.active {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--accent-gold);
}

.calc-summary-card {
  background: #ffffff;
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-header h3 {
  font-size: 1.3rem;
}

.summary-loc-tag {
  font-size: 0.78rem;
  color: var(--secondary-blue);
  font-weight: 700;
}

.summary-items {
  margin: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.summary-total-box {
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.total-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.total-price-display {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--secondary-blue);
  margin: 2px 0;
}

.total-note {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .calc-options-grid, .calc-preset-grid, .quality-tier-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Wall Color Visualizer */
.visualizer-box {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.wall-preview-container {
  position: relative;
  height: 320px;
  background-color: #1e3a8a;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wall-color-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.wall-room-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.sofa-illustration i {
  font-size: 7.5rem;
  color: #ffffff;
  filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.35));
}

.frame-art {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 1.9rem;
}

.wall-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--accent-gold);
}

.color-swatches-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 16px;
}

.swatch-btn {
  width: 100%;
  height: 46px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  cursor: pointer;
}

.swatch-btn.active {
  outline: 2px solid var(--secondary-blue);
}

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

@media (max-width: 991px) {
  .visualizer-box {
    grid-template-columns: 1fr;
  }
}

/* Wall Ideas & Project Gallery */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.idea-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.idea-img-wrapper {
  position: relative;
  height: 200px;
}

.idea-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idea-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 6px;
  transition: opacity 0.3s ease;
}

.idea-card:hover .idea-overlay {
  opacity: 1;
}

.idea-info {
  padding: 16px;
}

.idea-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.idea-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-primary);
  cursor: pointer;
}

.filter-btn.active {
  background: var(--secondary-blue);
  color: #ffffff;
  border-color: var(--secondary-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.gallery-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  color: #ffffff;
  padding: 20px 14px 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Service Locations Around Marunji */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.loc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.location-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.location-card p {
  color: #94a3b8;
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.loc-time {
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Expandable 60 FAQs & Location Q&A */
.faq-qna-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.faq-search-box {
  position: relative;
  margin-bottom: 24px;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: #ffffff;
  outline: none;
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-blue);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-tab-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.faq-qna-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.accordion-item {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.accordion-header .acc-icon {
  color: var(--secondary-blue);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .acc-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.accordion-item.active .accordion-body {
  max-height: 350px;
  padding: 0 20px 18px 20px;
  border-top: 1px solid var(--border-light);
}

.acc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary-blue);
  background: rgba(30, 58, 138, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

/* CTA Banner Card */
.cta-banner-card {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 42px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 8px;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .cta-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  background: #090d16;
  color: #cbd5e1;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-about {
  font-size: 0.86rem;
  color: #94a3b8;
  margin-top: 14px;
}

.footer-links h4, .footer-contact h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.86rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact p i {
  color: var(--accent-gold);
  margin-top: 3px;
}

.footer-contact a {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* Floating Actions */
.floating-quick-actions {
  position: fixed;
  bottom: 72px;
  right: 14px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 992px) {
  .floating-quick-actions {
    bottom: 24px;
    right: 20px;
  }
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.float-phone {
  background: var(--secondary-blue);
}

.float-wa {
  background: var(--whatsapp-green);
}

/* 100% Full-Width Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
  padding: 0 4px;
  margin: 0;
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  gap: 2px;
  flex: 1;
  text-align: center;
}

.nav-item i {
  font-size: 1.15rem;
}

.nav-item.active {
  color: var(--secondary-blue);
}

.nav-item-accent {
  position: relative;
  top: -10px;
}

.nav-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  font-size: 1.1rem !important;
}

/* Modals */
.lightbox-modal, .booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox-modal.active, .booking-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.lightbox-close, .booking-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
}

.lightbox-content img {
  max-height: 70vh;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.lightbox-title {
  color: #ffffff;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.booking-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  max-width: 440px;
  width: 100%;
  border: 1px solid var(--border-light);
}

.booking-close {
  top: 14px;
  right: 18px;
  color: var(--text-muted);
}

.booking-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.booking-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}