:root {
  --green-dark: #1a3c2e;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --cream: #f5f2eb;
  --cream-2: #eeeae0;
  --white: #ffffff;
  --text-dark: #1a2e1f;
  --text-mid: #4a5e52;
  --text-light: #7a8e80;
  --gold: #c9a84c;
  --border: #ddd8cc;
  --shadow: 0 4px 24px rgba(30,60,40,.10);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;background:var(--cream);color:var(--text-dark);overflow-x:hidden;}
h1,h2,h3,h4{font-family:'Playfair Display',serif;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}

.container{width:100%;max-width:1180px;margin:0 auto;padding:0 2rem;}

/* ===== FLOATING BUTTONS ===== */
.float-btn{
  position:fixed;right:1.2rem;z-index:999;
  width:50px;height:50px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;color:white;box-shadow:0 4px 16px rgba(0,0,0,.2);
  transition:transform .3s;
}
.float-btn:hover{transform:scale(1.1);}
.phone-float{bottom:7.5rem;background:var(--green-mid);}
.whatsapp-float{bottom:3.5rem;background:#25D366;}

/* ===== NAVBAR ===== */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.96);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:.65rem 0;transition:all .3s;
}
.nav-container{
  max-width:1180px;margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;gap:1.5rem;
}
.nav-logo{display:flex;align-items:center;gap:.6rem;}
.logo-emblem{flex-shrink:0;}
.logo-name{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:700;color:var(--green-dark);}

.nav-links{display:flex;align-items:center;gap:.1rem;margin-left:auto;}
.nav-link{
  padding:.45rem .75rem;border-radius:6px;
  font-size:.85rem;font-weight:500;color:var(--text-mid);
  transition:all .2s;white-space:nowrap;
}
.nav-link:hover,.nav-link.active{color:var(--green-dark);}
.nav-link.active{font-weight:600;}

/* Dropdown */
.nav-dropdown{position:relative;}
.dropdown-toggle{display:flex;align-items:center;gap:.3rem;cursor:pointer;}
.dropdown-arrow{font-size:.6rem;transition:transform .25s;}
.nav-dropdown:hover .dropdown-arrow,.nav-dropdown.open .dropdown-arrow{transform:rotate(180deg);}

.dropdown-menu{
  position:absolute;top:calc(100% + .5rem);left:50%;
  transform:translateX(-50%) translateY(-6px);
  background:white;border-radius:10px;min-width:200px;
  box-shadow:0 8px 28px rgba(0,0,0,.12);border:1px solid var(--border);
  padding:.5rem 0;opacity:0;visibility:hidden;pointer-events:none;
  transition:all .2s cubic-bezier(.4,0,.2,1);z-index:200;
}
.dropdown-menu::before{
  content:'';position:absolute;top:-5px;left:50%;transform:translateX(-50%);
  border:5px solid transparent;border-bottom-color:white;border-top:none;
}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown.open .dropdown-menu{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0);
}
.dropdown-menu li a{
  display:flex;align-items:center;gap:.65rem;
  padding:.6rem 1.1rem;font-size:.82rem;font-weight:600;
  color:var(--text-dark);letter-spacing:.05em;text-transform:uppercase;
  transition:all .15s;
}
.dropdown-menu li a:hover{color:var(--green-mid);background:#f0faf4;}
.dropdown-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--green-mid);flex-shrink:0;
}

.btn-book-site{
  background:var(--green-dark);color:white;
  padding:.55rem 1.3rem;border-radius:50px;
  font-size:.85rem;font-weight:600;
  display:flex;align-items:center;gap:.5rem;
  transition:all .3s;white-space:nowrap;flex-shrink:0;
}
.btn-book-site:hover{background:var(--green-mid);}

.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.4rem;}
.hamburger span{display:block;width:22px;height:2px;background:var(--text-dark);border-radius:2px;transition:all .3s;}

/* ===== HERO ===== */
@keyframes heroZoom{
  from{ transform:scale(1); }
  to{ transform:scale(1.12); }
}
.hero{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  padding-top:80px;text-align:center;
  position:relative;overflow:hidden;
}
/* Animated background layer */
.hero-bg-layer{
  position:absolute;inset:0;z-index:0;
  background:url('img_hero_bg.png') center/cover no-repeat;
  animation:heroZoom 8s ease-in-out forwards;
  transform-origin:center center;
}
/* Subtle dark gradient at bottom only for text readability */
.hero::before{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.10) 40%,
    rgba(0,0,0,.45) 100%
  );
}
.hero::after{content:none;}
.hero-inner{position:relative;z-index:2;max-width:760px;padding:3rem 2rem;}

.hero-badge-pill{
  display:inline-flex;align-items:center;gap:.55rem;
  background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.4);
  color:white;padding:.4rem 1.2rem;border-radius:50px;
  font-size:.82rem;font-weight:600;letter-spacing:.05em;margin-bottom:2rem;
  backdrop-filter:blur(8px);
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:#4ade80;display:inline-block;}

.hero-heading{
  font-size:clamp(2.4rem,6vw,4rem);font-weight:700;
  color:white;line-height:1.15;margin-bottom:1.4rem;
  text-shadow:0 2px 20px rgba(0,0,0,.3);
}
.hero-heading-italic{
  display:block;
  font-style:italic;color:#a7f3d0;
  position:relative;
}
.hero-heading-italic::after{
  content:'';position:absolute;bottom:-4px;left:50%;transform:translateX(-50%);
  width:55%;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  border-radius:2px;
}

.hero-sub{
  font-size:1rem;color:rgba(255,255,255,.88);line-height:1.75;margin-bottom:2rem;
  text-shadow:0 1px 6px rgba(0,0,0,.25);
}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.2rem;}

.btn-hero-primary{
  background:var(--green-dark);color:white;
  padding:.75rem 1.8rem;border-radius:50px;
  font-size:.9rem;font-weight:600;
  display:flex;align-items:center;gap:.5rem;
  transition:all .3s;box-shadow:0 4px 16px rgba(0,0,0,.3);
}
.btn-hero-primary:hover{background:var(--green-mid);transform:translateY(-2px);}
.btn-hero-outline{
  background:rgba(255,255,255,.15);color:white;
  padding:.75rem 1.8rem;border-radius:50px;
  font-size:.9rem;font-weight:600;
  border:1.5px solid rgba(255,255,255,.7);
  backdrop-filter:blur(8px);
  transition:all .3s;
}
.btn-hero-outline:hover{background:rgba(255,255,255,.3);border-color:white;}

.hero-pills{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.hero-pill{
  display:flex;align-items:center;gap:.5rem;
  background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.35);
  padding:.45rem 1.1rem;border-radius:50px;
  font-size:.82rem;font-weight:500;color:white;
  backdrop-filter:blur(8px);
}
.hero-pill i{color:#86efac;font-size:.85rem;}

/* ===== STATS BAR ===== */
.stats-bar{
  background:white;border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:1.6rem 2rem;
}
.stats-grid{
  max-width:900px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-around;
  flex-wrap:wrap;gap:1rem;
}
.stat-item{text-align:center;}
.stat-number{
  display:block;font-family:'Playfair Display',serif;
  font-size:2rem;font-weight:700;color:var(--text-dark);line-height:1;
}
.stat-number sup{font-size:1.1rem;font-weight:700;color:var(--green-mid);}
.stat-label{display:block;font-size:.8rem;color:var(--text-light);margin-top:.3rem;font-weight:500;}
.stat-divider{width:1px;height:45px;background:var(--border);}

/* ===== SECTION COMMONS ===== */
.section-header{text-align:center;margin-bottom:3rem;}
.section-pill{
  display:inline-block;background:#f0faf4;border:1px solid rgba(45,106,79,.2);
  color:var(--green-mid);padding:.35rem 1rem;border-radius:50px;
  font-size:.78rem;font-weight:600;letter-spacing:.06em;margin-bottom:.9rem;
}
.section-pill.light{background:rgba(255,255,255,.2);color:rgba(255,255,255,.9);}
.section-title{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:700;color:var(--text-dark);margin-bottom:.7rem;}
.section-title.white{color:white;}
.section-sub{font-size:.93rem;color:var(--text-mid);line-height:1.7;}
.section-sub.white-sub{color:rgba(255,255,255,.75);}

/* ===== PROJECTS ===== */
.projects-section{background:#f0ede5;padding:5rem 0 3rem;}

.projects-slider-wrap{overflow:hidden;margin:0 -1rem;padding:0 1rem 1rem;}
.projects-track{
  display:flex;gap:1.5rem;
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.proj-card{
  flex:0 0 calc(33.333% - 1rem);min-width:0;
  background:white;border-radius:14px;overflow:hidden;
  box-shadow:var(--shadow);border:1px solid var(--border);
  transition:all .3s;
}
.proj-card:hover{transform:translateY(-5px);box-shadow:0 12px 36px rgba(30,60,40,.15);}

.proj-card-img{position:relative;}
.proj-status-badge{
  position:absolute;top:.85rem;left:.85rem;z-index:2;
  padding:.28rem .8rem;border-radius:50px;font-size:.75rem;font-weight:700;
}
.proj-status-badge.selling{background:#2d6a4f;color:white;}
.proj-status-badge.available{background:#52b788;color:white;}

/* Grand Valley special card design */
.proj-img{height:220px;position:relative;overflow:hidden;}
.grand-valley-img{background:url('img_grand_valley.png') center/cover no-repeat;}
.gv-inner{
  height:100%;display:flex;flex-direction:column;padding:.75rem;
  background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 40%);
}
.gv-logo-box{
  background:rgba(255,255,255,.95);border-radius:6px;padding:.4rem .8rem;
  display:inline-flex;align-items:center;gap:.2rem;margin-bottom:.5rem;width:fit-content;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.gv-title-grand{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:400;color:#333;font-style:italic;}
.gv-title-valley{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:#2d6a4f;}
.gv-road{font-size:.65rem;font-weight:700;color:white;letter-spacing:.06em;margin-bottom:auto;text-shadow:0 1px 3px rgba(0,0,0,.5);}
.gv-brief-bar{
  background:#2d6a4f;color:white;text-align:center;
  font-size:.7rem;font-weight:700;letter-spacing:.1em;
  padding:.3rem;margin:.5rem -.75rem 0;
}
.gv-brief-rows{background:rgba(255,255,255,.97);padding:.4rem .75rem;display:flex;flex-direction:column;gap:.2rem;}
.gv-row{display:flex;justify-content:space-between;font-size:.65rem;color:#555;}
.gv-row span:first-child{color:#777;}
.gv-row span:last-child{font-weight:600;color:#333;}

.galaxy-img{background:url('img_galaxy.png') center/cover no-repeat;}
.breeze-img{background:url('img_breeze.png') center/cover no-repeat;}
.greenacre-img{background:url('img_greenacre.png') center/cover no-repeat;}
.gateway-img{background:url('img_gateway.png') center/cover no-repeat;}

.proj-card-body{padding:1.1rem 1.25rem;}
.proj-name{font-size:.95rem;font-weight:800;letter-spacing:.04em;color:var(--text-dark);margin-bottom:.35rem;}
.proj-loc{font-size:.82rem;color:var(--text-light);display:flex;align-items:center;gap:.35rem;margin-bottom:.75rem;}
.proj-loc i{color:var(--green-mid);font-size:.8rem;}
.proj-link{
  font-size:.82rem;font-weight:700;color:var(--text-dark);
  display:flex;align-items:center;gap:.35rem;transition:color .2s;
}
.proj-link:hover{color:var(--green-mid);}
.proj-link i{font-size:.7rem;}

/* Slider Arrows */
.slider-arrows{display:flex;justify-content:center;gap:.75rem;margin-top:2rem;}
.slider-arrow{
  width:38px;height:38px;border-radius:50%;
  border:1.5px solid var(--border);background:white;
  display:flex;align-items:center;justify-content:center;
  font-size:.85rem;cursor:pointer;color:var(--text-dark);
  transition:all .2s;
}
.slider-arrow:hover{background:var(--green-dark);color:white;border-color:var(--green-dark);}

/* ===== WHY SECTION ===== */
.why-section{background:var(--green-dark);padding:5rem 0;}
.center-white{text-align:center;}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem;}
.why-card{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);
  border-radius:14px;padding:1.75rem;transition:all .3s;
}
.why-card:hover{background:rgba(255,255,255,.12);transform:translateY(-3px);}
.why-icon{
  width:48px;height:48px;border-radius:12px;
  background:rgba(82,183,136,.2);display:flex;align-items:center;
  justify-content:center;color:#74c69d;font-size:1.2rem;margin-bottom:1rem;
  transition:all .3s;
}
.why-card:hover .why-icon{background:var(--green-mid);color:white;}
.why-card h3{font-size:1rem;font-weight:700;color:white;margin-bottom:.5rem;}
.why-card p{font-size:.85rem;color:rgba(255,255,255,.65);line-height:1.65;}

/* ===== TESTIMONIALS ===== */
.testimonials-section{background:var(--cream);padding:5rem 0;}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.testi-card{
  background:white;border-radius:14px;padding:1.75rem;
  border:1px solid var(--border);box-shadow:var(--shadow);transition:all .3s;
}
.testi-card:hover{transform:translateY(-3px);}
.testi-card.featured{border-color:var(--green-mid);}
.testi-stars{color:#f4b942;font-size:1rem;margin-bottom:.75rem;}
.testi-card p{font-size:.88rem;color:var(--text-mid);line-height:1.7;margin-bottom:1.25rem;font-style:italic;}
.testi-author{display:flex;align-items:center;gap:.75rem;}
.testi-av{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,#2d6a4f,#52b788);
  display:flex;align-items:center;justify-content:center;
  color:white;font-weight:700;font-size:.8rem;flex-shrink:0;
}
.testi-av.green{background:linear-gradient(135deg,#1b5e20,#81c784);}
.testi-author strong{font-size:.9rem;color:var(--text-dark);}
.testi-author small{font-size:.75rem;color:var(--text-light);}

/* ===== CONTACT ===== */
.contact-section{background:linear-gradient(135deg,#1a3c2e,#2d6a4f);padding:5rem 0;}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;}
.contact-sub{color:rgba(255,255,255,.7);font-size:.92rem;line-height:1.7;margin:.75rem 0 1.75rem;}
.contact-info-list{display:flex;flex-direction:column;gap:1.1rem;}
.ci-item{display:flex;align-items:flex-start;gap:.9rem;}
.ci-item>i{
  width:38px;height:38px;background:rgba(255,255,255,.12);
  border-radius:9px;display:flex;align-items:center;
  justify-content:center;color:white;font-size:.9rem;flex-shrink:0;
}
.ci-item div{display:flex;flex-direction:column;}
.ci-item span,.ci-item a{font-size:.85rem;}
.ci-item span:first-child{color:rgba(255,255,255,.55);font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;}
.ci-item a,.ci-item span:last-child{color:white;font-weight:600;}

.contact-form-card{background:white;border-radius:16px;padding:2.2rem;box-shadow:0 16px 48px rgba(0,0,0,.2);}
.contact-form-card h3{font-size:1.4rem;font-weight:700;color:var(--text-dark);margin-bottom:1.3rem;}
.contact-form-card form{display:flex;flex-direction:column;gap:.85rem;}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
  width:100%;padding:.75rem 1rem;
  border:1.5px solid var(--border);border-radius:9px;
  font-family:'Inter',sans-serif;font-size:.88rem;color:var(--text-dark);
  background:var(--cream);outline:none;transition:border-color .2s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus{border-color:var(--green-mid);}
.contact-form-card textarea{resize:vertical;}
.btn-submit{
  width:100%;background:var(--green-dark);color:white;
  padding:.8rem;border-radius:9px;border:none;
  font-size:.92rem;font-weight:600;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  transition:background .3s;font-family:'Inter',sans-serif;
}
.btn-submit:hover{background:var(--green-mid);}

/* ===== FOOTER ===== */
.footer{
  background:#111d16;padding:2.5rem 1rem;
  text-align:center;
}
.footer-social-row{display:flex;justify-content:center;gap:1rem;margin-bottom:1rem;}
.footer-social-row a{
  width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.7);font-size:.85rem;transition:all .25s;
}
.footer-social-row a:hover{background:var(--green-mid);color:white;}
.footer-copy{color:rgba(255,255,255,.45);font-size:.82rem;}

/* ===== RESPONSIVE ===== */

/* Large Desktop: 1280px+ */
@media(min-width:1280px){
  .nav-container{gap:2rem;}
  .nav-link{font-size:.9rem;padding:.5rem .9rem;}
  .hero-heading{font-size:4.5rem;}
  .proj-card{flex:0 0 calc(33.333% - 1rem);}
}

/* Desktop / Laptop: up to 1180px */
@media(max-width:1180px){
  .nav-container{padding:0 1.5rem;}
  .nav-link{font-size:.8rem;padding:.4rem .6rem;}
  .why-grid{grid-template-columns:repeat(3,1fr);}
  .testi-grid{grid-template-columns:repeat(3,1fr);}
  .proj-card{flex:0 0 calc(33.333% - 1rem);}
}

/* Tablet landscape / Small desktop: up to 1024px */
@media(max-width:1024px){
  .why-grid,.testi-grid{grid-template-columns:repeat(2,1fr);}
  .proj-card{flex:0 0 calc(50% - .75rem);}
  .contact-grid{grid-template-columns:1fr 1fr;gap:2.5rem;}
  .hero-heading{font-size:3.2rem;}
  .section-title{font-size:2rem;}
}

/* Tablet portrait: up to 768px */
@media(max-width:768px){
  /* Navbar mobile */
  .nav-links,.btn-book-site{display:none;}
  .hamburger{display:flex;}
  .nav-container{padding:0 1.2rem;gap:1rem;}

  /* Mobile slide-out menu */
  .nav-links.open{
    display:flex;flex-direction:column;position:fixed;
    top:0;right:0;bottom:0;width:min(290px,85vw);
    background:white;padding:5rem 1.25rem 2rem;gap:.15rem;
    box-shadow:0 0 50px rgba(0,0,0,.18);z-index:99;overflow-y:auto;
  }
  .nav-links.open .nav-link{
    color:var(--text-dark);padding:.7rem .9rem;
    border-radius:8px;font-size:.9rem;
  }
  .nav-links.open .nav-link:hover{background:#f0faf4;color:var(--green-mid);}
  .nav-links.open .nav-dropdown .dropdown-menu{
    position:static;transform:none;opacity:1;visibility:visible;
    pointer-events:auto;box-shadow:none;border:none;
    background:#f0faf4;border-radius:8px;padding:.3rem 0;
    margin:.2rem 0 .25rem 1rem;display:none;
  }
  .nav-links.open .nav-dropdown.open .dropdown-menu{display:block;}
  .nav-links.open .dropdown-menu::before{display:none;}
  .nav-links.open .dropdown-menu li a{
    text-transform:none;font-size:.85rem;padding:.5rem .9rem;
  }

  /* Hero */
  .hero{min-height:90vh;padding-top:70px;}
  .hero-inner{padding:2rem 1.25rem;}
  .hero-heading{font-size:2.4rem;line-height:1.2;}
  .hero-sub{font-size:.92rem;}
  .hero-badge-pill{font-size:.78rem;margin-bottom:1.4rem;}
  .hero-pills{gap:.6rem;}
  .hero-pill{font-size:.78rem;padding:.4rem .9rem;}
  .hero-btns{gap:.8rem;margin-bottom:1.8rem;}

  /* Stats */
  .stats-bar{padding:1.2rem 1rem;}
  .stats-grid{
    display:grid;grid-template-columns:repeat(2,1fr);
    gap:1.2rem;max-width:100%;
  }
  .stat-divider{display:none;}
  .stat-item{
    background:var(--cream);border-radius:10px;
    padding:.75rem .5rem;
  }
  .stat-number{font-size:1.7rem;}

  /* Projects */
  .projects-section{padding:3.5rem 0 2rem;}
  .proj-card{flex:0 0 calc(75% - .75rem);}
  .section-header{margin-bottom:2rem;}

  /* Why grid */
  .why-grid{grid-template-columns:repeat(2,1fr);gap:1rem;}
  .why-section{padding:3.5rem 0;}
  .why-card{padding:1.4rem;}

  /* Testimonials */
  .testi-grid{grid-template-columns:1fr;gap:1rem;}
  .testimonials-section{padding:3.5rem 0;}

  /* Contact */
  .contact-section{padding:3.5rem 0;}
  .contact-grid{grid-template-columns:1fr;gap:2rem;}
  .contact-form-card{padding:1.75rem;}

  /* Section spacing */
  .section-title{font-size:1.7rem;}
  .section-sub{font-size:.88rem;}
  .container{padding:0 1.25rem;}
}

/* Mobile: up to 600px */
@media(max-width:600px){
  .why-grid{grid-template-columns:1fr;}
  .proj-card{flex:0 0 calc(88% - .75rem);}
  .hero-heading{font-size:2rem;}
  .hero-btns{flex-direction:column;align-items:center;}
  .btn-hero-primary,.btn-hero-outline{width:100%;justify-content:center;}
  .contact-form-card{padding:1.4rem 1.1rem;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
}

/* Small mobile: up to 480px */
@media(max-width:480px){
  .hero{min-height:85vh;}
  .hero-heading{font-size:1.8rem;}
  .hero-inner{padding:1.5rem 1rem;}
  .hero-badge-pill{font-size:.74rem;padding:.35rem .9rem;}
  .hero-sub{font-size:.85rem;}
  .proj-card{flex:0 0 calc(95% - .75rem);}
  .nav-container{padding:0 1rem;}
  .logo-name{font-size:1.15rem;}
  .stat-number{font-size:1.5rem;}
  .section-title{font-size:1.5rem;}
  .why-card h3{font-size:.95rem;}
  .footer{padding:2rem .75rem;}
  .float-btn{width:44px;height:44px;font-size:1.1rem;}
  .phone-float{bottom:6.5rem;}
  .whatsapp-float{bottom:2.8rem;}
}

/* Extra small: 320px */
@media(max-width:360px){
  .hero-heading{font-size:1.6rem;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .stat-number{font-size:1.3rem;}
  .hero-pills{flex-direction:column;align-items:center;}
}

/* Scroll reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-delay-1{transition-delay:.1s;}
.reveal-delay-2{transition-delay:.2s;}
