:root {
      --bg-dark: #0f0f10;
      --bg-light: #f5f5f5;
      --accent: #e2c27b;
      --text-main: #111111;
      --text-muted: #777777;
      --max-width: 1100px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      /* ⬅️ NEW */
    }


    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
      background: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
      /* ⬅️ NEW */
    }



    /* TOP NAV */

    .top-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.7);
      border-bottom: 1px solid #e0e0e0;
      backdrop-filter: blur(6px);

      /* NEW: smooth slide when hiding */
      transition: transform 0.25s ease;
    }

    /* NEW: hidden state – slide nav up out of view */
    .top-nav.hidden {
      transform: translateY(-120%);
    }


    .top-nav.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
    }


    .top-nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;

      gap: 0.25rem;
      /* ↓ less vertical space between lines */
      padding: 0.6rem 1rem;
      /* ↓ smaller top/bottom padding */
    }


    .brand {
      font-weight: 700;
      letter-spacing: 0.08em;
      font-size: 0.95rem;
      text-transform: uppercase;
    }


    nav a {
      text-decoration: none;
      color: var(--text-main);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      padding: 0.2rem 0.3rem;
      /* ← ADD THIS: bigger clickable background */
      /* ← ensures padding works */
      margin-left: 0.3rem;
      /* smaller margin between items */
      border-radius: 2px;
      /* optional, looks cleaner */
    }


    nav a:hover {
      background: rgba(0, 0, 0, 0.05);
      opacity: 1;
    }


    .btn-quote {
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid var(--text-main);
      background: var(--text-main);
      color: #fff;
      font-size: 0.85rem;
      margin-top: 0.3rem;
      /* ← THIS creates space above */
    }

    }


    .btn-quote:hover {
      opacity: 0.9;
    }

    /* GLOBAL SECTION STYLES */

    main {
      margin-top: 64px;
      /* space for fixed nav */
    }

    section {
      scroll-margin-top: 80px;
      /* offset for fixed nav */
      padding: 4rem 1rem;
    }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .section-title {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .section-heading {
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1.5rem;
    }

    .tagline {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    p {
      font-size: 0.98rem;
    }

    /* HERO / HOME */

    #home {
      padding: 0;
    }

    .hero {
      position: relative;
      min-height: 55vh;
      display: flex;
      align-items: center;
      color: #ffffff;
      overflow: hidden;
    }

    /* blurred background image */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
        url("image16.jpg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      filter: blur(4.5px);
      /* ← CHANGE BLUR STRENGTH HERE */
      transform: scale(1.05);
      /* prevents blur edges */
      z-index: 0;
    }

    /* keep text sharp */
    .hero>* {
      position: relative;
      z-index: 1;
    }


    .hero-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 12rem 2rem;
    }

    .hero-logo {
      max-width: 220px;
      margin-bottom: 1.5rem;
      display: block;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.8rem;
      margin-bottom: 0.8rem;
      opacity: 0.8;
    }

    .hero-title {
      font-size: 2.4rem;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
    }

    .hero-main-title {
      font-size: 1.6rem;
    }


    .hero-subtitle {
      max-width: 440px;
      font-size: 1rem;
      opacity: 0.92;
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      align-items: center;
    }

    .hero-main-btn {
      display: inline-block;
      padding: 0.7rem 1.5rem;
      border-radius: 999px;
      border: none;
      background: #ffffff;
      color: #000000;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.8rem;
    }

    .hero-main-btn:hover {
      opacity: 0.9;
    }

    .hero-secondary {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      opacity: 0.8;
    }

    /* LAYOUT HELPERS */

    .grid-2 {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    .grid-2.reverse {
      grid-template-columns: 1fr 1.3fr;
    }

    .pill-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .pill-list li {
      border-radius: 999px;
      border: 1px solid #ddd;
      padding: 0.35rem 0.8rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.13em;
    }

    /* IMAGE STYLES */

    .img-frame {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 15, 16, 0.35);
      background: #000;
    }

    .img-frame img {
      display: block;
      width: 100%;
      height: auto;
    }

    .img-stack {
      position: relative;
    }

    .img-stack .img-frame:nth-child(2) {
      position: absolute;
      right: -10%;
      bottom: -12%;
      width: 55%;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    }

    /* SERVICES */

    .services-list {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: 1fr;
      /* <-- ONE COLUMN ONLY */
      gap: 1.2rem;
    }


    #clients {
      background: #fafafa;
      padding: 3rem 1rem;
    }

    .clients-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 2rem;
      align-items: center;
      justify-items: center;
      margin-top: 1.5rem;
    }

    .clients-logos img {
      max-width: 120px;
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }

    .clients-logos img:hover {
      opacity: 1;
    }



    .service-card {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      padding: 1rem 0.7rem;
      border-radius: 16px;
      border: 1.4px solid #e3e3e3;
      background: #ffffff;
    }

    .service-icon {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      margin-top: 0px;
    }

    /* 		                	ICONLAR																	 */
    .service-icon img {
      width: 130%;
      height: 130%;
      object-fit: contain;
    }



    .service-card h3 {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.4rem;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* WHY CHOOSE US */

    #why {
      background: var(--bg-light);
    }

    .overlay-card {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 15, 16, 0.35);
    }

    .overlay-card img {
      width: 100%;
      display: block;
      height: auto;
    }

    .overlay-card-content {
      position: absolute;
      inset: 0;
      padding: 1.8rem 1.8rem 2.2rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      color: #ffffff;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.25));
    }

    .overlay-card-content h2 {
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 1rem;
    }

    .overlay-card-content p {
      font-size: 0.9rem;
      margin-bottom: 0.6rem;
    }

    .overlay-card-content .bullet-title {
      text-transform: uppercase;
      letter-spacing: 0.13em;
      font-size: 0.8rem;
      margin-top: 0.5rem;
      margin-bottom: 0.2rem;
      font-weight: 600;
    }

    /* CUSTOM LAYOUTS FOR WHY & WHO */

    .grid-why,
    .grid-who {
      display: grid;
      grid-template-columns: 0.9fr 1.5fr;
      /* left smaller, right bigger */
      gap: 2.5rem;
      align-items: center;
    }

    /* Bigger text inside the overlay cards for these sections */
    .grid-why .overlay-card-content h2,
    .grid-who .overlay-card-content h2 {
      font-size: 2rem;
      letter-spacing: 0.14em;
    }

    .grid-why .overlay-card-content p,
    .grid-who .overlay-card-content p {
      font-size: 1rem;
      line-height: 1.55;
    }

    .grid-why .overlay-card-content .bullet-title {
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      margin-top: 0.9rem;
    }



    /* PROJECTS */

    /* Default (desktop/tablet) */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
      gap: 1.7rem;
      margin-top: 1.5rem;
    }


    .project-card {
      border-radius: 18px;
      border: 1px solid #e0e0e0;
      overflow: hidden;
      background: #ffffff;
    }

    .project-card img {
      width: 100%;
      display: block;
    }

    .project-body {
      padding: 0.9rem 1rem 1.1rem;
    }

    .project-tag {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .project-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .project-body p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* ========== BEFORE & AFTER SECTION ========== */

    #before-after {
      background: #fafafa;
      padding: 4rem 1rem;
    }

    .ba-tabs {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      justify-content: center;
    }

    .ba-tab {
      padding: 0.5rem 1.2rem;
      border-radius: 999px;
      border: 1.5px solid #d0d0d0;
      background: #ffffff;
      color: var(--text-main);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: inherit;
      font-weight: 500;
    }

    .ba-tab:hover {
      border-color: #999;
      background: #f0f0f0;
    }

    .ba-tab.active {
      background: var(--text-main);
      color: #ffffff;
      border-color: var(--text-main);
    }

    .ba-slider-wrapper {
      max-width: 580px;
      margin: 0 auto;
    }

    .ba-slider-wrapper-video {
      max-width: 420px;
      margin: 0 auto;
    }

    .ba-slider {
      position: relative;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0,0,0,0.18);
      cursor: col-resize;
      user-select: none;
      -webkit-user-select: none;
      touch-action: none;
      aspect-ratio: 3/4;
      background: #111;
    }

    .ba-slider.ba-slider-video {
      aspect-ratio: 9/16;
    }

    .ba-slider .ba-img,
    .ba-slider video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .ba-slider .ba-before {
      z-index: 1;
      clip-path: inset(0 50% 0 0);
    }

    .ba-slider .ba-after {
      z-index: 0;
    }

    .ba-slider .ba-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: #ffffff;
      z-index: 3;
      transform: translateX(-50%);
      box-shadow: 0 0 8px rgba(0,0,0,0.35);
    }

    .ba-slider .ba-handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-handle svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: #333;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .ba-label {
      position: absolute;
      bottom: 14px;
      z-index: 5;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 600;
      color: #fff;
      background: rgba(0,0,0,0.55);
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      pointer-events: none;
      backdrop-filter: blur(4px);
    }

    .ba-label-before { left: 14px; }
    .ba-label-after  { right: 14px; }

    .ba-slide-item {
      display: none;
    }
    .ba-slide-item.active {
      display: block;
    }

    .ba-hint {
      text-align: center;
      margin-top: 0.8rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* ========== GOOGLE REVIEWS SECTION ========== */

    .hero-trust-container {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.8rem;
    }

    /* Hero Rating Badge */
    .hero-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 99px;
      padding: 0.5rem 1.2rem;
      backdrop-filter: blur(4px);
      transition: all 0.25s ease;
      width: fit-content;
      flex-shrink: 0;
    }
    
    .hero-rating-badge:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-review-ticker {
      position: relative;
      height: 38px;
      min-width: 280px;
      max-width: 460px;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
    }

    .ticker-slide {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.85rem;
      font-style: italic;
      line-height: 1.35;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
      pointer-events: none;
    }

    .ticker-slide.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    @media (max-width: 800px) {
      .hero-trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-top: 1.2rem;
      }
      .hero-review-ticker {
        height: auto;
        min-height: 38px;
        max-width: 100%;
      }
      .ticker-slide {
        position: relative;
        display: none;
        transform: none;
        opacity: 0;
        transition: opacity 0.4s ease;
      }
      .ticker-slide.active {
        display: flex;
        opacity: 1;
      }
    }
    
    .rating-g-logo {
      width: 20px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .rating-map-pin {
      width: 100%;
      height: 100%;
      display: block;
    }
    
    .rating-content {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    
    .rating-stars {
      color: #ffb900;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
    }
    
    .rating-text {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.02em;
    }
    
    .rating-badge-link {
      font-size: 0.78rem;
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
      margin-left: 0.3rem;
    }
    
    .rating-badge-link:hover {
      border-color: var(--accent);
    }

    /* Testimonials Section */
    #reviews {
      background: #f7f7f8;
      padding: 2.5rem 1rem 2rem;
    }
    
    .reviews-carousel-container {
      max-width: 650px;
      margin: 1.2rem auto 0.8rem;
      position: relative;
      overflow: hidden;
      min-height: 200px;
    }
    
    .reviews-carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
    }
    
    .review-slide {
      width: 100%;
      opacity: 0;
      visibility: hidden;
      position: absolute;
      top: 0;
      left: 0;
      transition: opacity 0.5s ease, visibility 0.5s ease;
      z-index: 1;
    }
    
    .review-slide.active {
      opacity: 1;
      visibility: visible;
      position: relative;
      z-index: 2;
    }
    
    .review-card {
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid #e2e2e4;
      padding: 1.8rem 1.8rem 1.6rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      position: relative;
    }
    
    .review-user {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      margin-bottom: 1rem;
      position: relative;
      padding-right: 135px;
    }
    
    .user-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
    }
    
    .user-info h3 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      margin: 0;
    }
    
    .review-date {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    
    .review-header-badge {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 5;
    }
    
    .review-card-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      text-decoration: none;
      font-family: inherit;
      border: 1px solid var(--text-main);
      background: var(--text-main);
      color: #ffffff;
      transition: all 0.2s ease;
      cursor: pointer;
      white-space: nowrap;
    }
    
    .review-card-btn:hover {
      background: #333335;
      border-color: #333335;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .google-badge-top {
      width: 15px;
      height: 21.5px;
      opacity: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .g-logo-icon {
      width: 100%;
      height: 100%;
      display: block;
    }
    
    .review-rating {
      color: #ffb900;
      font-size: 1rem;
      letter-spacing: 0.08em;
      margin-bottom: 0.8rem;
    }
    
    .review-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #444446;
      font-style: italic;
    }
    
    /* Carousel arrows */
    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #dcdce0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.25s ease;
    }
    
    .carousel-control:hover {
      background: #f4f4f7;
      border-color: #c4c4c8;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-control.prev {
      left: -20px;
    }
    
    .carousel-control.next {
      right: -20px;
    }
    
    .carousel-control svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #444446;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    
    /* Carousel indicators (dots) */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.8rem;
    }
    
    .carousel-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d4d4d8;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    
    .carousel-dots .dot.active {
      background: var(--text-main);
      transform: scale(1.2);
    }
    
    .reviews-footer {
      display: none;
    }
    
    @media (max-width: 800px) {
      .carousel-control.prev {
        left: 2px;
      }
      .carousel-control.next {
        right: 2px;
      }
      .review-card {
        padding: 1.2rem 1.2rem 1rem;
      }
      .reviews-carousel-container {
        margin: 1.2rem auto 0.8rem;
        min-height: 240px;
      }
      .review-user {
        padding-right: 120px;
      }
      .review-header-badge {
        gap: 0.4rem;
      }
      .review-card-btn {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
      }
    }
    
    @media (max-width: 480px) {
      .review-user {
        padding-right: 110px;
      }
      .review-card-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.62rem;
      }
    }

    /* WATER SECTION */

    #water {
      background: var(--bg-dark);
      color: #ffffff;
    }

    #water .section-title,
    #water .tagline {
      color: rgba(255, 255, 255, 0.65);
    }

    .water-benefits {
      margin-top: 0.5rem;
    }

    .water-benefits li {
      margin-bottom: 0.6rem;
      font-size: 0.9rem;
    }

    .water-gallery {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 1rem;
    }

    .water-gallery .img-frame {
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }

    /* SEASONAL */

    #seasonal {
      background: #f0f0f0;
    }

    #seasonal .section-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    /* MEDIA */

    .media-box {
      border-radius: 18px;
      border: 1px dashed #cccccc;
      padding: 1.5rem;
      text-align: center;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* CONTACT */

    #contact {
      background: var(--bg-dark);
      color: #ffffff;
    }

    #contact .section-title,
    #contact .tagline {
      color: rgba(255, 255, 255, 0.6);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: flex-start;
    }

    form {
      display: grid;
      gap: 0.8rem;
    }

    label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.2rem;
      display: block;
    }

    input,
    textarea,
    select {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #444;
      padding: 0.6rem 0.7rem;
      background: #111111;
      color: #ffffff;
      font-size: 0.9rem;
    }


    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .submit-btn {
      margin-top: 0.4rem;
      border-radius: 999px;
      border: none;
      padding: 0.7rem 1.5rem;
      background: #ffffff;
      color: #000000;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.8rem;
      cursor: pointer;
    }

    .submit-btn:hover {
      opacity: 0.92;
    }

    .contact-info p {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .social-link {
      color: #ffffff;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    .footer-note {
      margin-top: 2rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.5);
    }

    /* RESPONSIVE */

    @media (max-width: 800px) {




      .grid-2,
      .grid-2.reverse,
      .grid-why,
      .grid-who,
      #seasonal .section-inner,
      .water-gallery,
      .contact-layout {
        grid-template-columns: 1fr;
      }



      /* FEATURED PROJECTS – make it a horizontal slider on mobile */
      .projects-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .project-card {
        flex: 0 0 50%;
        /* each card takes ~80% of the viewport width */
        min-width: 50%;
        scroll-snap-align: start;
      }

      /* MOBILE: Before & After */
      .ba-slider-wrapper {
        max-width: 100%;
      }

      .ba-tabs {
        gap: 0.4rem;
      }

      .ba-tab {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
      }

      .ba-slider {
        border-radius: 12px;
      }

      .ba-handle {
        width: 34px;
        height: 34px;
      }

      .ba-label {
        font-size: 0.58rem;
        padding: 0.25rem 0.55rem;
        bottom: 10px;
      }

      .ba-label-before { left: 10px; }
      .ba-label-after  { right: 10px; }


      .img-stack .img-frame:nth-child(2) {
        position: static;
        width: 100%;
        margin-top: 1rem;
      }

      .top-nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      nav {
        display: flex;
        flex-wrap: wrap;
      }

      nav a {
        margin-left: 0;
        margin-right: 0.8rem;
        margin-bottom: 0.35rem;
      }

      .hero-title {
        font-size: 2rem;
      }

      #services {
        background-image:
          linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1)),
          url("image5.jpg");
        /* REMODEL YOUR SPACE image */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      /* hide the right-side images column on mobile */
      .services-images {
        display: none;
      }

      /* give text block a little background/padding so it sits nicely */
      #services .section-inner {
        backdrop-filter: none;
        padding-top: 3rem;
        padding-bottom: 3rem;
        max-width: 100%;
        /* ⬅ IMPORTANT: don’t be wider than screen */
        overflow: hidden;
        /* ⬅ cut off any horizontal overflow */
      }


      /* MOBILE: Make text appear ON TOP of the picture */
      #seasonal .section-inner {
        position: relative;
        display: block;
        padding: 2rem 1rem;
      }

      /* Hide the original image card on mobile */
      #seasonal .img-frame {
        display: none;
      }

      /* Add the background image behind the entire section */
      #seasonal .section-inner {
        background-image: url("image4.jpg");
        /* <-- UPDATE path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        border-radius: 20px;
        overflow: hidden;
      }

      /* Make text readable on top of the image */
      #seasonal .section-inner * {
        color: white !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
      }

      /* Add a dark overlay so text is easier to read */
      #seasonal .section-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 0;
      }

      /* Bring text above the overlay */
      #seasonal .section-inner>* {
        position: relative;
        z-index: 1;
      }


      /* MOBILE: Add soft background highlight behind the text */
      #seasonal .text-wrapper {
        background: rgba(50, 50, 50, 0.90);
        /* translucent white */
        padding: 1rem 1.2rem;
        border-radius: 12px;
        display: inline-block;
      }

      /* MOBILE — Move left image above the text panel in the WHY section */
      #why .grid-why {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      /* Make the left image smaller */
      #why .grid-why>div:first-child .img-frame {
        max-width: 250px;
        /* ← adjust size if you want */
        margin: 0 auto;
        /* center it */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        border-radius: 16px;
      }

      /* MOBILE: Hide the left image in the WHY section */
      #why .grid-why>div:first-child {
        display: none;
      }

      /* MOBILE: Hide the left image in the WHO WE ARE section */
      #who .grid-who>div:first-child {
        display: none;
      }

      /* MOBILE: hide the water gallery images as separate cards */
      #water .water-gallery {
        display: none;
      }

      /* MOBILE: use the two water images as background behind the text */
      #water {
        /* dark base so text is readable */
        background:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)),
          url("image7.jpg"),
          url("image10.jpg");
        background-repeat: no-repeat, no-repeat, no-repeat;

        /* sizes of the two photos */
        background-size: cover, 55%, 55%;

        /* positions: one a bit upper-right, one a bit lower-right */
        background-position:
          center center,
          /* gradient */
          right 10% top 25%,
          /* image7: faucet */
          right 5% bottom 5%;
        /* image10: glasses */
      }

      /* keep text above the background layers */
      #water .section-inner {
        position: relative;
        z-index: 1;
      }

      /* MOBILE: vertical stack for services */
      .services-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        overflow: visible !important;
      }

      .service-card {
        min-width: 100% !important;
        flex: none !important;
      }






      /* MOBILE: hide MEDIA section */
      #media {
        display: none;
      }

      /* MOBILE: hide SEASONAL section */
      #seasonal {
        display: none;
      }

      /* MOBILE: let WHY card grow with text, crop the background image instead */
      #why .overlay-card {
        background-image:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25)),
          url("image13.jpg");
        /* same image you use now */
        background-size: cover, cover;
        background-position: center, center;
      }

      /* hide the <img> so the background handles the photo */
      #why .overlay-card>img {
        display: none;
      }

      /* make the text block normal flow (not absolutely positioned) */
      #why .overlay-card-content {
        position: static;
        /* instead of absolute/inset:0 */
        inset: auto;
        padding: 1.8rem 1.8rem 2.2rem;
        /* keep same padding */
        background: none;
        /* gradient is now on the card itself */
      }

      /* MOBILE: let WHO card grow with text and crop the background image */
      #who .overlay-card {
        background-image:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25)),
          url("image15.jpg");
        /* same image used in the card */
        background-size: cover, cover;
        background-position: center, center;
      }

      /* hide the <img> inside the card so background controls the image */
      #who .overlay-card>img {
        display: none;
      }

      /* ensure text sits normally inside and card expands with content */
      #who .overlay-card-content {
        position: static;
        /* remove absolute/inset */
        inset: auto;
        padding: 1.8rem 1.8rem 2.2rem;
        /* same padding as desktop */
        background: none;
        /* gradient now in parent */
      }


      .hero-main-title {
        font-size: 1.1rem;
      }








      /*--------------------------------------------------------------------------------------------------------*/


    }

    /* FLOATING CALL BUTTON (Mobile only) */
    .floating-call-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background-color: var(--accent, #e2c27b);
      color: #0f0f10;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
      z-index: 999;
      transition: transform 0.2s ease, background-color 0.2s ease;
      cursor: pointer;
      text-decoration: none;
    }

    .floating-call-btn:hover {
      transform: scale(1.08);
      background-color: #f0d599;
    }

    .floating-call-btn svg {
      width: 24px;
      height: 24px;
    }

    /* Hide on Desktop (matching standard web practices) */
    @media (min-width: 801px) {
      .floating-call-btn {
        display: none;
      }
    }