 /* Premium Service Page Styles */
        :root {
            --gradient-primary: linear-gradient(135deg, #006bd6 0%, #1a8cff 100%);
            --gradient-secondary: linear-gradient(135deg, #dbae26 0%, #f7c948 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .logo-image {
            max-height: 150px;
            width: auto;
            transition: var(--transition);
        }
        
        .header.sticky .logo-image {
            max-height: 150px;
        }
        
        .footer-logo-image {
            max-height: 150px;
            width: auto;
            margin-bottom: 20px;
        }
        
        /* Luxury Hero Section */
        .luxury-hero {
            height: 80vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
        }
        
       
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image\ -\ 2026-01-04T072020.069.webp');
            background-size: cover;
            background-position: center; z-index: -1;
        }
        
        .luxury-hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-secondary);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 30px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .luxury-hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            line-height: 1.1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }

        /* =========================================================
   LUXURY HERO (Video Background) — 60vh Responsive
   - Desktop/tablet: ~60vh (with safe min/max)
   - Mobile: slightly taller for readability + avoids notch issues
   - Keeps your theme vibe + improves spacing on all devices
========================================================= */

.luxury-hero {
  position: relative;

  /* ✅ requested: about 60vh */
  min-height: 60vh;
  height: 60vh;

  /* keep it usable on very small/large screens */
  max-height: 760px;
  min-height: 520px;

  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;

  /* smoother content spacing */
  padding: clamp(70px, 6vh, 110px) 0 clamp(40px, 4vh, 80px);
}



/* Premium overlay (keeps your theme vibe) */
.luxury-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 25%, rgba(0, 107, 214, 0.114), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.18), transparent 52%),
    linear-gradient(to right, rgba(0, 0, 0, 0.21) 55%, rgba(0, 0, 0, 0.087) 100%);
}

/* Layout container */
.luxury-hero .container {
  position: relative;
  z-index: 2;
}

/* Content block */
.luxury-hero-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;

  animation: luxurySlide 1.1s ease forwards;
  opacity: 0;

  /* nicer readability */
  padding-right: clamp(0px, 4vw, 40px);
}

@keyframes luxurySlide {
  from { transform: translateY(18px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Badge */
.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  letter-spacing: 2.6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

/* Headline */
.luxury-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -1.2px;

  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(251, 191, 36, 0.92) 55%,
    rgba(0, 107, 214, 0.95) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Optional: if you have a hero paragraph, this makes it premium */
.luxury-hero p {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: rgba(255,255,255,0.82);
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

/* Outline button premium */
.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
}
/* =========================================
   HERO BACKGROUND IMAGE (Premium)
========================================= */
.hero-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* 🔁 Replace with your actual image path */
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.475),
      rgba(0, 0, 0, 0.404)
    ),
    url("image\ -\ 2026-01-04T072020.069.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;

  /* Subtle luxury motion (optional but 🔥) */
  animation: heroZoom 24s ease-in-out infinite alternate;
}

/* Gentle cinematic zoom */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* Stats row */
.hero-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;

  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* Stat item */
.stat-item { text-align: left; }

.stat-number {
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.5px;
  color: #fff;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
}



        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 600;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* WhatsApp button positioning */
        .whatsapp-float {
            left: 30px;
            bottom: 30px;
            right: auto;
        }
        
        /* Premium Services Grid */
        .premium-services {
            padding: 100px 0;
            background:
    linear-gradient(rgba(30, 29, 29, 0.95), rgba(236, 233, 233, 0.95)),
    url("HydroDrill-Solutions-favicon.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
        }
        
        .service-category {
            margin-bottom: 80px;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .category-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .category-header h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            color: goldenrod;
        }
        
        .category-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gradient-secondary);
        }
        
        .premium-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .premium-service-card {
            background: black;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .premium-service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }
        
        .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
            z-index: 2;
        }
        
        .service-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .premium-service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 107, 214, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .premium-service-card:hover .service-overlay {
            opacity: 1;
        }
        
        .service-content {
            padding: 35px;
            position: relative;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -55px auto 25px;
            color: white;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 20px rgba(0, 107, 214, 0.2);
        }
        
        .service-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: goldenrod;
        }
        
        .service-description {
            color: aliceblue;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            color: aliceblue;
        }
        
        .service-features li i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: 500;
            padding: 10px 20px;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateX(10px);
        }
        
        /* Process Timeline */
        .process-timeline {
            padding: 100px 0;
            background: var(--gradient-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/pattern.svg') repeat;
            opacity: 0.05;
            z-index: 0;
        }
        
        .section-header-light .section-title {
            color: white;
        }
        
        .section-header-light .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 80px auto 0;
        }
        
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-secondary);
            transform: translateX(-50%);
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(odd) {
            flex-direction: row;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            flex: 1;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .step-number {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            z-index: 1;
            border: 5px solid #1a1a2e;
        }
        
        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .step-content h3 {
            color: white;
            margin-bottom: 15px;
        }
        
        /* Technology Showcase */
        .technology-showcase {
            padding: 100px 0;
        }
        
        .tech-slider {
            margin-top: 50px;
        }
        
        .tech-slide {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 450px;
        }
        
        .tech-image {
            height: 250px;
            overflow: hidden;
        }
        
        .tech-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .tech-slide:hover .tech-image img {
            transform: scale(1.1);
        }
        
        .tech-content {
            padding: 30px;
        }
        
        .tech-content h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .tech-tag {
            display: inline-block;
            padding: 5px 15px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-color);
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 1.5rem;
        }
        
        /* Why Choose Premium */
        .why-premium {
            padding: 100px 0;
            background: black;
        }
        
        .premium-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .premium-feature {
            text-align: center;
            padding: 50px 30px;
            background: white;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .premium-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }
        
        .premium-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        /* Consultation Banner */
        .consultation-banner {
            padding: 80px 0;
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .consultation-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/pattern-light.svg') repeat;
            opacity: 0.1;
        }
        
        .consultation-banner h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .consultation-banner p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .consultation-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-input {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: black;
            padding: 15px;
            border-radius: 10px;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
        }
        
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .btn-gold {
            background: var(--gradient-secondary);
            color: white;
            border: none;
        }
        
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(219, 174, 38, 0.3);
        }
        
        @media (max-width: 1200px) {
            .luxury-hero h1 {
                font-size: 3.5rem;
            }
            
            .premium-service-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .luxury-hero {
                height: 70vh;
                min-height: 500px;
            }
            
            .luxury-hero h1 {
                font-size: 3rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .timeline-container::before {
                left: 30px;
            }
            
            .process-step {
                flex-direction: row !important;
                margin-left: 80px;
            }
            
            .step-number {
                left: 0;
                transform: translateX(-50%);
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .nav-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 400px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 30px 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                width: 100%;
            }
            
            .nav-item {
                width: 100%;
                margin-bottom: 0;
            }
            
            .nav-link {
                color: var(--dark-color);
                display: block;
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid #eee;
                font-size: 1.1rem;
            }
            
            .nav-link.active {
                color: var(--primary-color);
                border-left: 3px solid var(--primary-color);
                padding-left: 15px;
            }
            
            .cta-nav {
                margin-top: 20px;
                width: 100%;
            }
            
            .cta-nav .btn {
                width: 100%;
                text-align: center;
            }
            
            .nav-toggle {
                display: flex;
                flex-direction: column;
                cursor: pointer;
                gap: 5px;
                z-index: 1001;
            }
            
            .nav-toggle span {
                width: 25px;
                height: 3px;
                background-color: black;
                transition: var(--transition);
                transform-origin: left center;
            }
            
            .header.sticky .nav-toggle span {
                background-color: var(--dark-color);
            }
            
            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(0px, 0px);
            }
            
            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(0px, 0px);
            }
        }
        
        @media (max-width: 768px) {
            .luxury-hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .luxury-hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .premium-service-grid {
                grid-template-columns: 1fr;
            }
            
            .consultation-banner h2 {
                font-size: 2.5rem;
            }
            
            .whatsapp-float {
                left: 20px;
                bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .luxury-hero h1 {
                font-size: 2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .stat-item {
                text-align: left;
            }
            
            .service-content {
                padding: 25px;
            }
            
            .consultation-banner h2 {
                font-size: 2rem;
            }
            
            .consultation-banner p {
                font-size: 1.1rem;
            }
        }
        /* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .luxury-hero {
    min-height: 58vh;
    height: 58vh;
    min-height: 480px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   MOBILE – readable + still ~60vh feel
   (mobile browsers shrink vh due to address bar, so use svh)
========================================================= */
@media (max-width: 768px) {
  .luxury-hero {
    min-height: 62svh;
    height: 62svh;
    min-height: 560px;

    padding: 86px 0 52px;
    align-items: flex-end;
  }
 .logo-image {
            max-height: 150px;
            width: auto;
            transition: var(--transition);
        }
        
        .header.sticky .logo-image {
            max-height: 150px;
        }
        
        .footer-logo-image {
            max-height: 150px;
            width: auto;
            margin-bottom: 20px;
        }
  .luxury-hero .hero-overlay {
    background:
      radial-gradient(circle at 20% 15%, rgba(0, 107, 214, 0.22), transparent 55%),
      radial-gradient(circle at 80% 0%, rgba(251, 191, 36, 0.14), transparent 55%),
      linear-gradient(to bottom, rgba(0,0,0,0.82) 10%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.35) 100%);
  }

  .luxury-hero-content {
    max-width: 100%;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 18px;

    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }

  .hero-badge {
    font-size: 0.74rem;
    letter-spacing: 2.2px;
    padding: 8px 12px;
  }

  .luxury-hero h1 {
    font-size: clamp(2.0rem, 8.6vw, 2.9rem);
    line-height: 1.05;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 650;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .hero-stats .stat-item:last-child {
    grid-column: 1 / -1;
  }

  .stat-number { font-size: 1.32rem; }
  .stat-label  { font-size: 0.9rem; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .luxury-hero {
    min-height: 64svh;
    height: 64svh;
    min-height: 540px;
  }

  .luxury-hero-content {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .hero-stats { padding: 12px; }
}

/* =========================================
   HERO BACKGROUND IMAGE (Premium)
========================================= */
.hero-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* 🔁 Replace with your actual image path */
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("images/water-flow.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;

  /* Subtle luxury motion (optional but 🔥) */
  animation: heroZoom 24s ease-in-out infinite alternate;
}

/* Gentle cinematic zoom */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@media (max-width: 768px) {
  #mainNav { display: none; }
  #mainNav.active { display: block; }

  /* or if you're using a slide-in menu, keep your slide CSS but still toggle .active */
}
.premium-service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .premium-service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .premium-service-card {
    border-radius: 16px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 22px;
  }
}
html, body {
  overflow-x: hidden;
}

.premium-service-card,
.service-content,
.service-image img {
  max-width: 100%;
}
.premium-services,
.service-category {
  overflow: visible;
}
.luxury-hero{
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("image - 2026-01-04T072020.069.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay should be ONLY overlay effects (no image) */
.luxury-hero .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 25%, rgba(0, 107, 214, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.20), transparent 52%);
}

.hero-background-video{
  display: none; /* only if you’re not using video */
}

.luxury-hero .container{ position: relative; z-index: 2; }
