/* Begalle Bros — style.css (polished, responsive) */

/* Global anti-aliasing (makes text look sharper & heavier) */

body{
  overflow-x: hidden;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Body typography */
body {
  font-family: var(--ff-body);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}


/* Heading system — SAME as your window washing page */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 900;     /* SUPER important */
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: white;
  margin-bottom: 12px;
}

/* Matching commercial-grade heading sizes */
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.45rem; }
p  { font-size: 1.1rem; color: var(--text-soft); }

/* Buttons (same weight as WW page) */
button, .btn {
  font-weight: 800;
  letter-spacing: 0.2px;
}
/* ---------- VARIABLES ---------- */
:root{
  /* Brand Colors */
  --primary: #0a3d62;
  --secondary: #185a86;
  --accent: #6ec8ff;

  /* Neutrals */
  --white: #ffffff;
  --dark: #071423;
  --muted: #e6eef6;

  /* Glass + Glow */
  --glass: rgba(10,13,20,0.45);
  --glass-border: rgba(255,255,255,0.08);
  --glass-strong: rgba(255,255,255,0.06);
  --accent-soft: rgba(110,200,255,0.18);
  --focus: 3px rgba(110,200,255,0.18);

  /* Text Colors */
  --text-strong: rgba(255,255,255,0.88);
  --text-soft: rgba(255,255,255,0.72);
  --muted-strong: rgba(255,255,255,0.86);
  --muted-soft: rgba(255,255,255,0.72);

  /* Cards + Surfaces */
  --card: #f8fbff;
  --card-bg: rgba(255,255,255,0.03);

  /* Radius */
  --radius-lg: 16px;
  --radius-md: 10px;

  /* Typography */
  --ff-head: "Clash Display", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;

  /* Spacing */
  --section-padding-lg: 120px 0; /* choose the larger one for consistency */
  --section-padding-md: 88px 0;
}


/* ---------- RESET / UTIL ---------- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body{
    margin: 0;
    font-family: var(--ff-body);
    background: linear-gradient(180deg,#071423 0%, #0b2434 100%);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}
.container{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row{ display: flex; gap: 20px; flex-wrap: wrap; }
a{ text-decoration: none; color: inherit; }

/* ========================= NAVBAR ========================= */
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background: transparent;
    transition: 0.35s ease;
}
.navbar.scrolled{
    background: rgba(29,81,121,0.85);
    backdrop-filter: blur(6px);
    padding: 12px 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* LOGO + NAME */
.nav-left{
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-logo-img{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-company{
    font-family: Impact, sans-serif;
    font-size: 2.0rem;
    background: linear-gradient(90deg,#8edaff,#ffffff,#b8eaff);
    -webkit-background-clip: text;
    color: transparent;
}

/* DESKTOP MENU */
.nav-menu{
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-menu a{
    color: white;
    font-size: 1.12rem;
    text-decoration: none;
    position: relative;
}
.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background: var(--accent);
    transition:0.3s ease;
}
.nav-menu a:hover::after{
    width:100%;
}

/* MOBILE HAMBURGER */
.nav-hamburger{
    width:30px;
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}
.nav-hamburger span{
    height:3px;
    width:100%;
    background:white;
    border-radius:10px;
}

/* PHONE BUTTON */
.nav-phone{
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    font-weight: 600;
}

/* ========================= MOBILE ========================= */
@media(max-width:768px){

  .nav-menu{
    position: absolute;
    top: 74px;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: rgba(29,81,121,0.96);
    padding: 20px 0;
    text-align: center;
  }

  .nav-menu.show{
    display: flex;
  }

  .nav-hamburger{
    display: flex;
  }

  /* Hide desktop links + phone button on mobile */
  .nav-phone{
    display:none;
  }
}

/* ========================= HERO ========================= */
#hero{
    position:relative;
    min-height:100vh;           /* FULL SCREEN on all devices */
    display:flex;
    align-items:center;
    padding:0 6%;
    overflow:hidden;
}

/* Background slideshow */
.hero-slideshow{
    position:absolute;
    inset:0;
    z-index:1;
}
.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}
.slide.active{ opacity:1; }

/* Content */
.hero-content{
    position:relative;
    z-index:3;
    max-width:820px;
}

/* Title */
.hero-title{
    font-size:clamp(2.6rem, 5vw, 4.2rem);
    line-height:1.04;
    font-weight:900;
    color:white;
    text-shadow:0 18px 45px rgba(3,12,26,0.6);
}

/* Subtitle */
.hero-subtitle{
    font-size:1.2rem;
    color:rgba(255,255,255,0.88);
    margin-top:14px;
}

/* Buttons */
.hero-buttons .hero-btn{
    padding:14px 22px;
    border-radius:12px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(11,36,52,0.45);
    display:inline-block;
    margin-right:12px;
    transition:0.25s ease;
}
.hero-buttons .hero-btn.primary,
.hero-buttons .hero-btn.secondary{
    background:linear-gradient(120deg,var(--accent),var(--secondary));
    color:#fff;
}

/* Trust Badges */
.trust-badges{
    margin-top:22px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
.trust-badges .badge{
    padding:10px 14px;
    border-radius:999px;
    color:white;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.2);
}

/* MOBILE FIXES */
@media (max-width: 768px){

  #hero{
    min-height:100vh;
    padding: 140px 6% 60px;  /* push content down under nav */
    text-align:center;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-title{
    font-size:clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-subtitle{
    font-size:1.05rem;
    max-width: 92%;
    margin: 10px auto 0;
  }

  .hero-buttons{
    margin-top:18px;
  }

  .hero-buttons .hero-btn{
    display:block;
    margin:10px auto;
    width: 92%;
  }

  .trust-badges{
    justify-content:center;
    margin-top:20px;
  }
}


/* ========================= SECTIONS & CARDS ========================= */
.section{
  padding: 70px 0;
}
.container .section{ padding-left: 0; padding-right: 0; }

.service-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 28px; }
.service-card{
    background: linear-gradient(180deg,var(--card),#fff);
    color: var(--dark);
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(2,12,28,0.06);
    transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover{ transform: translateY(-10px); box-shadow: 0 18px 40px rgba(2,12,28,0.12); }

/* Before/after */
.before-after{ position: relative; width: 100%; max-width: 980px; margin: 40px auto; border-radius: 14px; overflow: hidden; }
.before-after img{ display: block; width: 100%; height: auto; }
.before-after .after{ position: absolute; left: 0; top: 0; height: 100%; width: 50%; overflow: hidden; }
.before-after .slider{
    position: absolute; top: 0; bottom: 0; width: 8px;
    background: linear-gradient(180deg,var(--accent),var(--secondary));
    left: 50%; transform: translateX(-50%); border-radius: 6px; cursor: ew-resize; z-index: 10;
}

/* Gallery */
.gallery-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.gallery-grid img{
    width: 100%; height: 220px; object-fit: cover; border-radius: 12px; cursor: pointer;
    box-shadow: 0 8px 30px rgba(2,12,28,0.14); transition: transform .28s;
}
.gallery-grid img:hover{ transform: translateY(-6px); }

/* Lightbox */
.lightbox{
    position: fixed; inset: 0; background: rgba(2,6,12,0.85);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999; opacity: 0; pointer-events: none; transition: opacity .22s;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox img{ max-width: 92%; max-height: 86%; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

/* Reveal helpers */
.reveal{ opacity: 0; transform: translateY(18px); transition: all .8s cubic-bezier(.2,.9,.26,1); }
.reveal.show{ opacity: 1; transform: none; }



/* ========================= SECTION BACKGROUNDS ========================= */
.section-bg{
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.section-bg::after{
    content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1;
}
.section-bg > *{ position: relative; z-index: 5; }

/* background holder classes (update image paths in HTML/project) */
.bg-mission{ background-image: url("images/business.webp"); }
.bg-process{ background-image: url("images/clear.jpg"); }
.bg-about{ background-image: url("images/"); }
.bg-testimonials{ background-image: url("images/home6.jpeg"); }
.bg-services{ background-image: url("images/home7.jpeg"); }
.bg-contact{ background-image: url("images/bg-contact.jpg"); }

/* ========================= MISSION SECTION ========================= */
.mission-section{
    position: relative;
    padding: 70px 0px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.3s ease forwards;
    animation-delay: 0.4s;
}
@keyframes fadeUp{ to{ opacity: 1; transform: none; } }

.mission-section h2{
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.mission-section p{
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
}
.mission-section .line{
    width: 120px; height: 4px; margin: 20px auto 40px; border-radius: 10px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
    box-shadow: 0 4px 20px rgba(11,36,52,0.45);
}

/* Split mission */
.mission-split{ padding: 40px 20px; position: relative; overflow: hidden; }
.mission-inner{
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
    max-width: 1300px; margin: 0 auto; position: relative; z-index: 5; padding: 0 40px;
}
.mission-text{ flex: 1.1; max-width: 620px; text-align: left; opacity: 0; animation: slideLeft 1.2s ease forwards; }
.mission-text h2{ font-family: var(--ff-head); font-size: clamp(2.4rem,5vw,4rem); margin-bottom: 16px; text-transform: uppercase; color: var(--white); text-shadow: 0 10px 30px rgba(0,0,0,0.6); }
.mission-text p{ font-size: clamp(1.1rem,2vw,1.35rem); line-height: 1.65; color: rgba(255,255,255,0.92); }
.mission-text .line{ width: 150px; height: 4px; margin: 18px 0 32px; background: linear-gradient(90deg,var(--accent),var(--secondary),var(--primary)); border-radius: 10px; box-shadow: 0 3px 20px rgba(11,36,52,0.4); }

.mission-photo{ flex: 1; position: relative; opacity: 0; animation: slideRight 1.2s ease forwards; }
.mission-photo img{ width: 100%; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); transition: transform .5s ease, box-shadow .5s ease, filter .45s ease; cursor: pointer; }
.mission-photo img:hover{ transform: scale(1.04) translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.55); filter: brightness(1.08); }
.mission-photo::after{
    content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 120%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    transform: skewX(-20deg); pointer-events: none;
}
.mission-photo:hover::after{ animation: shimmer 1.7s ease; }
@keyframes shimmer{ 0%{ left: -120%; } 100%{ left: 140%; } }

@keyframes slideLeft{ from{ opacity: 0; transform: translateX(-60px); } to{ opacity: 1; transform: translateX(0); } }
@keyframes slideRight{ from{ opacity: 0; transform: translateX(60px); } to{ opacity: 1; transform: translateX(0); } }
@keyframes textPulse{
    0%{ letter-spacing: 0px; text-shadow: none; }
    40%{ letter-spacing: 1.5px; text-shadow: 0 0 18px rgba(255,255,255,0.45); }
    100%{ letter-spacing: 0px; }
}
.mission-text h2.scrolled{ animation: textPulse 1.2s ease forwards; }

/* Floating particles */
.mission-particles{ position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.mission-particles span{
    position: absolute; width: 10px; height: 10px; background: rgba(255,255,255,0.35); border-radius: 70%;
    animation: floatUp 5s linear infinite; backdrop-filter: blur(12px);
}
@keyframes floatUp{
    0%{ transform: translateY(40px) scale(0.5); opacity: 0; }
    30%{ opacity: .8; }
    100%{ transform: translateY(-400px) scale(1.4); opacity: 0; }
}

@media (max-width: 768px){
  .mission-inner{
    padding: 0 10px;
    gap: 25px;
  }
  .mission-photo img{
    border-radius: 14px;
  }
}

/* ========================= SLOGAN BAR ========================= */
#slogan-bar{
    background: url("images/cam2.jpeg") center/cover no-repeat;
    border-radius: 18px;
    padding: 70px 50px;
    margin: 100px auto;
    width: 92%;
    max-width: 1250px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 28px rgba(80,180,255,0.25);
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    animation: sloganEntrance 1.2s cubic-bezier(0.16,0.8,0.24,1) forwards;
}
#slogan-bar::before{
    content: ""; position: absolute; inset: 0; background: rgba(0,20,40,0.55); backdrop-filter: blur(3px); border-radius: inherit; z-index: 1;
}
.slogan-inner{ position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.slogan-text h2{ font-size: 2.3rem; font-weight: 800; color: white; margin-bottom: 10px; letter-spacing: 1px; }
.slogan-text p{ font-size: 1.2rem; color: #e8f5ff; opacity: 0.95; max-width: 1000px; }
.social-icons a{ font-size: 34px; margin-left: 24px; color: white; display: inline-block; transition: 0.3s ease; }
.social-icons a:hover{ transform: translateY(-4px) scale(1.15); filter: drop-shadow(0 6px 14px rgba(120,200,255,0.55)); color: var(--accent); }
@keyframes sloganEntrance{ to{ opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 768px){
  #slogan-bar{
    padding: 50px 24px;
  }
  .slogan-inner{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .social-icons a{
    margin-left: 12px;
  }
}


/* ========================= PROCESS SECTION ========================= */
.process-section{
    position: relative;
    padding: 60px 70px;
    color: var(--white);
    text-align: left;
    background: var(--secondary);
}
.process-wrapper{ max-width: 880px; margin: 0 auto; padding: 0 100px; position: relative; z-index: 3; }
.process-title{
    text-align: center;
    font-family: var(--ff-head);
    font-size: 2.8rem;
    margin-bottom: 70px;
    letter-spacing: -1px;
    text-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

/* Vertical timeline */
.process-steps{
    position: relative;
    padding-left: 50px;
    border-left: 3px solid rgba(255,255,255,0.20);
}
.process-steps::before{
    content: ""; position: absolute; left: -3px; top: 10px; width: 3px; height: 0;
    background: var(--accent); box-shadow: 0 0 18px rgba(110,200,255,0.8);
    transition: height 1.5s cubic-bezier(.2,.9,.26,1);
}
.process-section.revealed .process-steps::before{ height: 100%; }

.process-step{
    margin-bottom: 50px;
    opacity: 1;
    transform: none;
    transition: all .8s cubic-bezier(.2,.9,.26,1);
    position: relative;
}
.process-step.revealed{ opacity: 1; transform: translateY(0); }
.process-step:hover{ transform: translateY(-6px); }
.process-step:hover h3{ color: var(--accent); }

.process-icon{
    position: absolute; left: -32px; top: 0; transform: translate(-50%, -10%);
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--glass); border: 2px solid rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform .4s ease, background .4s ease, box-shadow .4s ease;
}
.process-icon.active{
    background: var(--accent); color: var(--dark); box-shadow: 0 0 22px rgba(110,200,255,0.9); transform: translate(-50%,-10%) scale(1.22);
}

.process-step h3{ font-family: var(--ff-head); margin: 0 0 8px; font-size: 1.7rem; text-shadow: 0 4px 16px rgba(0,0,0,0.55); }
.process-step p{ max-width: 640px; line-height: 1.6; opacity: 0.85; }

@media (max-width: 768px){
  .process-section{
    padding: 50px 20px;
  }
  .process-wrapper{
    padding: 0;
  }
  .process-steps{
    padding-left: 28px;
  }
  .process-icon{
    left: -18px;
  }
}

/* ========================= ABOUT SECTION ========================= */
.about-section{ padding: 70px 0; position: relative; color: white; }
.about-section {
    padding: 90px 5%;
    background: var(--primary);  /* Dark blue */
    background-image: none !important;
    color: white;
}
.about-wrapper{
    max-width: 1200px; margin: auto; display: flex; align-items: center; gap: 0px; padding: 0 40px; position: relative; z-index: 5;
}
.about-text{
    flex: 1;
    opacity: 1;
    transform: none;
    transition: all 1s cubic-bezier(.2,.9,.26,1);
}
.about-section.revealed .about-text{ opacity: 1; transform: translateX(0); }
.about-text h2{ font-family: var(--ff-head); font-size: 2.8rem; margin-bottom: 22px; position: relative; }
.about-text h2::after{
    content: ""; width: 80px; height: 4px; background: var(--accent); position: absolute; left: 0; bottom: -12px; border-radius: 10px; box-shadow: 0 0 16px rgba(110,200,255,0.8);
}
.about-text p{ margin-bottom: 18px; line-height: 1.65; max-width: 520px; opacity: 0.9; }

/* Stats */
.about-stats{ display: flex; gap: 30px; margin-top: 30px; }
.stat{
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    padding: 20px 26px; border-radius: 14px; backdrop-filter: blur(6px); text-align: center;
    transition: transform .4s ease, box-shadow .4s ease;
}
.stat:hover{ transform: translateY(-6px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.stat-number{ display: block; font-family: var(--ff-head); font-size: 1.9rem; margin-bottom: 6px; color: var(--accent); }
.stat-label{ font-size: 0.9rem; opacity: 0.85; }

/* Image */
.about-image-container{
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 1;
    transform: none;
    transition: all 1s cubic-bezier(.2,.9,.26,1);
}
.about-section.revealed .about-image-container{ opacity: 1; transform: translateX(0); }
.about-image-card{ width: 95%; max-width: 480px; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,0.45); transform: scale(0.96); transition: all .5s ease; }
.about-image-card:hover{ transform: scale(1.02) translateY(-8px); }
.about-image-card img{ width: 100%; height: auto; display: block; }

@media (max-width: 768px){
  .about-wrapper{
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  .about-text{
    text-align: center;
  }
  .about-text h2::after{
    left: 50%;
    transform: translateX(-50%);
  }
  .about-stats{
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ====================================================== PREMIUM TESTIMONIALS SECTION ====================================================== */
.testimonials-section { padding: 10px 0; color: white; position: relative; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header h2 { font-family: var(--ff-head); font-size: 2.6rem; margin-bottom: 14px; }
.testimonials-header p { opacity: 0.85; }

/* CAROUSEL WRAPPER */
.testimonials-carousel { display: flex; gap: 28px; overflow-x: auto; scroll-behavior: smooth; padding: 10px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.testimonials-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 320px;
    max-width: 360px;

    /* ICEY BLUE GLASS BACKGROUND */
    background: rgba(24, 90, 134, 0.72); /* soft blue tint */
    border: 1px solid rgba(24, 90, 134, 0.45);
    backdrop-filter: blur(14px) saturate(170%);

    /* SHAPE + LAYOUT */
    padding: 32px 26px;
    border-radius: 22px;
    scroll-snap-align: center;

    /* GLOW + SHADOW */
    box-shadow: 
        0 12px 35px rgba(0, 140, 255, 0.28),
        0 0 40px rgba(120, 200, 255, 0.22) inset;

    transition: transform .45s ease, box-shadow .45s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);

    box-shadow: 
        0 20px 50px rgba(0, 140, 255, 0.4),
        0 0 40px rgba(150, 220, 255, 0.25) inset;
}


/* STARS */
.stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 14px; }

/* TEXT */
.testimonial-card p { line-height: 1.6; opacity: 0.95; margin-bottom: 16px; }
.testimonial-card h4 { font-weight: 600; opacity: 0.9; margin-top: 10px; }

/* SCROLL REVEAL */
.testimonials-section .reveal { opacity: 0; transform: translateY(20px); transition: all .9s cubic-bezier(.2,.9,.26,1); }
.testimonials-section .reveal.show { opacity: 1; transform: none; }

/* TESTIMONIAL SECTION */
#testimonials { padding: 80px 0; text-align: center; background: url("images/family.jpeg"); background-size: cover; background-position: center; background-repeat: no-repeat;}
.testimonial-slider { overflow: hidden; width: 100%; position: relative; }
.testi-track { display: flex; gap: 40px; animation: scrollTestimonials 15s linear infinite; }
.stars { color: #ffd700; font-size: 22px; margin-bottom: 12px; }

@keyframes scrollTestimonials { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* MOBILE */
@media (max-width: 768px){
  .testimonial-section{
    padding: 60px 20px;
  }
  .testimonial-card{
    padding: 26px 22px;
    max-width: 100%;
  }
  .testimonial-photo img{
    width: 58px;
    height: 58px;
  }
  .testimonial-text{
    font-size: 1rem;
    line-height: 1.55;
  }
}
/* ========================= CONTACT PRO ========================= */
#contact-pro{ background: #0a0f1a; padding: 100px 0 40px; color: #fff; }
.contact-pro-wrapper{
    width: 90%; max-width: 1300px; margin: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

/* Left side */
.contact-pro-left h2{ font-size: 2.8rem; font-weight: 700; margin-bottom: 10px; }
.contact-pro-left .tagline{ font-size: 1.15rem; color: #bcd0e0; margin-bottom: 30px; }
.contact-pro-details p{ margin-bottom: 12px; font-size: 1.1rem; color: #dbe6ef; }
.contact-pro-details a{ color: #cfe7ff; }

/* Buttons */
.btn-primary, .btn-secondary{
    display: inline-block; padding: 12px 30px; border-radius: 50px; margin-right: 12px; margin-top: 25px;
    transition: 0.3s ease; font-weight: 600;
}
.btn-primary{ background: #0093ff; color: white; }
.btn-primary:hover{ background: #007bd1; transform: translateY(-2px); }
.btn-secondary{ background: transparent; border: 2px solid #0093ff; color: #0093ff; }
.btn-secondary:hover{ background: #0093ff; color: white; transform: translateY(-2px); }

.footer-socials{ margin-top: 30px; }
.footer-socials a{ color: #bcd0e0; transition: 0.3s; }
.footer-socials a:hover{ color: white; text-decoration: underline; }

/* Form */
.contact-pro-form{
    background: rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}
.contact-pro-form h3{ font-size: 2rem; margin-bottom: 20px; }
.contact-pro-form input, .contact-pro-form textarea{
    width: 100%; padding: 14px; margin-bottom: 16px; border-radius: 10px; border: none;
}
.contact-pro-form textarea{ height: 130px; }
.btn-submit{
    width: 100%; padding: 16px; background: #0093ff; border: none; color: white; border-radius: 10px;
    font-size: 1.1rem; font-weight: 600; transition: 0.3s;
}
.btn-submit:hover{ background: #007bd1; transform: translateY(-2px); }

/* Footer bottom */
.footer-bottom{ text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p{ color: #8799aa; font-size: 0.95rem; }

@media (max-width: 900px){ .contact-pro-wrapper{ grid-template-columns: 1fr; } }

/* ========================== SERVICES SECTION ========================== */
.services-section {
    background: var(--primary);  /* Dark blue */
    background-image: none !important;
    color: var(--white);
    padding: 50px 6%;
    text-align: center;
    position: relative;
}

/* Section accent (matches WW page) */
.services-section::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 6%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    filter: blur(18px);
    opacity: 0.45;
    transform: rotate(24deg);
    pointer-events: none;
}

.services-section h2 {
    font-family: var(--ff-head);
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: white;
}

/* GRID */
.services-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px;
}

/* GLASS SERVICE CARDS */
.service-card {
    height: 420px;
    padding: 38px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    transition: transform .35s cubic-bezier(.2,.9,.26,1), box-shadow .35s ease;
    backdrop-filter: blur(6px);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

/* ICON */
.service-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 18px;
}

/* TITLE */
.service-card h3 {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: white;
}

/* TEXT */
.service-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* BUTTON */
.service-btn {
    margin-top: 18px;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: white;
    background: linear-gradient(120deg, var(--accent), var(--secondary));
    box-shadow: 0 12px 40px rgba(11,36,52,0.45);
    transition: transform .3s ease;
}

.service-btn:hover {
    transform: translateY(-4px);

}


/* ====================== TRANSFORM HOME SECTION ====================== */
.transform-section { padding: 50px 5%; }
.transform-section {
    padding: 90px 5%;
    background: var(--primary);  /* Dark blue */
    background-image: none !important;
    color: white;
}
.transform-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); align-items: center; gap: 40px; }
.transform-text h2 { font-size: 36px; margin-bottom: 10px; }
.transform-text p { margin-bottom: 20px; line-height: 1.6; }
.transform-benefits li { list-style: none; margin-bottom: 10px; font-size: 18px; }
.transform-benefits i { color: #007bff; margin-right: 10px; }
.transform-btn { display: inline-block; margin-top: 20px; padding: 12px 28px; background: #007bff; color: #fff; border-radius: 8px; text-decoration: none; font-size: 18px; transition: 0.3s ease; }
.transform-btn:hover { background: #005fcc; }
.transform-photo img { width: 100%; border-radius: 16px; box-shadow: 0 5px 18px rgba(0, 0, 0, 0.13); 
}

/* ---------- Page Flow & Rhythm ---------- */
section { scroll-margin-top: 96px; }

/* subtle entrance for all reveals */
.reveal { opacity: 0; transform: translateY(14px) scale(0.992); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.26,1); }
.reveal.show { opacity: 1; transform: none; }

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce){
  .reveal, * { transition: none !important; animation: none !important; }
}

/* ---------- HERO (refined typography & layout) ---------- */
.ww-hero{ position:relative; height:86vh; display:flex; align-items:center; padding:0 6%; }
.ww-hero-bg{ position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(.64) contrast(1.05) saturate(.98); z-index:1; }
.ww-heroo .heroo-content{ position:relative; z-index:3; max-width:820px; }
.ww-heroo .heroo-title{ font-size: clamp(2.6rem, 5.2vw, 4.2rem); line-height:1.04; font-weight:900; color:var(--white); letter-spacing:-0.02em; text-shadow: 0 18px 45px rgba(3,12,26,0.6); }
.ww-heroo .heroo-subtitle{ font-size:1.12rem; color:var(--muted-strong); margin-top:14px; max-width:66%; }
.hero-buttons .hero-btn{ box-shadow: 0 10px 30px rgba(11,36,52,0.45); border-radius: 12px; padding:14px 22px; font-weight:700; }
.hero-buttons .hero-btn.primary{ background: linear-gradient(120deg, var(--accent), var(--secondary)); color: #fff; }
.hero-buttons .hero-btn.secondary{ background: linear-gradient(120deg, var(--accent), var(--secondary)); color: #fff; }
.hero-buttons .hero-btn:hover{ transform: translateY(-3px) scale(1.02); }

/* trust badges subtle style */ .trust-badges .badge{ font-weight:700; font-size:0.95rem; color:var(--white); background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); padding:10px 14px; border-radius:999px; border:1px solid var(--glass-border); box-shadow: inset 0 -6px 16px rgba(0,0,0,0.2); }.trust-badges {
  margin-top: 20px;   /* adjust between 30–60px depending on your layout */
}

/* ---------- SECTION BASE STYLE (consistent rhythm & glass) ---------- */
.ww-section, .ba-section, .packages-section, .pricing-section, .safety-section, .faq-section {
  padding: var(--section-padding-lg);
  background: var(--primary);
  background-image: none !important;
  color: var(--white);
  position: relative;
}
.ww-section .container, .ba-section .container, .packages-section .container{ padding: 0 6%; }

/* subtle top-left accent */
.section-accent{ position:absolute; top:-40px; left:6%; width:120px; height:120px; background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); transform: rotate(24deg); filter: blur(18px); opacity:0.45; pointer-events:none; }

/* smooth section separators */
.section-divider{ height: 96px; background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.28)); }

/* ---------- OVERVIEW / COPY ---------- */
.ww-container{ display:flex; gap:56px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.ww-text{ flex:1; min-width:320px; }
.ww-text h2{ font-size:2.8rem; margin-bottom:18px; font-weight:800; }
.ww-text p{ font-size:1.12rem; line-height:1.72; color:var(--muted-strong); margin-bottom:22px; }
.ww-points{ list-style:none; padding:0; margin:0 0 18px 0; }
.ww-points li{ display:flex; align-items:flex-start; gap:12px; margin-bottom:12px; color:var(--muted-strong); font-size:1.02rem; }
.ww-points i{ color:var(--accent); font-size:1.18rem; margin-top:3px; }

/* image card polish */
.ww-image img{ width:100%; max-width:540px; border-radius:18px; box-shadow: 0 26px 70px rgba(0,0,0,0.6); transform: translateY(0); transition: transform .45s ease; }
.ww-image img:hover{ transform: translateY(-8px) scale(1.02); }

/* CTA cluster */
.ww-ctas{ display:flex; gap:12px; margin-top:12px; }

/* ---------- BEFORE/AFTER – Premium Enhanced ---------- */
.ba-wrap { 
  display: grid; 
  grid-template-columns: 1fr 340px; 
  gap: 40px; 
  align-items: start; 
}

/* Slider container */
.ba-slider { 
  position: relative; 
  border-radius: 20px; 
  overflow: hidden; 
  min-height: 260px; 
  max-width: 520px; 
  box-shadow: 0 25px 80px rgba(0,0,0,0.55);
  background: #000;
}

/* Images */
.ba-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  user-select: none;
  pointer-events: none;
  transform: translateZ(0); /* sharper render */
}

.ba-img.after { 
  position: absolute; 
  inset: 0; 
  clip-path: inset(0 50% 0 0); 
  transition: clip-path 0s linear; 
}

/* Handle */
.ba-handle { 
  position: absolute; 
  top: 0; 
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 24px; 
  border-radius: 14px;
  
  background: linear-gradient(180deg,var(--accent),var(--secondary));
  box-shadow: 
    0 10px 40px rgba(0,0,0,0.6),
    0 0 12px rgba(255,255,255,0.15) inset;

  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Handle hover effect */
.ba-handle:hover {
  background: linear-gradient(180deg,var(--accent-bright),var(--secondary));
  box-shadow:
    0 12px 50px rgba(0,0,0,0.65),
    0 0 16px rgba(255,255,255,0.2) inset;
}

.ba-handle::after { 
  content: ""; 
  width: 5px; 
  height: 52px; 
  background: rgba(255,255,255,0.95); 
  border-radius: 2px; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.45); 
}

/* Labels */
.ba-slider .label-before, 
.ba-slider .label-after { 
  position: absolute; 
  top: 16px; 
  padding: 8px 14px; 
  font-weight: 700; 
  font-size: 0.93rem; 
  border-radius: 999px;
  
  background: rgba(0,0,0,0.48); 
  color: white; 
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.ba-slider .label-before { left: 16px; }
.ba-slider .label-after { right: 16px; }

/* ---------- BEFORE/AFTER INFO (premium stat cards) ---------- */
.ba-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ba-info .ba-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* stat cards */
.ba-info .ba-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  box-shadow: 
    0 4px 16px rgba(0,0,0,0.25),
    0 0 10px rgba(110,200,255,0.08) inset; /* subtle tint */
}

.ba-info .ba-stats strong {
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  color: var(--accent);
  font-weight: 800;
}

.ba-info .ba-stats span {
  font-size: 0.85rem;
  color: var(--muted-soft);
}

/* Logo container */
.ba-logo-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Circular + size + bounce animation */
.ba-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  animation: bounce 2s infinite;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}



/* ---------- PACKAGES (glass cards with hierarchy) ---------- */
.packages-grid{ margin-top:28px; display: grid; gap:12px }
.package-card{ padding:28px; border-radius:16px; background: var(--card-bg); border:1px solid var(--glass-border); transition: transform .28s ease, box-shadow .28s ease; position:relative; overflow:visible; }
.package-card h3{ font-size:1.35rem; margin-bottom:12px; }
.package-card p.muted{ color:var(--muted-soft); margin-bottom:12px; }
.package-card ul{ margin:12px 0; padding-left:18px; color:var(--muted-strong); }
.package-card .price{ font-size:1.05rem; font-weight:800; color:var(--accent); margin-top:12px; }
.package-card.premium{ background: linear-gradient(180deg, rgba(110,200,255,0.04), rgba(110,200,255,0.02)); border:1px solid rgba(110,200,255,0.12); }

/* subtle badge for premium */
.package-card.premium:before{ content:"Most Popular"; position:absolute; transform:translateY(-100px); right:6%; background:var(--accent-soft); color:var(--white); padding:6px 10px; border-radius:999px; font-weight:700; font-size:0.85rem; border:1px solid rgba(110,200,255,0.12); }

/* ---------- PRICING TABLE (legible rows) ---------- */
.pricing-grid{ margin-top:24px; border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,0.06); }
.pricing-row{ display:flex; justify-content:space-between; padding:16px 20px; background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00)); }
.pricing-row:nth-child(odd){ background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.00)); }
.pricing-row span:first-child{ color:var(--muted-soft); }
.pricing-row span:last-child{ font-weight:800; color:var(--accent); }

/* ---------- SAFETY (visual split with inset card) ---------- */
.safety-container{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; }
.safety-image img{ width:100%; border-radius:18px; box-shadow: 0 26px 80px rgba(0,0,0,0.6); }
.safety-text h2{ font-size:2rem; margin-bottom:12px; }
.safety-list{ margin-top:12px; color:var(--muted-strong); }
.safety-list li{ margin-bottom:10px; }
.safety-btn{ margin-top:18px; }

/* inset highlight strip */
.safety-highlight{ position:absolute; right:0; top:10%; width:40%; height:80%; background: linear-gradient(180deg, rgba(110,200,255,0.03), rgba(110,200,255,0.01)); pointer-events:none; filter: blur(24px); }

/* ---------- FAQ (accessible accordion) ---------- */
.faq-list{ max-width:980px; margin:0 auto; }
.faq-item{ margin-bottom:18px; border-radius:12px; overflow:hidden; position:relative; }
.faq-q{ width:100%; text-align:left; padding:18px 20px; background:transparent; border:none; color:var(--white); font-weight:800; display:flex; justify-content:space-between; align-items:center; }
.faq-q:focus{ outline: none; box-shadow: 0 0 0 6px var(--focus); border-radius:10px; }
.faq-a{ padding:0 20px; max-height:0; overflow:hidden; transition: max-height .36s ease, padding .28s ease; color:var(--muted-strong); background: rgba(255,255,255,0.01); }
.faq-item.open .faq-a{ padding:12px 20px 18px 20px; max-height: 420px; }

/* chevron */
.faq-q .chev{ transition: transform .28s ease; }
.faq-item.open .chev{ transform: rotate(180deg); }

/* ---------- BUTTONS & FORMS touch-ups ---------- */
.transform-btn, .safety-btn, .ww-ctas .transform-btn{ border-radius:12px; padding:12px 18px; font-weight:800; letter-spacing:0.2px; }
.transform-btn{ background: linear-gradient(120deg,var(--accent),var(--secondary)); color:white; box-shadow: 0 12px 40px rgba(11,36,52,0.45); }
.transform-btn:hover{ transform: translateY(-4px); }

/* ---------- MICRO-INTERACTIONS ---------- */
/* subtle float on hover for cards */
.package-card, .testimonial-card, .about-image-card{ transition: transform .36s cubic-bezier(.2,.9,.26,1), box-shadow .36s ease; }
.package-card:hover{ transform: translateY(-8px); box-shadow: 0 26px 80px rgba(0,0,0,0.6); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .ww-container{ gap:28px; }
  .ww-hero .hero-subtitle{ max-width:100%; }
}
@media (max-width: 700px){
  .ba-wrap{ grid-template-columns: 1fr; }
  .safety-container{ grid-template-columns: 1fr; }
  .ww-container{ flex-direction:column-reverse; }
  .ww-text h2{ font-size:1.8rem; }
  .ww-hero{ height:68vh; }
}

/* ---------- UTILITY (focus states & accessibility) ---------- */
a:focus, button:focus{ outline: none; box-shadow: 0 0 0 6px var(--focus); border-radius:8px; }
img{ display:block; max-width:100%; }
/* ================= MOBILE FIXES ================= */
@media (max-width: 600px) {

  /* Global padding fix */
  section, .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Headings scale down */
  h1, h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  /* Logo */
  .ba-logo, .nav-logo-img {
    width: 60px !important;
    height: 60px !important;
  }

  /* Service cards */
  .service-card {
    padding: 24px 20px;
    height: auto;
  }

  /* Testimonial cards */
  .testimonial-card {
    min-width: 88% !important;
    max-width: 88% !important;
    padding: 22px !important;
  }

  /* Pricing cards */
  .package-card {
    padding: 24px 20px;
    margin: 0 auto;
    width: 90% !important;
  }

  /* Before-after section */
  .ba-wrap {
    width: 100%;
    max-width: 380px;
  }
}
/* ======================================================
   GLOBAL MOBILE RESPONSIVE FIXES
====================================================== */

@media (max-width: 768px){

  html,
  body{
    overflow-x: hidden;
  }

  .container{
    width: 100%;
    padding: 0 18px;
  }

  section{
    overflow: hidden;
  }

  /* Typography */
  h1{
    line-height: 1.05;
  }

  h2{
    line-height: 1.15;
  }

  p{
    font-size: 1rem;
  }

  /* Navbar */
  .navbar{
    padding: 14px 18px;
  }

  .navbar.scrolled{
    padding: 10px 18px;
  }

  .nav-logo-img{
    width: 52px;
    height: 52px;
  }

  .nav-company{
    font-size: 1.35rem;
  }

  /* Hero */
  #hero{
    min-height: 100svh;
    padding-top: 120px;
  }

  .hero-content{
    width: 100%;
  }

  .hero-buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

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

  /* Services */
  .services-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card{
    padding: 24px;
  }

  /* Mission */
  .mission-inner{
    flex-direction: column;
  }

  .mission-text{
    text-align: center;
    max-width: 100%;
  }

  .mission-text .line{
    margin: 18px auto 28px;
  }

  .mission-photo{
    width: 100%;
  }

  /* About */
  .about-wrapper{
    flex-direction: column;
  }

  .about-image-card{
    width: 100%;
  }

  /* Process */
  .process-title{
    font-size: 2rem;
  }

  .process-step h3{
    font-size: 1.3rem;
  }

  /* Testimonials */
  .testimonial-card{
    min-width: 88%;
  }

  /* Before/After */
  .ba-wrap{
  grid-template-columns: 1fr;
}

  .ba-info{
    width: 100%;
  }

  /* Packages */
  .packages-grid{
    grid-template-columns: 1fr;
  }

  /* Footer/contact */
  .footer-grid,
  .contact-grid{
    grid-template-columns: 1fr;
  }

}
@media (max-width:768px){

  .mission-photo img:hover{
    transform: none;
  }

  .service-card:hover{
    transform: none;
  }

  .about-image-card:hover{
    transform: none;
  }

  .section-bg{
    background-attachment: scroll;
  }

}
