/* 
   Better Call Wes - Liquid Glass Premium Design System
   "Pro Max" Upgrade: Deep colors, glassmorphism, fluid animations
*/

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

:root {
  /* Brand Colors - Premium Upgrade */
  /* Primary: Deep Navy */
  --color-primary: #0F2942;
  --color-primary-light: #1A3A5A;

  /* Accent: Vibrant Orange */
  --color-accent: #FF6B00;
  --color-accent-hover: #E35D00;
  --color-accent-glow: rgba(255, 107, 0, 0.4);

  /* Backgrounds */
  --color-bg: #F8FAFC;
  --color-bg-alt: #F1F5F9;
  --color-white: #FFFFFF;

  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(15, 41, 66, 0.85);
  /* Matches navy */
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --glass-border-dark: 1px solid rgba(255, 255, 255, 0.1);
  --glass-blur: blur(12px);

  /* Text Colors */
  --text-dark: #1F2937;
  --text-body: #475569;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255, 255, 255, 0.8);

  /* Layout Tokens */
  --container-width: 1280px;

  /* Radius - Modern & Soft */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows - Layered & Colored */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 16px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 10px 30px -5px var(--color-accent-glow);
  --shadow-inner: inset 0 2px 4px 0 rgba(255, 255, 255, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* FAQ Accordion */
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.faq-question i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform 0.3s;
}

.floating-cta:hover {
  transform: translateY(-5px);
  color: white;
}

@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   BUTTONS - Liquid Style
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  gap: 0.75rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #EA580C 100%);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.4);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ============================================
   TOP BAR & HEADER - Floating Glass
   ============================================ */
.top-bar {
  background: var(--color-primary);
  color: var(--text-white-muted);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
  /* Above header */
}

.top-bar a {
  color: var(--text-white);
  font-weight: 600;
}

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

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

.header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.header .container {
  /* Creating the floating effect on the container inside */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  top: 0.5rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.logo img {
  height: 76px;
  width: auto;
  max-width: 320px;
}

.main-nav {
  display: none;
}

@media (min-width: 960px) {
  .main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .nav-link {
    font-weight: 500;
    color: var(--text-body);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
  }

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

  .nav-link:hover {
    color: var(--color-accent);
  }

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

  .header .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  transition: transform 0.3s;
}

.mobile-menu-btn:hover {
  transform: rotate(90deg);
}

@media (min-width: 960px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 0.75rem;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 100;
  /* Ensure it's above other elements */
}

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

/* Connect the hover gap */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.dropdown-item {
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--color-accent);
  transform: translateX(5px);
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  margin: 0.5rem 0;
}

/* Mobile Menu - Glass Overlay */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 41, 66, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: center;
  text-align: center;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
}

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

@media (min-width: 960px) {
  .mobile-nav {
    display: none !important;
  }
}

/* ============================================
   HERO - Modern Overlay
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  /* Sub-pages: compact height */
  display: flex;
  align-items: center;
  padding-top: 140px;
  /* Header clearance + small space */
  padding-bottom: 60px;
  overflow: hidden;
}

/* Full-height hero ONLY for homepage */
.hero-home {
  min-height: 100vh;
  padding-top: 80px;
}

/* Inner page hero (About, Contact etc) */
.page-hero {
  padding-top: 140px;
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

/* Responsive map embed */
.map-embed {
  height: 450px;
}

@media (max-width: 768px) {
  .map-embed {
    height: 280px;
  }
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* Slight zoom for parallax feel if we added JS */
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Heavy gradient overlay to hide baked-in image text */
  background: linear-gradient(0deg, var(--color-primary) 10%, rgba(15, 41, 66, 0.92) 50%, rgba(15, 41, 66, 0.85) 100%);
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.hero:has(.hero-bg) h1 {
  color: var(--text-white);
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-body);
  /* Stone 300 */
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  transition: color 0.3s ease;
}

.hero:has(.hero-bg) p {
  color: #D6D3D1;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Rating Badge - Glass Pill */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.rating-badge .stars {
  color: #F59E0B;
  font-size: 1rem;
}

.rating-badge span:last-child {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.9rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 5rem;
}

.section-label {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  opacity: 0.3;
}

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

.section-gray {
  background: var(--color-bg-alt);
}

/* ============================================
   SERVICE CARDS - Glass & Lift
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--shadow-accent);
  border-color: rgba(217, 119, 6, 0.2);
}

.service-card::before {
  /* Subtle glass gradient on hover */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(217, 119, 6, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #FFF7ED;
  /* Orange 50 */
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: var(--text-white);
  transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.learn-more {
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.learn-more:hover {
  color: var(--color-accent);
  gap: 0.75rem;
}

/* ============================================
   CTA SECTION - Modern
   ============================================ */
.cta-section {
  background: var(--color-primary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.15) 0%, rgba(12, 10, 9, 0) 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.cta-section h2 span {
  color: var(--color-accent);
}

.cta-section p {
  color: var(--text-white-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* ============================================
   FOOTER - Multi-column Clean
   ============================================ */
.footer {
  background: #000000;
  color: var(--text-white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
  max-width: 320px;
  line-height: 1.8;
}

.footer h4 {
  color: var(--text-white);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* ============================================
   UTILITIES
   ============================================ */
/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all 0.2s;
}

.badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Alignment Utilities */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FORMS & CONTACT - Premium Style
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-item {
  display: flex;
  gap: 1rem;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #E5E7EB;
  align-items: flex-start;
}

.contact-card-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   SPLIT SECTION LAYOUTS
   ============================================ */
.section-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.section-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
}

.section-split:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .section-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-split img {
    order: -1;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }
}

/* ============================================
   REVIEWS PAGE
   ============================================ */

/* Google Rating Banner */
.google-rating-banner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.google-rating-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.google-logo-wrap svg {
  flex-shrink: 0;
}

.google-logo-wrap span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.google-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.google-stars {
  display: flex;
  gap: 0.2rem;
  color: #FBBC04;
  font-size: 1.5rem;
}

.google-rating-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.google-rating-text strong {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .google-rating-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .google-rating-info {
    flex-direction: column;
  }
}

/* Review Source Label */
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-source svg {
  flex-shrink: 0;
}

/* Leave a Review Section */
.leave-review-section {
  background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(66, 133, 244, 0.4);
}

.leave-review-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.leave-review-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.leave-review-section h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.leave-review-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.leave-review-section .btn {
  position: relative;
  z-index: 1;
}

.btn-google {
  background: white;
  color: #1a73e8;
  font-weight: 700;
  padding: 18px 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-google:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: #1557b0;
}

.btn-google svg {
  flex-shrink: 0;
}

.leave-review-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.leave-review-step .step-num {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .leave-review-section {
    padding: 3rem 1.5rem;
  }

  .leave-review-steps {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  background: #FFF7ED;
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-choose-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Review Stats Strip */
.review-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.review-stat {
  text-align: center;
}

.review-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.review-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Privacy Note */
.privacy-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}

/* Swiper Pagination Styling */
.reviews-swiper {
  padding-bottom: 4rem !important;
  /* Make room for pagination dots */
}

.reviews-swiper .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.2;
  width: 10px;
  height: 10px;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}

/* ============================================
   MOBILE IMPROVEMENTS — comprehensive overrides
   ============================================ */

/* Utility class for 2-col grids that need to stack on mobile */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {

  /* === Header === */
  .header {
    top: 0.5rem;
  }

  .header .container {
    padding: 0.4rem 1rem;
    border-radius: 14px;
  }

  .logo img {
    height: 48px;
    max-width: 200px;
  }

  /* === Sections — reduce massive vertical padding === */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* === Typography scaling === */
  h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  /* === Hero === */
  .hero-home {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content>div[style*="display: flex"] {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  /* Make hero buttons full-width and stacked */
  .hero-content [style*="display: flex"][style*="gap"] {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* === Service grid (class-based) - already handled at 600px === */
  .service-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* === 2-col utility grids === */
  .grid-2col,
  .grid-booking {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* === Booking section reverse order (text first, then button card) === */
  .grid-booking>div:last-child {
    order: -1;
  }

  /* === Visual break banner === */
  section[style*="height: 300px"] {
    height: auto !important;
    padding: 60px 0;
  }

  /* === CTA section === */
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  /* === Footer grid === */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand img {
    height: 48px;
  }

  /* === Container padding === */
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .header .container {
    padding: 0.35rem 0.75rem;
  }

  .logo img {
    height: 40px;
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .section {
    padding: 50px 0;
  }

  .service-card {
    padding: 1.5rem;
  }
}