/* ============================================================
   HOME.CSS — Gunya Shutters
   Homepage-only styles (hero slider, warranty strip, home intro,
   service tabs, shutter types, colours strip, products, about,
   why-choose-us, process, testimonials, home contact section).
   Pairs with: css/header-footer.css (shared chrome).
   ============================================================ */

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #3d7a52;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5e6b8;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --glass: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'DM Sans',sans-serif;color:var(--text-dark);background:var(--white);overflow-x:hidden;}

/* HERO */
.hero{position:relative;height:850px;min-height:500px;overflow:hidden;}
.slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease;}
.slide.active{opacity:1;}
.slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.08);transition:transform 8s ease;}
.slide.active .slide-bg{transform:scale(1);}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(135deg, rgba(26,58,42,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 100%);}
.slide-bg-1{background-image:url('../images/ban1.jpg?w=1600&q=80');}
.slide-bg-2{background-image:url('../images/ban2.jpg?w=1600&q=80');}

.particles{position:absolute;inset:0;pointer-events:none;}
.particle{position:absolute;width:3px;height:3px;background:var(--gold);border-radius:50%;opacity:0.4;animation:float linear infinite;}
@keyframes float{0%{transform:translateY(100vh) translateX(0);opacity:0;}10%{opacity:0.4;}90%{opacity:0.4;}100%{transform:translateY(-100px) translateX(40px);opacity:0;}}

.hero-content{position:relative;z-index:2;height:100%;display:flex;align-items:center;max-width:1280px;margin:0 auto;padding:0 32px 0 32px;}
.hero-text{max-width:680px;}
.hero-eyebrow{font-size:12px;letter-spacing:4px;text-transform:uppercase;color:var(--gold-light);font-weight:500;margin-bottom:20px;opacity:0;animation:fadeUp 0.8s 0.3s forwards;}
.hero-title{font-family:'Playfair Display',serif;font-size:clamp(36px,5vw,68px);font-weight:800;color:var(--white);line-height:1.1;margin-bottom:20px;opacity:0;animation:fadeUp 0.8s 0.5s forwards;}
.hero-title span{color:var(--gold-light);}
.hero-sub{font-size:18px;color:rgba(255,255,255,0.8);line-height:1.6;margin-bottom:36px;font-weight:300;opacity:0;animation:fadeUp 0.8s 0.7s forwards;}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;opacity:0;animation:fadeUp 0.8s 0.9s forwards;}
.hero-btn-primary{padding:15px 32px;background:var(--gold);color:var(--green-dark);font-size:15px;font-weight:700;border-radius:10px;text-decoration:none;transition:all 0.3s;box-shadow:0 8px 24px rgba(201,168,76,0.4);}
.hero-btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 12px 36px rgba(201,168,76,0.55);}
.hero-btn-secondary{padding:15px 32px;border:2px solid rgba(255,255,255,0.5);color:var(--white);font-size:15px;font-weight:600;border-radius:10px;text-decoration:none;transition:all 0.3s;backdrop-filter:blur(8px);}
.hero-btn-secondary:hover{background:rgba(255,255,255,0.15);border-color:var(--white);}

/* SLIDE DOTS */
.slide-dots{position:absolute;bottom:32px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:5;}
.dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.35);cursor:pointer;transition:all 0.3s;border:none;}
.dot.active{background:var(--gold);transform:scale(1.3);}

/* SLIDE ARROWS */
.slide-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:52px;height:52px;border:2px solid rgba(255,255,255,0.35);border-radius:50%;background:rgba(255,255,255,0.08);backdrop-filter:blur(8px);cursor:pointer;color:white;font-size:18px;display:flex;align-items:center;justify-content:center;transition:all 0.3s;}
.slide-arrow:hover{background:var(--gold);border-color:var(--gold);color:var(--green-dark);}
.slide-arrow.prev{left:32px;}
.slide-arrow.next{right:32px;}

/* WARRANTY STRIP */
.warranty-strip{background:var(--gold);padding:0;}
.warranty-inner{max-width:1280px;margin:0 auto;padding:0 32px;display:flex;align-items:stretch;justify-content:center;flex-wrap:wrap;}
.warranty-item{display:flex;align-items:center;gap:14px;color:var(--green-dark);font-weight:600;font-size:14px;padding:22px 32px;position:relative;flex:1;justify-content:center;}
.warranty-item:not(:last-child)::after{content:'';position:absolute;right:0;top:20%;height:60%;width:1px;background:rgba(26,58,42,0.2);}
.warranty-item-icon{width:46px;height:46px;background:var(--green-dark);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.warranty-item-icon svg{width:24px;height:24px;fill:var(--gold);}
.warranty-item-text{display:flex;flex-direction:column;line-height:1.2;}
.warranty-item-text strong{font-size:15px;font-weight:800;color:var(--green-dark);}
.warranty-item-text span{font-size:12px;font-weight:500;color:rgba(26,58,42,0.7);margin-top:2px;}

/* SECTIONS */
section{padding:96px 0;}
.section-inner{max-width:1280px;margin:0 auto;padding:0 32px;}
.section-label{font-size:11px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:12px;}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(28px,3.5vw,46px);font-weight:700;color:var(--green-dark);line-height:1.2;margin-bottom:20px;}
.section-body{font-size:16px;line-height:1.75;color:var(--text-mid);max-width:720px;}

/* HOME INTRO */
.home-intro{background:var(--off-white);}
.intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.intro-image{border-radius:16px;overflow:hidden;position:relative;box-shadow:var(--shadow);}
.intro-image img{width:100%;height:480px;object-fit:cover;transition:transform 0.6s;}
.intro-image:hover img{transform:scale(1.04);}
.intro-badge{position:absolute;bottom:24px;left:24px;background:var(--gold);padding:14px 20px;border-radius:10px;color:var(--green-dark);font-weight:700;font-size:13px;line-height:1.3;}
.intro-list{list-style:none;margin:24px 0;}
.intro-list li{padding:10px 0;border-bottom:1px solid rgba(0,0,0,0.08);display:flex;align-items:center;gap:12px;font-size:15px;color:var(--text-mid);}
.intro-list li::before{content:'';width:8px;height:8px;background:var(--gold);border-radius:50%;flex-shrink:0;}

/* INTRO TOP GRID */
.intro-top-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}

/* SERVICE TABS */
.services-tabs-wrap{background:var(--white);border-radius:20px;overflow:hidden;box-shadow:0 8px 48px rgba(26,58,42,0.10);border:1px solid rgba(0,0,0,0.06);}
.stab-btns{display:grid;grid-template-columns:1fr 1fr;background:var(--green-dark);}
.stab-btn{display:flex;align-items:center;gap:16px;padding:24px 32px;background:none;border:none;cursor:pointer;text-align:left;position:relative;transition:all 0.3s;}
.stab-btn::after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;background:var(--gold);transition:width 0.35s ease;}
.stab-btn.active::after{width:100%;}
.stab-btn.active{background:rgba(201,168,76,0.08);}
.stab-btn:hover:not(.active){background:rgba(255,255,255,0.04);}
.stab-icon{width:48px;height:48px;background:rgba(255,255,255,0.08);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all 0.3s;}
.stab-icon svg{width:22px;height:22px;stroke:rgba(255,255,255,0.45);transition:stroke 0.3s;}
.stab-btn.active .stab-icon{background:var(--gold);box-shadow:0 4px 16px rgba(201,168,76,0.35);}
.stab-btn.active .stab-icon svg{stroke:var(--green-dark);}
.stab-title{font-family:'Playfair Display',serif;font-size:16px;font-weight:700;color:rgba(255,255,255,0.55);transition:color 0.3s;line-height:1.2;}
.stab-btn.active .stab-title{color:var(--white);}
.stab-sub{font-size:12px;color:rgba(255,255,255,0.3);margin-top:4px;transition:color 0.3s;}
.stab-btn.active .stab-sub{color:var(--gold-light);}
.stab-panels{background:var(--white);}
.stab-panel{display:none;animation:tabFadeIn 0.4s ease;}
.stab-panel.active{display:block;}
@keyframes tabFadeIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}
.stab-content-grid{display:grid;grid-template-columns:1fr 1fr;min-height:440px;}
.stab-text{padding:52px 48px;display:flex;flex-direction:column;justify-content:center;}
.stab-panel-label{font-size:11px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:10px;}
.stab-panel-title{font-family:'Playfair Display',serif;font-size:clamp(20px,2.2vw,28px);font-weight:700;color:var(--green-dark);line-height:1.2;margin-bottom:16px;}
.stab-panel-body{font-size:15px;line-height:1.72;color:var(--text-mid);}
.stab-list{list-style:none;margin:14px 0;}
.stab-list li{display:flex;align-items:center;gap:10px;padding:9px 0;border-bottom:1px solid rgba(0,0,0,0.055);font-size:14.5px;color:var(--text-mid);}
.stab-list li:last-child{border-bottom:none;}
.stab-dot{width:8px;height:8px;background:var(--gold);border-radius:50%;flex-shrink:0;}
.stab-image-wrap{position:relative;overflow:hidden;background:var(--green-dark);}
.stab-image-wrap img{width:100%;height:100%;object-fit:cover;opacity:0.88;transition:transform 0.55s ease;}
.stab-image-wrap:hover img{transform:scale(1.04);}
.stab-img-badge{position:absolute;bottom:24px;left:24px;background:var(--gold);color:var(--green-dark);padding:10px 18px;border-radius:8px;font-size:13px;font-weight:700;display:flex;align-items:center;gap:8px;box-shadow:0 4px 20px rgba(0,0,0,0.25);}

/* PRODUCTS */
.products-section{background:var(--white);}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:28px;margin-top:48px;}
.product-card{background:var(--white);border-radius:14px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.08);border:1px solid rgba(0,0,0,0.05);transition:all 0.35s;position:relative;}
.product-card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(26,58,42,0.14);}
.product-card-img{height:220px;overflow:hidden;background:var(--green-dark);display:flex;align-items:center;justify-content:center;}
.product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s;}
.product-card:hover .product-card-img img{transform:scale(1.06);}
.product-card-body{padding:24px;}
.product-cat-label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:8px;}
.product-card-title{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:var(--green-dark);margin-bottom:10px;line-height:1.3;}
.product-card-desc{font-size:14px;color:var(--text-mid);line-height:1.6;margin-bottom:18px;}
.btn-view{display:inline-flex;align-items:center;gap:6px;padding:9px 18px;background:var(--gold);color:var(--white);font-size:13px;font-weight:600;border-radius:8px;text-decoration:none;transition:all 0.25s;}
.btn-view:hover{background:var(--green-dark);color:var(--white);}
.product-card-icon{width:56px;height:56px;background:rgba(201,168,76,0.1);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.product-card-icon svg{width:28px;height:28px;fill:var(--gold);}
.product-section-tabs{display:flex;gap:12px;margin-bottom:40px;flex-wrap:wrap;}
.tab-btn{padding:10px 22px;border-radius:30px;border:2px solid var(--green-light);background:transparent;color:var(--green-dark);font-size:14px;font-weight:600;cursor:pointer;transition:all 0.25s;}
.tab-btn.active,.tab-btn:hover{background:var(--green-dark);color:var(--white);border-color:var(--green-dark);}

/* ABOUT */
.about-section{background:var(--green-dark);color:var(--white);}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.about-img-wrap{position:relative;}
.about-img-wrap img{width:100%;border-radius:14px;height:540px;object-fit:cover;}
.about-img-badge{position:absolute;top:32px;right:-24px;background:var(--gold);padding:18px 22px;border-radius:12px;text-align:center;color:var(--green-dark);font-weight:700;}
.about-img-badge .big{font-family:'Playfair Display',serif;font-size:36px;display:block;}
.about-img-badge .small{font-size:12px;font-weight:500;}
.about-section .section-title{color:var(--white);}
.about-section .section-label{color:var(--gold-light);}
.about-section .section-body{color:rgba(255,255,255,0.78);}
.mission-vision{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:32px;}
.mv-card{background:rgba(255,255,255,0.06);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.12);border-radius:12px;padding:24px;}
.mv-card h4{font-family:'Playfair Display',serif;font-size:18px;color:var(--gold-light);margin-bottom:10px;}
.mv-card p{font-size:14px;color:rgba(255,255,255,0.72);line-height:1.65;}

/* WHY CHOOSE US */
.why-section{background:var(--off-white);}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.why-image{border-radius:16px;overflow:hidden;box-shadow:var(--shadow);}
.why-image img{width:100%;height:480px;object-fit:cover;}
.why-list{list-style:none;margin:28px 0;}
.why-list li{display:flex;align-items:flex-start;gap:14px;padding:14px 0;border-bottom:1px solid rgba(0,0,0,0.07);}
.why-list li:last-child{border-bottom:none;}
.why-check{width:28px;height:28px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;}
.why-check svg{width:14px;height:14px;fill:var(--green-dark);}
.why-list li p{font-size:15px;color:var(--text-mid);line-height:1.55;}

/* SHUTTER TYPES SECTION */
.shutter-types-section{background:var(--off-white);padding:96px 0;}
.shutter-types-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:48px;}
.shutter-type-card{background:var(--white);border-radius:16px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.08);border:1px solid rgba(0,0,0,0.05);transition:all 0.35s;display:flex;flex-direction:column;}
.shutter-type-card:hover{transform:translateY(-8px);box-shadow:0 20px 56px rgba(26,58,42,0.16);}
.shutter-type-img{height:220px;overflow:hidden;background:var(--green-dark);position:relative;}
.shutter-type-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.55s;}
.shutter-type-card:hover .shutter-type-img img{transform:scale(1.07);}
.shutter-type-icon-badge{position:absolute;top:16px;left:16px;background:var(--gold);color:var(--green-dark);border-radius:8px;padding:7px 13px;font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;}
.shutter-type-body{padding:26px 24px 24px;display:flex;flex-direction:column;flex:1;}
.shutter-type-title{font-family:'Playfair Display',serif;font-size:20px;font-weight:700;color:var(--green-dark);margin-bottom:10px;line-height:1.2;}
.shutter-type-desc{font-size:14px;color:var(--text-mid);line-height:1.6;margin-bottom:20px;flex:1;}
.btn-shutter-type{display:inline-flex;align-items:center;gap:7px;padding:11px 22px;background:var(--green-dark);color:var(--white);font-size:13px;font-weight:600;border-radius:8px;text-decoration:none;transition:all 0.25s;align-self:flex-start;}
.btn-shutter-type:hover{background:var(--gold);color:var(--green-dark);transform:translateX(3px);}
.btn-shutter-type svg{width:14px;height:14px;fill:currentColor;transition:transform 0.25s;}
.btn-shutter-type:hover svg{transform:translateX(3px);}

/* COLOURS SECTION */
.colours-section{background:var(--green-dark);padding:80px 0;overflow:hidden;}
.colours-section .section-title{color:var(--white);}
.colours-section .section-label{color:var(--gold-light);}
.colours-intro{font-size:16px;color:rgba(255,255,255,0.7);margin-top:10px;}
.colours-track-wrap{overflow:hidden;margin-top:52px;position:relative;}
.colours-track-wrap::before,.colours-track-wrap::after{content:'';position:absolute;top:0;bottom:0;width:140px;z-index:2;pointer-events:none;}
.colours-track-wrap::before{left:0;background:linear-gradient(to right,var(--green-dark),transparent);}
.colours-track-wrap::after{right:0;background:linear-gradient(to left,var(--green-dark),transparent);}
.colours-track{display:flex;gap:24px;animation:scrollColours 80s linear infinite;width:max-content;padding:8px 0 16px;}
.colours-track-wrap:hover .colours-track{animation-play-state:paused;}
@keyframes scrollColours{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.colour-chip{display:flex;flex-direction:column;align-items:center;gap:0;flex-shrink:0;cursor:default;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:14px;overflow:hidden;transition:border-color 0.3s,box-shadow 0.3s;}
.colour-chip:hover{border-color:var(--gold);box-shadow:0 8px 32px rgba(0,0,0,0.4);}
.shutter-colour-img{width:150px;height:150px;overflow:hidden;position:relative;flex-shrink:0;}
.shutter-colour-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.4s;}
.colour-chip:hover .shutter-colour-img img{transform:scale(1.06);}
.colour-chip-bottom{display:flex;flex-direction:column;align-items:center;gap:7px;padding:12px 10px 14px;width:100%;}
.colour-dot{width:28px;height:28px;border-radius:50%;border:2px solid rgba(255,255,255,0.25);box-shadow:0 2px 8px rgba(0,0,0,0.35);flex-shrink:0;}
.colour-label{font-size:11px;color:rgba(255,255,255,0.85);font-weight:600;text-align:center;white-space:nowrap;letter-spacing:0.3px;line-height:1.3;}

/* FOOTER BADGES */
.footer-badges{display:flex;gap:20px;flex-wrap:wrap;margin-top:28px;}
.footer-badge{display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;background:rgba(201,168,76,0.12);border:2px solid rgba(201,168,76,0.35);border-radius:16px;padding:28px 24px;flex:1;min-width:200px;transition:all 0.3s;}
.footer-badge:hover{background:rgba(201,168,76,0.18);border-color:var(--gold);transform:translateY(-3px);}
.footer-badge-icon{width:64px;height:64px;background:var(--gold);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 6px 20px rgba(201,168,76,0.35);}
.footer-badge-icon svg{width:34px;height:34px;}
.footer-badge-text strong{display:block;font-family:'Playfair Display',serif;font-size:18px;color:var(--white);font-weight:700;line-height:1.2;margin-bottom:4px;}
.footer-badge-text span{font-size:13px;color:rgba(255,255,255,0.6);letter-spacing:0.3px;}

/* PROCESS */
.process-section{background:var(--white);}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px;justify-items:stretch;}
.process-card{background:var(--white);border:1px solid rgba(0,0,0,0.07);border-radius:14px;padding:32px 28px;position:relative;overflow:hidden;transition:all 0.3s;box-shadow:0 2px 12px rgba(0,0,0,0.05);}
.process-card:hover{box-shadow:0 16px 48px rgba(26,58,42,0.12);transform:translateY(-4px);border-color:var(--gold);}
.process-num{font-family:'Playfair Display',serif;font-size:56px;font-weight:800;color:rgba(201,168,76,0.12);position:absolute;top:12px;right:20px;line-height:1;}
.process-icon{width:48px;height:48px;background:rgba(26,58,42,0.07);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.process-icon svg{width:24px;height:24px;fill:var(--green-dark);}
.process-card h4{font-family:'Playfair Display',serif;font-size:17px;color:var(--green-dark);margin-bottom:10px;}
.process-card p{font-size:14px;color:var(--text-mid);line-height:1.6;}

/* TESTIMONIALS */
.testimonials-section{background:var(--green-dark);padding:96px 0;overflow:hidden;}
.testimonials-section .section-title{color:var(--white);}
.testimonials-section .section-label{color:var(--gold-light);}
.testimonials-track-wrap{overflow:hidden;margin-top:48px;}
.testimonials-track{display:flex;gap:24px;animation:scrollTestimonials 28s linear infinite;}
.testimonials-track:hover{animation-play-state:paused;}
@keyframes scrollTestimonials{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.testi-card{background:rgba(255,255,255,0.06);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.1);border-radius:14px;padding:32px;min-width:340px;max-width:340px;flex-shrink:0;}
.testi-stars{display:flex;gap:4px;margin-bottom:16px;}
.testi-stars span{color:var(--gold);font-size:16px;}
.testi-text{font-size:15px;color:rgba(255,255,255,0.82);line-height:1.7;margin-bottom:20px;font-style:italic;}
.testi-author{font-weight:600;color:var(--gold-light);font-size:14px;}

/* CONTACT */
.contact-section{background:var(--off-white);}
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:64px;}
.contact-info h3{font-family:'Playfair Display',serif;font-size:28px;color:var(--green-dark);margin-bottom:24px;}
.contact-detail{display:flex;gap:14px;margin-bottom:20px;align-items:flex-start;}
.contact-detail-icon{width:40px;height:40px;background:var(--green-dark);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-detail-icon svg{width:18px;height:18px;fill:var(--gold);}
.contact-detail p{font-size:14px;color:var(--text-mid);line-height:1.6;}
.contact-detail strong{display:block;font-size:13px;text-transform:uppercase;letter-spacing:1px;color:var(--green-dark);margin-bottom:3px;}
.contact-form{background:var(--white);border-radius:16px;padding:40px;box-shadow:0 8px 40px rgba(0,0,0,0.08);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-group{margin-bottom:18px;}
.form-group label{display:block;font-size:13px;font-weight:600;color:var(--green-dark);margin-bottom:7px;text-transform:uppercase;letter-spacing:0.8px;}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;border:1.5px solid #e0ddd5;border-radius:8px;font-size:15px;font-family:'DM Sans',sans-serif;color:var(--text-dark);background:var(--white);transition:border-color 0.2s;outline:none;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold);}
.form-group textarea{height:120px;resize:vertical;}
.form-submit{width:100%;padding:15px;background:var(--green-dark);color:var(--white);font-size:16px;font-weight:700;border:none;border-radius:10px;cursor:pointer;transition:all 0.3s;font-family:'DM Sans',sans-serif;}
.form-submit:hover{background:var(--gold);color:var(--green-dark);}

/* CONTACT HERO IMAGE */
.contact-hero-img-wrap{position:relative;margin-top:28px;border-radius:14px;overflow:hidden;box-shadow:0 12px 48px rgba(26,58,42,0.18);}
.contact-hero-img{width:100%;height:240px;object-fit:cover;display:block;transition:transform 0.6s ease;}
.contact-hero-img-wrap:hover .contact-hero-img{transform:scale(1.04);}
.contact-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,58,42,0.82) 0%,rgba(26,58,42,0.25) 55%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:22px 24px;gap:10px;}
.contact-hero-badge{display:inline-flex;align-items:center;gap:10px;background:var(--gold);color:var(--green-dark);padding:10px 18px;border-radius:10px;font-size:13px;font-weight:700;width:fit-content;box-shadow:0 4px 16px rgba(201,168,76,0.4);}
.contact-hero-badge span{font-weight:500;font-size:12px;opacity:0.85;}
.contact-hero-badge strong{font-size:14px;}
.contact-hero-badge svg{flex-shrink:0;}
.contact-hero-tag{font-size:11px;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,0.75);font-weight:600;}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}
.reveal{opacity:0;transform:translateY(32px);transition:all 0.7s cubic-bezier(0.22,1,0.36,1);}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-delay-1{transition-delay:0.1s;}
.reveal-delay-2{transition-delay:0.2s;}
.reveal-delay-3{transition-delay:0.3s;}
.reveal-delay-4{transition-delay:0.4s;}

/* =====================
   RESPONSIVE — LARGE DESKTOP (≤1280px)
   ===================== */
@media(max-width:1280px){
  .shutter-types-grid{grid-template-columns:1fr 1fr;}
}

/* =====================
   RESPONSIVE — TABLET (≤1024px)
   ===================== */
@media(max-width:1024px){
  .shutter-types-grid{grid-template-columns:1fr 1fr;}
  .intro-top-grid{grid-template-columns:1fr;gap:32px;}
  .intro-grid{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;gap:40px;}
  .why-grid{grid-template-columns:1fr;gap:32px;}
  .contact-grid{grid-template-columns:1fr;gap:40px;}
  .about-img-badge{right:16px;}
  .intro-image img,.why-image img{height:340px;}
  .stab-content-grid{grid-template-columns:1fr;}
  .stab-image-wrap{height:280px;order:-1;}
  .stab-text{padding:36px 32px;}
  .process-grid{grid-template-columns:repeat(3,1fr);}
}

/* =====================
   RESPONSIVE — MOBILE (≤768px)
   ===================== */
@media(max-width:768px){
  /* Hero */
  .hero{height:60vh;min-height:380px;}
  .hero-content{padding:0 18px;align-items:center;justify-content:center;text-align:center;padding-top:80px;padding-bottom:60px;}
  .hero-text{max-width:100%;}
  .hero-eyebrow{font-size:11px;letter-spacing:2px;margin-bottom:14px;}
  .hero-title{font-size:28px;line-height:1.2;margin-bottom:14px;}
  .hero-sub{font-size:15px;margin-bottom:24px;}
  .hero-btns{flex-direction:column;align-items:center;gap:10px;}
  .hero-btn-primary,.hero-btn-secondary{width:100%;max-width:280px;text-align:center;padding:14px 24px;font-size:14px;}
  .slide-arrow{display:none;}
  .slide-dots{bottom:16px;gap:8px;}
  .dot{width:8px;height:8px;}
  .slide-overlay{background:linear-gradient(160deg, rgba(26,58,42,0.88) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.35) 100%);}

  /* Warranty strip */
  .warranty-inner{flex-direction:column;gap:0;}
  .warranty-item{padding:16px 20px;justify-content:flex-start;font-size:13px;}
  .warranty-item:not(:last-child)::after{top:auto;bottom:0;left:5%;width:90%;height:1px;}

  /* Sections */
  section{padding:56px 0;}
  .section-inner{padding:0 18px;}
  .section-title{font-size:26px;}
  .section-body{font-size:15px;}

  /* Intro top */
  .intro-top-grid{grid-template-columns:1fr;gap:24px;}
  .intro-image img{height:260px;}
  .intro-top-image .intro-image img{height:260px;min-height:unset;}

  /* Service tabs */
  .stab-btns{grid-template-columns:1fr;}
  .stab-btn{padding:16px 18px;gap:12px;}
  .stab-icon{width:40px;height:40px;flex-shrink:0;}
  .stab-icon svg{width:18px;height:18px;}
  .stab-title{font-size:14px;}
  .stab-sub{font-size:11px;}
  .stab-content-grid{grid-template-columns:1fr;}
  .stab-image-wrap{height:220px;order:-1;}
  .stab-text{padding:24px 20px;}
  .stab-panel-title{font-size:20px;}
  .stab-panel-body{font-size:14px;}
  .stab-list li{font-size:14px;}

  /* Shutter Types */
  .shutter-types-grid{grid-template-columns:1fr 1fr;gap:16px;}
  .shutter-type-img{height:180px;}

  /* Products */
  .products-grid{grid-template-columns:1fr 1fr;}
  .product-section-tabs{gap:8px;}
  .tab-btn{padding:8px 14px;font-size:13px;}

  /* About */
  .about-grid{grid-template-columns:1fr;gap:32px;}
  .about-img-wrap img{height:280px;}
  .about-img-badge{top:16px;right:16px;padding:12px 16px;}
  .about-img-badge .big{font-size:28px;}
  .mission-vision{grid-template-columns:1fr;gap:14px;}
  .mv-card{padding:18px;}

  /* Why */
  .why-grid{grid-template-columns:1fr;}
  .why-image img{height:260px;}
  .why-list li{padding:12px 0;}

  /* Process */
  .process-grid{grid-template-columns:1fr 1fr;gap:16px;}
  .process-card{padding:22px 18px;}
  .process-num{font-size:40px;}

  /* Testimonials */
  .testi-card{min-width:280px;max-width:280px;padding:24px;}
  .testi-text{font-size:14px;}

  /* Contact */
  .contact-grid{grid-template-columns:1fr;gap:32px;}
  .contact-form{padding:24px 20px;}
  .form-row{grid-template-columns:1fr;}
  .contact-hero-img{height:200px;}

  /* Scroll top */
  .scroll-top{bottom:16px;right:16px;width:40px;height:40px;font-size:14px;}

  /* Buttons */
  .btn-contact-outline{padding:11px 20px;font-size:14px;}
}

/* =====================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ===================== */
@media(max-width:480px){
  /* Hero small mobile */
  .hero{height:55vh;min-height:340px;}
  .hero-title{font-size:24px;line-height:1.25;}
  .hero-sub{font-size:14px;}
  .hero-eyebrow{font-size:10px;letter-spacing:1.5px;}
  .hero-content{padding:0 16px;padding-top:72px;padding-bottom:64px;}
  .hero-btn-primary,.hero-btn-secondary{max-width:100%;font-size:13px;padding:13px 20px;}

  .products-grid{grid-template-columns:1fr;}
  .product-section-tabs{flex-wrap:wrap;}
  .tab-btn{font-size:12px;padding:8px 12px;}
  .process-grid{grid-template-columns:1fr;}
  .stab-image-wrap{height:200px;}
  .warranty-inner{gap:12px;}
  .section-title{font-size:22px;}
  .contact-form{padding:20px 16px;}
  .about-grid{gap:24px;}
}

/* SCROLL TOP */
.scroll-top{position:fixed;bottom:28px;right:28px;width:44px;height:44px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:100;border:none;box-shadow:0 4px 16px rgba(201,168,76,0.4);opacity:0;transform:translateY(16px);transition:all 0.3s;color:var(--green-dark);font-size:16px;}
.scroll-top.visible{opacity:1;transform:translateY(0);}
.scroll-top:hover{background:var(--gold-light);}

.process-icon-gold{background:#c9a84c !important;}
.process-icon-gold svg{fill:#ffffff !important;}
.process-warranty{border-color:var(--gold);}

/* CONTACT OUTLINE BUTTON */
.btn-contact-outline{display:inline-flex;align-items:center;padding:13px 28px;border:2px solid var(--green-mid);color:var(--green-dark);font-size:15px;font-weight:600;border-radius:8px;text-decoration:none;transition:all 0.25s;}
.btn-contact-outline:hover{background:var(--green-dark);color:var(--white);border-color:var(--green-dark);}

/* GOLD LINE ACCENT */
.gold-line{width:48px;height:3px;background:var(--gold);border-radius:2px;margin-bottom:24px;}

/* SECTION ALT BG */
.section-alt{background:linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);}

/* HERO SECOND SLIDE SUB */
.hero-sub-small{font-size:15px;color:rgba(255,255,255,0.7);margin-top:10px;font-weight:400;}

/* MOBILE HEADER CONTACT STRIP */
.mobile-header-contact{display:none;}
@media(max-width:768px){
  .mobile-header-contact{
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:4px;
    background:var(--green-dark);
    border-bottom:1px solid rgba(201,168,76,0.25);
    padding:8px 16px;
    width:100%;
  }
  .mobile-header-contact a{
    display:flex;align-items:center;gap:6px;
    color:rgba(255,255,255,0.9);text-decoration:none;
    font-size:12px;font-weight:500;
    transition:color 0.2s;
  }
  .mobile-header-contact a:hover{color:var(--gold-light);}
  .mobile-header-contact a svg{width:13px;height:13px;fill:var(--gold);flex-shrink:0;}
  .mhc-divider{display:none;}
  header{flex-direction:column !important;height:auto !important;top:0 !important;}
  header.at-top{height:auto !important;}
  .header-inner{width:100%;height:68px !important;background:rgba(255,255,255,0.97);}
  header.scrolled .header-inner{background:transparent;}
  header.scrolled .mobile-header-contact{background:var(--green-dark);}
  header.scrolled .hamburger span{background:var(--green-dark);}
}
@media(max-width:480px){
  .mobile-header-contact{padding:6px 12px;}
  .mobile-header-contact a{font-size:11px;}
  .header-inner{height:60px !important;}
}

/* ===========================
   ACTIVE NAV LINK — DESKTOP & MOBILE
   =========================== */

/* Desktop: gold text + underline bar */
.nav-link.active,
.nav-item.active > .nav-link,
.nav-item.active > a.nav-link {
  color: #c9a84c !important;
  position: relative;
}
.nav-link.active::after,
.nav-item.active > .nav-link::after,
.nav-item.active > a.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c9a84c;
  border-radius: 2px;
}

/* Desktop hover — gold on hover */
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: #c9a84c !important;
}

/* Mobile off-canvas: gold text + left border for active item */
@media(max-width:768px){
  .header-right .nav-link.active,
  .header-right .nav-item.active > .nav-link,
  .header-right .nav-item.active > a.nav-link {
    color: #c9a84c !important;
    background: rgba(201,168,76,0.08);
    border-left: 3px solid #c9a84c;
    padding-left: 14px;
  }
  .header-right .nav-link.active::after,
  .header-right .nav-item.active > .nav-link::after {
    display: none;
  }
  .header-right .nav-link:hover,
  .header-right .nav-item:hover > .nav-link {
    color: #c9a84c !important;
  }
}

.topbar-right,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right a,
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topbar-right a svg,
.footer-social a svg {
  width: 19px;
  height: 19px;
  display: block;
}

.topbar-right a {
  color: #fff;
}

.footer-social a {
  color: #fff;
}

.topbar-right a:hover,
.footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
