/* =====================================================
   GLOBAL STYLES
   Fonts, resets, variables, shared utilities
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@600;800&display=swap');

:root{
  --page-max: 1200px;
  --page-pad: 20px;   /* mobile gutters */
  --section-gap: 60px;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body{
  background-color: #F5F5F5;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* =====================================================
   HEADER & NAVIGATION
   Mobile-first navigation + hamburger menu
===================================================== */

/* Top banner */

.top-banner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  padding: 10px 20px;
  gap: 10px;
  background: #222222;
  color: white;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
}

.banner-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-right{
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 15px;
}

.top-banner .banner-btn{
  background: linear-gradient(135deg, #FF9800, #FFC107);
  padding: 10px 18px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s ease;
}

.top-banner .banner-btn:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-icons{
  display: flex;
  gap: 0px;
}

.social-icon{
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.social-icon:hover img{
  transform: scale(1.2);
  filter: brightness(1.2) sepia(0.3) saturate(1.5);
}

/* Header container */

header{
  background-color: #222222;
  color: white;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: height 0.3s ease, padding 0.3s ease;
}

.header-container{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo{
  max-width: 150px;
  height: auto;
}

/* Navigation links */

.nav-links{
  display: flex;
  gap: 20px;
}

.nav-links a{
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
  color: white;
  background: none;
}

.nav-links a:hover,
.nav-links a.active{
  background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile menu toggle */

.menu-toggle{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  display: block;
}

/* MOBILE-ONLY NAV BEHAVIOR */

@media (max-width: 768px){
  header{
    padding: 15px 20px;
    width: 100%;
    overflow: visible;
    display: block;
    text-align: center;
  }

  header.menu-open{
    padding-bottom: 215px;
  }

  .header-container{
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center;
    position: relative;
  }

  .logo{
    max-width: 150px;
    margin: 0 auto;
    display: block;
  }

  .menu-toggle{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    z-index: 20;
  }

  .nav-links{
    position: absolute;
    top: 130px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active{
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a{
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    -webkit-text-fill-color: white;
  }
}

/* =======================
   FLASH MESSAGES
======================= */
.flash-message{
  background-color: #FF9800;
  color: white;
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
}

.flash-message.success{
  background-color: #4CAF50;
}

/* =====================================================
   HOME PAGE
===================================================== */

/* Welcome section */

.welcome-section{
  background: none;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-content{
  max-width: 900px;
}

.welcome-section h1{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #222;
  margin-bottom: 20px;
}

.welcome-section p{
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.surfboard-img{
  height: 3.5rem;
  vertical-align: middle;
  transform: translateY(-0.7rem);
}

/* Buttons */
.cta-btn,
.see-more-btn{
  display: inline-block;
  margin: 30px auto 0;
  padding: 15px 25px;
  outline: none;
  text-decoration: none;
  background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.cta-btn:hover,
.see-more-btn:hover{
  background: linear-gradient(135deg, #E68900 0%, #FFB300 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.cta-btn:active,
.see-more-btn:active{
  transform: scale(0.97);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Hero image */

.hero-image img{
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Reviews carousel */

.reviews-carousel-section{
  padding: 40px 20px;
  text-align: center;
}

.reviews-carousel-section h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.review-card{
  background: white;
  padding: 20px 40px; /* FIXED: removed the "40 px" bug */
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-text{
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  overflow: auto;
}

.reviewer-name{
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
  margin-top: auto;
}

.review-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

.swiper-button-next,
.swiper-button-prev{
  color: #ccc;
  opacity: 1;
  transition: color 0.2s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after{
  font-size: 24px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
  color: #999;
}

/* Give arrows space */
.reviews-swiper{
  padding: 0 50px;
}

/* REVIEWS CAROUSEL – MOBILE OVERRIDE */

/* Force Swiper theme + navigation to NOT be blue */
.reviews-carousel-section{
  --swiper-theme-color: #bdbdbd;       /* affects pagination + some UI */
  --swiper-navigation-color: #bdbdbd;  /* affects arrows */
}

/* Arrow buttons */
.reviews-carousel-section .swiper-button-next,
.reviews-carousel-section .swiper-button-prev{
  color: #bdbdbd !important;          /* hard override */
  opacity: 1;
}

/* Shrink arrow icons */
.reviews-carousel-section .swiper-button-next::after,
.reviews-carousel-section .swiper-button-prev::after{
  font-size: 18px !important;         /* smaller than 24px */
  font-weight: 700;
}

/* Make the carousel behave like 1 card at a time on mobile */
.reviews-carousel-section .reviews-swiper{
  overflow: hidden;                    /* prevents partial slides */
  padding: 0 40px;                     /* room for arrows */
}

/* Force each slide to take full width */
.reviews-carousel-section .swiper-slide{
  width: 100% !important;
}

/* Keep review cards consistent */
.reviews-carousel-section .review-card{
  height: 200px;                       /* keeps all equal height */
  width: 100%;
}

/* =====================================================
   SERVICES & PACKAGES
===================================================== */

/* How It Works */

.how-it-works-section{
  padding: 70px 20px;
  text-align: center;
}

.how-it-works-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works-section h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: #333;
}

.how-it-works-lead{
  max-width: 750px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.how-it-works-steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
}

.how-step{
  background: white;
  border-radius: 15px;
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.how-step h3{
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #333;
}

.how-step p{
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.how-it-works-cta{
  margin-top: 28px;
}

/* Popular packages */

.packages-popular-section{
  padding: 40px 20px;
  text-align: center;
}

.packages-popular-section h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.packages-popular-description{
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #555;
}

.packages-popular-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
  justify-items: center;
}

.packages-popular-card{
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 380px;
  height: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.packages-popular-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 8px;
}

.packages-popular-card h3{
  font-size: 1.1rem;
  margin-top: 0;
  text-align: center;
}

.packages-popular-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* Services list */

.services{
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px 20px;
  text-align: center;
}

.services h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item{
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.service-item.visible{
  opacity: 1;
  transform: translateY(0);
}

.service-item h3{
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #333;
}

.service-item p{
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.service-item img,
.service-img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
}

/* Accordion */
.service-accordion{ overflow: hidden; }

.service-summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-summary::-webkit-details-marker{ display: none; }

.service-toggle{
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 0.95rem;
  color: white;
  background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-body{
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 5px;
}

.service-accordion .service-body{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.service-accordion[open] .service-body{
  max-height: 1000px;
  opacity: 1;
}

.service-accordion[open] .service-toggle::after{
  content: " (Hide)";
}

/* =======================
   POPULAR FLAKES + BASECOATS (GLOBAL)
======================= */
.flakes-popular-section,
.basecoat-popular-section{
  padding: 40px 20px;
  text-align: center;
}

.flakes-popular-section h2,
.basecoat-popular-section h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.flakes-popular-description,
.basecoat-popular-description{
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #555;
}

.flakes-popular-grid,
.basecoat-popular-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.flakes-popular-card,
.basecoat-popular-card{
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flakes-popular-card img,
.basecoat-popular-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  margin-bottom: 8px;
}

.flakes-popular-card h3,
.basecoat-popular-card h3{
  font-size: 1.1rem;
  margin-top: 0;
  text-align: center;
}

.flakes-popular-card:hover,
.basecoat-popular-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* =====================================================
   GALLERY PAGES
   Our Projects, Flakes, Basecoats
===================================================== */

/* ---------- OUR PROJECTS ---------- */

section.gallery{
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;

  display: grid;
  grid-template-columns: 1fr;   /* mobile: single column */
  gap: 16px;

  justify-items: stretch;       /* IMPORTANT: cards fill the row */
  align-items: start;
}

/* keep the heading spanning full width */
section.gallery h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

/* cards should be full width, but not ridiculously wide */
section.gallery .project-card{
  width: 100%;
  max-width: 520px;             /* nice mobile max */
  margin: 0 auto;               /* center the max-width card */
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.gallery .project-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* make images uniform */
section.gallery .project-card img{
  width: 100%;
  height: 360px;                /* uniform mobile height */
  object-fit: cover;
  display: block;
  border-radius: 0;             /* card handles rounding */
}

/* optional: if you have titles under images */
section.gallery .project-card h3{
  padding: 12px 14px;
  margin: 0;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
}

/* ---------- FLAKE GALLERY ---------- */

.flake-gallery-section{
  padding: 40px 20px;
  text-align: center;
}

.flake-gallery-section h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.flake-gallery-description{
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #555;
}

.flake-gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.flake-gallery-card{
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flake-gallery-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
  display: block;
}

.flake-gallery-card h3{
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.flake-gallery-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* ---------- BASECOAT GALLERY ---------- */

.basecoat-gallery-section{
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
}

.basecoat-gallery-section h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.basecoat-gallery-description{
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.basecoat-gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.basecoat-gallery-card{
  height: 200px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.basecoat-gallery-card:hover{
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
}

.basecoat-gallery-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

.basecoat-gallery-card h3{
  font-size: 1.1rem;
  margin-top: 0;
  color: #333;
}

/* FLAKE MODAL + ZOOM MODAL */
.flake-modal{
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
  padding-top: 60px;
}

.flake-modal-content{
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.flake-close{
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.flake-close:hover{
  color: #FF9800;
  transform: scale(1.2);
}

#zoom-modal{
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#zoom-close{
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

#zoom-image{
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#zoom-modal.show #zoom-image{
  transform: scale(1);
  opacity: 1;
}

.flake-card img{
  cursor: zoom-in;
}

/* =====================================================
   CONTACT PAGE
===================================================== */

/* Contact form */

.contact{
  padding: 40px 20px;
}

.contact form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea{
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 15px;
}

.contact button{
  padding: 15px;
  border: none;
  background-color: #1A73E8;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
}

.contact button:hover{
  background-color: #155ab6;
}

/* Hero contact section */

.hero-contact{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 50px 20px;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/hero-floor.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.hero-contact form{
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(0,0,0,0.4);
  padding: 40px;
  border-radius: 15px;
}

.hero-contact form input,
.hero-contact form textarea{
  border-radius: 15px;
  padding: 18px;
  border: none;
  font-size: 1rem;
}

.hero-contact form button{
  background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 18px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

/* =====================================================
   SHARED COMPONENTS
===================================================== */

/* Section dividers */

.section-divider{
  width: 80%;
  height: 2px;
  background-color: #ddd;
  margin: var(--section-gap) auto;
  border-radius: 1px;
}

.section-divider::before{
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* FOOTER */

footer{
  background-color: #222222;
  color: white;
  text-align: center;
  padding: 40px 20px 20px 20px;
}

.footer-socials{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-socials a img{
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.footer-socials a:hover img{
  transform: scale(1.1);
}

.footer-divider{
  height: 1px;
  background-color: #444;
  margin: 15px auto;
  width: 80%;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-contact a{
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover{
  color: #FF9800;
}

footer p{
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
}

/* Scroll animations */

.animate-on-scroll{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   DESKTOP SECTION (ONLY DESKTOP CHANGES HERE)
   From now on, we edit inside this block.
========================================= */
/* =====================================================
   DESKTOP OVERRIDES (900px+)
   Desktop-only layout & spacing changes
===================================================== */
@media (min-width: 900px){

  /* ---- Global spacing / layout ---- */
  :root{
    --page-pad: 40px;
    --section-gap: 70px;
  }

  /* Keep main sections centered on desktop */
  .welcome-section,
  .reviews-carousel-section,
  .how-it-works-section,
  .services,
  .packages-popular-section,
  .flakes-popular-section,
  .basecoat-popular-section,
  section.gallery{
    max-width: var(--page-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  /* ---- Header desktop layout ---- */
  header{
    padding: 14px 0;
  }

  .header-container{
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    justify-content: space-between;
  }

  .menu-toggle{
    display: none !important;
  }

  .nav-links{
    display: flex !important;
    flex-direction: row;
    gap: 28px;
    position: static;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a{
    font-size: 1.15rem;
  }

  /* ---- Home hero image ---- */
  .hero-image{
    width: 100vw;
    max-width: none;
    height: 65vh;                 /* 🔽 controls hero height */
    max-height: 520px;            /* prevents it from getting too tall */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;             /* crop excess image */
  }

  .hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;            /* keeps it visually clean */
    object-position: center bottom;      /* adjust if needed */
    display: block;
  }
}

  .hero-image img{
    width: 100%;
    height: auto;
    display: block;
  }

  /* ---- Services: 3-column desktop ---- */
  .services-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* ---- Our Projects gallery: 3-column + taller images ---- */
  section.gallery{
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    justify-items: stretch;
  }

  section.gallery .project-card{
    max-width: none; /* fill the grid cell */
  }

  section.gallery .project-card img{
    height: 300px; /* taller desktop images */
    object-fit: cover;
    object-position: center top;
  }

  /* ---- Reviews: give arrows room ---- */
  .reviews-carousel-section .swiper.reviews-swiper{
    padding: 0 70px;
  }

/* Ultra-wide screens: bigger gutters */
@media (min-width: 1300px){
  :root{ --page-pad: 60px; }
}