/* =========================================================================
   Golden Shine Trading — Clean professional LIGHT theme
   Minimal palette: white surfaces · deep navy ink · ONE blue accent · grays
   ========================================================================= */
:root{
    --bg:#f5f7fb;          /* page background        */
    --bg-2:#eef2f8;        /* alternating section    */
    --surface:#ffffff;     /* cards                  */
    --ink:#0f1e3d;         /* headings (deep navy)   */
    --body:#48566f;        /* body text              */
    --muted:#7180a0;       /* secondary text         */
    --line:#e4e9f2;        /* borders                */
    --line-2:#d7deeb;
    --accent:#2563eb;      /* single professional blue */
    --accent-600:#1d4ed8;
    --accent-050:#eaf1ff;  /* light blue tint        */
    --footer:#0f1e3d;      /* dark navy anchor       */
    --grad:linear-gradient(120deg,#2f6bff,#2563eb);
    --radius:18px;
    --radius-sm:12px;
    --shadow:0 18px 44px -22px rgba(15,30,61,.28);
    --shadow-sm:0 8px 24px -16px rgba(15,30,61,.22);
    --max:1200px;
    --font:'Plus Jakarta Sans','Inter',system-ui,-apple-system,Segoe UI,sans-serif;
    --display:'Space Grotesk','Plus Jakarta Sans',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:84px}
body{font-family:var(--font);background:var(--bg);color:var(--body);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{max-width:100%;display:block}
.container{width:min(100% - 40px,var(--max));margin-inline:auto}
.grad{color:var(--accent)}
.gs-icon{width:22px;height:22px;flex:0 0 auto}

/* ---------- Preloader (professional loading screen) ---------- */
.preloader{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;
    background:radial-gradient(900px 520px at 50% 38%,#eef3fb,var(--bg) 72%);
    transition:opacity .55s ease,visibility .55s}
.preloader.done{opacity:0;visibility:hidden}
.preloader-inner{display:flex;flex-direction:column;align-items:center;gap:1.6rem;animation:preIn .55s cubic-bezier(.22,1,.36,1)}
@keyframes preIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.preloader-logo{display:flex;flex-direction:column;align-items:center;gap:.4rem;animation:preFloat 2.1s ease-in-out infinite}
@keyframes preFloat{50%{transform:translateY(-6px) scale(1.02)}}
.preloader-name{font-family:var(--display);font-weight:700;letter-spacing:.18em;color:var(--ink);font-size:1.15rem;display:flex;flex-direction:column;align-items:center;gap:5px}
.preloader-name span{font-size:.62rem;letter-spacing:.42em;color:var(--accent)}
.preloader-bar{position:relative;width:200px;height:4px;border-radius:99px;background:rgba(37,99,235,.14);overflow:hidden}
.preloader-bar span{display:block;height:100%;width:0;border-radius:99px;background:linear-gradient(90deg,#2f6bff,#41d4ff);box-shadow:0 0 14px rgba(47,123,255,.55);transition:width .3s cubic-bezier(.22,1,.36,1)}

/* ---------- Animated logo ---------- */
.gs-logo{width:42px;height:42px;flex:0 0 auto;filter:drop-shadow(0 6px 14px rgba(37,99,235,.25))}
.gs-logo--xl{width:96px;height:96px}
/* custom uploaded logo (image) — sized by height, generous width so wide
   wordmark logos are not shrunk; scales down on smaller screens */
img.gs-logo-img{width:auto;height:44px;max-width:300px;object-fit:contain;filter:none;display:block}
img.gs-logo--xl.gs-logo-img{height:66px;max-width:340px}
/* footer sits on dark navy — put any logo on a light chip so it's always visible */
.site-footer img.gs-logo-img{height:38px;max-width:280px;background:#fff;padding:6px 14px;border-radius:10px}
/* preloader shows the logo larger & centered (overrides header sizing) */
.preloader img.gs-logo-img{height:auto;width:auto;max-width:min(76vw,320px);max-height:76px}
/* when a custom logo is uploaded, it stands alone (hide the text wordmark) */
.has-logo .brand-text,.has-logo .preloader-name{display:none}
.gs-logo-hex{stroke-dasharray:330;stroke-dashoffset:330;animation:drawHex 1.4s ease forwards}
.gs-logo-shine{animation:logoShine 3.4s ease-in-out infinite}
@keyframes drawHex{to{stroke-dashoffset:0}}
@keyframes logoShine{0%,60%{transform:translateX(0)}100%{transform:translateX(210px)}}

/* ---------- Scroll progress ---------- */
.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;z-index:1001;background:var(--accent)}

/* ---------- Buttons ---------- */
.btn{position:relative;display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 1.6rem;border-radius:999px;font-weight:600;font-size:.95rem;border:1px solid transparent;cursor:pointer;transition:.25s ease;white-space:nowrap;overflow:hidden}
.btn .gs-icon{width:18px;height:18px;transition:transform .25s}
.btn:hover .gs-icon{transform:translateX(4px)}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 12px 26px -12px rgba(37,99,235,.55)}
.btn-primary::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);transform:translateX(-120%)}
.btn-primary:hover::after{transform:translateX(120%);transition:transform .7s}
.btn-primary:hover{background:var(--accent-600);transform:translateY(-3px);box-shadow:0 18px 34px -12px rgba(37,99,235,.6)}
.btn-ghost{background:#fff;color:var(--ink);border-color:var(--line-2)}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-3px)}
.btn-light{background:#fff;color:var(--accent);border-color:#fff}
.btn-light:hover{transform:translateY(-3px);box-shadow:0 16px 34px -16px rgba(0,0,0,.35)}
.btn-block{width:100%;justify-content:center}

/* ---------- Surface (card) ---------- */
.glass{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm)}

/* ---------- Header / Nav ---------- */
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;transition:.3s ease}
.site-header.scrolled{background:rgba(255,255,255,.86);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--line);box-shadow:0 6px 24px -18px rgba(15,30,61,.4)}
.nav-bar{display:flex;align-items:center;justify-content:space-between;height:74px}
.brand{display:flex;align-items:center;gap:.7rem;color:var(--ink)}
.brand-text{font-weight:800;font-size:1.05rem;line-height:1;display:flex;flex-direction:column;font-family:var(--display)}
.brand-text small{font-weight:500;font-size:.62rem;letter-spacing:.24em;text-transform:uppercase;color:var(--accent);margin-top:3px}
.nav-links{display:flex;align-items:center;gap:1.6rem}
.nav-links a{font-weight:600;font-size:.93rem;color:var(--body);transition:.2s;position:relative}
.nav-links a:not(.nav-cta)::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--accent);transition:.25s}
.nav-links a:not(.nav-cta):hover{color:var(--ink)}
.nav-links a:not(.nav-cta):hover::after{width:100%}
.nav-links a.active{color:var(--accent)}
.nav-links a.active::after{width:100%}
.nav-cta{color:#fff!important}
.nav-toggle{display:none;background:#fff;border:1px solid var(--line-2);border-radius:10px;width:44px;height:44px;color:var(--ink);cursor:pointer;align-items:center;justify-content:center}
.nav-toggle .gs-icon{width:24px;height:24px}
.nav-toggle-close{display:none}

/* ---------- Sections ---------- */
.section{padding:clamp(70px,9vw,120px) 0;position:relative}
.section:nth-of-type(even){background:var(--bg-2)}
.section-head{max-width:720px;margin:0 auto clamp(40px,5vw,64px);text-align:center}
.kicker{display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:1rem;font-family:var(--display)}
.section-title{font-family:var(--display);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:700;line-height:1.12;color:var(--ink);letter-spacing:-.02em}
.section-lead{margin-top:1rem;color:var(--muted)}

/* ---------- Hero ---------- */
.hero{position:relative;padding:150px 0 110px;overflow:hidden;min-height:100vh;display:flex;align-items:center;background:linear-gradient(180deg,#eef3fb,#f5f7fb)}
.hero-particles{position:absolute;inset:0;z-index:0;width:100%;height:100%}
.hero-bg{position:absolute;inset:0;z-index:0;background:radial-gradient(760px 460px at 82% -6%,rgba(37,99,235,.10),transparent 60%),radial-gradient(620px 460px at 2% 30%,rgba(37,99,235,.07),transparent 60%)}
.orb{position:absolute;border-radius:50%;filter:blur(80px);opacity:.5}
.orb-1{width:360px;height:360px;background:radial-gradient(circle,rgba(37,99,235,.22),transparent 70%);top:-60px;right:8%;animation:float 9s ease-in-out infinite}
.orb-2{width:300px;height:300px;background:radial-gradient(circle,rgba(37,99,235,.16),transparent 70%);bottom:-60px;left:-40px;animation:float 11s ease-in-out infinite reverse}
.orb-3{display:none}
.grid-overlay{position:absolute;inset:0;opacity:.5;background-image:linear-gradient(rgba(15,30,61,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(15,30,61,.05) 1px,transparent 1px);background-size:54px 54px;mask-image:radial-gradient(circle at 50% 30%,#000,transparent 75%)}
@keyframes float{50%{transform:translateY(-26px)}}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.15fr .85fr;gap:3rem;align-items:center}
.eyebrow{display:inline-flex;align-items:center;gap:.55rem;padding:.45rem .95rem;border-radius:999px;background:#fff;border:1px solid var(--line-2);font-size:.8rem;font-weight:600;color:var(--accent);box-shadow:var(--shadow-sm)}
.live-dot{width:8px;height:8px;border-radius:50%;background:#16a34a;box-shadow:0 0 0 0 rgba(22,163,74,.5);animation:pulse 2s infinite}
.hero h1{font-family:var(--display);font-size:clamp(2.3rem,5.2vw,3.7rem);font-weight:700;line-height:1.08;color:var(--ink);letter-spacing:-.025em;margin:1.2rem 0;min-height:2.2em}
.rotator{display:inline-block;position:relative;color:var(--accent)}
.rotator::after{content:"";position:absolute;right:-8px;top:8%;width:3px;height:84%;background:var(--accent);animation:caret .8s steps(2) infinite}
@keyframes caret{50%{opacity:0}}
.hero-sub{font-size:1.05rem;color:var(--body);max-width:560px}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap;margin:1.8rem 0}
.hero-trust{display:flex;gap:2rem;flex-wrap:wrap;padding-top:1.4rem;border-top:1px solid var(--line)}
.hero-trust div{display:flex;flex-direction:column}
.hero-trust strong{font-family:var(--display);font-size:1.6rem;color:var(--ink);font-weight:700}
.hero-trust span{font-size:.82rem;color:var(--muted)}
.hero-card{padding:1.4rem;box-shadow:var(--shadow);transform-style:preserve-3d}
.hero-card-head{display:flex;align-items:center;gap:.4rem;padding-bottom:1rem;border-bottom:1px solid var(--line);margin-bottom:1rem}
.hero-card-head .dot{width:11px;height:11px;border-radius:50%;background:#cdd5e5}
.hero-card-head .dot:first-child{background:#ff5f57}.hero-card-head .dot:nth-child(2){background:#febc2e}.hero-card-head .dot:nth-child(3){background:#28c840}
.hero-card-head em{margin-left:auto;font-style:normal;font-size:.74rem;color:var(--muted);font-family:var(--display)}
.hero-terminal{font-family:'Space Grotesk',monospace;font-size:.8rem;color:var(--accent-600);min-height:96px;margin-bottom:.6rem;white-space:pre-wrap;line-height:1.7}
.hero-card-list li{display:flex;align-items:center;gap:.7rem;padding:.5rem 0;color:var(--body);font-weight:500;font-size:.92rem}
.hero-card-list .gs-icon{width:18px;height:18px;color:var(--accent)}
.hero-card-cta{display:inline-flex;align-items:center;gap:.4rem;margin-top:.8rem;color:var(--accent);font-weight:600;font-size:.9rem}
.hero-card-cta .gs-icon{width:16px;height:16px;transition:.2s}
.hero-card-cta:hover .gs-icon{transform:translateX(4px)}
.scroll-cue{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);width:26px;height:42px;border:2px solid var(--line-2);border-radius:14px;z-index:2;display:grid;place-items:start center;padding-top:7px}
.scroll-cue span{width:5px;height:9px;border-radius:3px;background:var(--accent);animation:scrollCue 1.6s ease-in-out infinite}
@keyframes scrollCue{0%{transform:translateY(0);opacity:1}70%{transform:translateY(12px);opacity:0}100%{opacity:0}}
@keyframes pulse{70%{box-shadow:0 0 0 8px rgba(22,163,74,0)}100%{box-shadow:0 0 0 0 rgba(22,163,74,0)}}

/* ---------- Marquee ---------- */
.marquee{position:relative;overflow:hidden;padding:16px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#fff;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee-track{display:flex;align-items:center;gap:1.5rem;white-space:nowrap;width:max-content;animation:marquee 26s linear infinite;font-family:var(--display)}
.marquee-track span{font-weight:600;font-size:1.02rem;color:var(--ink)}
.marquee-track i{color:var(--accent);font-style:normal;font-size:.7rem}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{to{transform:translateX(-50%)}}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:3rem;align-items:center}
.about-img{position:relative;border-radius:var(--radius);overflow:hidden;transform-style:preserve-3d}
.about-img img{width:100%;height:440px;object-fit:cover;border-radius:var(--radius);border:1px solid var(--line)}
.about-img-glow{position:absolute;inset:-2px;border-radius:var(--radius);background:var(--accent);filter:blur(30px);opacity:.18;z-index:-1}
.about-img-badge{position:absolute;left:18px;bottom:18px;padding:.9rem 1.2rem;display:flex;flex-direction:column;line-height:1.2}
.about-img-badge strong{font-family:var(--display);color:var(--ink);font-size:1.4rem}
.about-img-badge span{font-size:.78rem;color:var(--muted)}
.about-copy p{color:var(--body);margin:1rem 0 1.5rem}
.about-points{margin-bottom:1.8rem;display:grid;gap:.7rem}
.about-points li{display:flex;align-items:center;gap:.7rem;color:var(--ink);font-weight:500}
.about-points .gs-icon{width:18px;height:18px;color:var(--accent)}

/* ---------- Services ---------- */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.service-card{padding:0;overflow:hidden;transition:.3s ease;transform-style:preserve-3d}
.service-card:hover{transform:translateY(-8px);border-color:var(--line-2);box-shadow:var(--shadow)}
.service-media{position:relative;height:170px;overflow:hidden}
.service-media img{width:100%;height:100%;object-fit:cover}
.service-card:hover .service-media img{transform:scale(1.08);transition:.5s ease}
.service-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,30,61,0) 40%,rgba(15,30,61,.35))}
.service-ico{position:absolute;left:18px;bottom:-26px;z-index:2;display:grid;place-items:center;width:54px;height:54px;border-radius:15px;background:var(--accent);color:#fff;box-shadow:0 12px 24px -10px rgba(37,99,235,.6)}
.service-ico .gs-icon{width:26px;height:26px}
.service-body{padding:2.2rem 1.6rem 1.7rem;position:relative}
.service-no{position:absolute;right:1.4rem;top:-1.9rem;font-family:var(--display);font-size:2.4rem;font-weight:700;color:rgba(15,30,61,.06)}
.service-body h3{color:var(--ink);font-size:1.12rem;font-weight:700;margin-bottom:.5rem;font-family:var(--display)}
.service-body p{color:var(--muted);font-size:.93rem}
.service-link{display:inline-flex;align-items:center;gap:.4rem;margin-top:1rem;color:var(--accent);font-weight:600;font-size:.88rem}
.service-link .gs-icon{width:16px;height:16px;transition:.2s}
.service-card:hover .service-link .gs-icon{transform:translateX(4px)}

/* ---------- Spotlight (subtle cursor glow) ---------- */
.spotlight{position:relative}
.spotlight::before{content:"";position:absolute;inset:0;border-radius:inherit;opacity:0;transition:opacity .3s;background:radial-gradient(260px circle at var(--mx,50%) var(--my,50%),rgba(37,99,235,.08),transparent 60%);pointer-events:none;z-index:1}
.spotlight:hover::before{opacity:1}

/* ---------- Why ---------- */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.why-card{display:flex;gap:1rem;padding:1.6rem;transition:.3s}
.why-card:hover{transform:translateY(-5px);border-color:var(--line-2);box-shadow:var(--shadow)}
.why-ico{position:relative;z-index:2;display:grid;place-items:center;width:50px;height:50px;border-radius:14px;background:var(--accent-050);color:var(--accent);flex:0 0 auto}
.why-ico .gs-icon{width:24px;height:24px}
.why-card h3{color:var(--ink);font-size:1.02rem;margin-bottom:.3rem;font-family:var(--display);position:relative;z-index:2}
.why-card p{font-size:.9rem;color:var(--muted);position:relative;z-index:2}

/* ---------- Industries ---------- */
.industries-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.2rem}
.industry{display:flex;flex-direction:column;align-items:center;gap:.8rem;padding:1.7rem 1rem;text-align:center;transition:.3s;transform-style:preserve-3d}
.industry:hover{transform:translateY(-6px);border-color:var(--line-2);box-shadow:var(--shadow)}
.industry-ico{display:grid;place-items:center;width:54px;height:54px;border-radius:50%;background:var(--accent-050);border:1px solid var(--line);color:var(--accent);transition:.3s}
.industry:hover .industry-ico{background:var(--accent);color:#fff}
.industry-ico .gs-icon{width:26px;height:26px}
.industry-name{font-weight:600;font-size:.9rem;color:var(--ink)}

/* ---------- Testimonials ---------- */
.testi-slider{overflow:hidden;position:relative}
.testi-track{display:flex;transition:transform .6s cubic-bezier(.22,1,.36,1)}
.testi-card{flex:0 0 100%;padding:2.6rem;text-align:center;max-width:780px;margin-inline:auto}
.testi-quote{display:inline-grid;place-items:center;width:54px;height:54px;border-radius:15px;background:var(--accent-050);color:var(--accent);margin-bottom:1.2rem}
.testi-card blockquote{font-size:1.25rem;color:var(--ink);font-weight:500;line-height:1.55;font-family:var(--display)}
.testi-card figcaption{display:flex;align-items:center;justify-content:center;gap:.8rem;margin-top:1.6rem}
.testi-avatar{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:var(--accent);color:#fff;font-weight:800;font-family:var(--display)}
.testi-card figcaption strong{display:block;color:var(--ink);font-size:.98rem}
.testi-card figcaption small{color:var(--muted)}
.testi-dots{display:flex;gap:.5rem;justify-content:center;margin-top:1.6rem}
.testi-dots button{width:9px;height:9px;border-radius:50%;border:none;background:var(--line-2);cursor:pointer;transition:.25s;padding:0}
.testi-dots button.active{background:var(--accent);width:28px;border-radius:6px}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.4rem;align-items:start}
.contact-info>p{color:var(--muted);margin:1rem 0 1.6rem}
.contact-list{display:grid;gap:1rem;margin-bottom:1.6rem}
.contact-list li{display:flex;gap:.9rem;align-items:flex-start}
.contact-ico{display:grid;place-items:center;width:46px;height:46px;border-radius:13px;background:var(--accent-050);border:1px solid var(--line);color:var(--accent);flex:0 0 auto}
.contact-ico .gs-icon{width:20px;height:20px}
.contact-list strong{display:block;color:var(--ink);font-size:.9rem;margin-bottom:2px}
.contact-list a,.contact-list div{color:var(--body);font-size:.92rem}
.contact-map{border-radius:var(--radius-sm);overflow:hidden;border:1px solid var(--line)}
.contact-map iframe{display:block}
.contact-form-wrap{padding:2rem}
.contact-form{display:grid;gap:1.1rem}
.field{display:flex;flex-direction:column;gap:.4rem}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.field label{font-size:.85rem;font-weight:600;color:var(--ink)}
.field input,.field select,.field textarea{width:100%;padding:.85rem 1rem;border-radius:12px;background:#fff;border:1px solid var(--line-2);color:var(--ink);font-family:inherit;font-size:.94rem;transition:.2s}
.field textarea{resize:vertical;min-height:110px}
.field input::placeholder,.field textarea::placeholder{color:#9aa6bd}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(37,99,235,.14)}
.field .err{color:#dc2626;font-size:.8rem}
.hp{position:absolute;left:-9999px;height:0;overflow:hidden}
.form-note{font-size:.78rem;color:var(--muted);text-align:center;margin-top:.3rem}
.alert{display:flex;gap:.7rem;align-items:flex-start;padding:1rem 1.1rem;border-radius:12px;margin-bottom:1.4rem;font-size:.92rem}
.alert .gs-icon{width:20px;height:20px;flex:0 0 auto}
.alert-success{background:#e9f9ef;border:1px solid #b7e6c7;color:#166534}
.alert-success .gs-icon{color:#16a34a}
.alert-error{background:#fdecec;border:1px solid #f5c2c2;color:#b91c1c}

/* ---------- CTA strip ---------- */
.cta-strip{padding:clamp(54px,7vw,84px) 0;position:relative;overflow:hidden;background:linear-gradient(120deg,rgba(29,78,216,.94),rgba(37,99,235,.94)),var(--cta-img) center/cover}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.cta-inner h2{font-family:var(--display);color:#fff;font-size:clamp(1.5rem,3vw,2.1rem);font-weight:700;max-width:640px;letter-spacing:-.02em}

/* ---------- Footer ---------- */
.site-footer{background:var(--footer);color:#c4cee0;position:relative;overflow:hidden}
.footer-dots{position:relative;height:80px;overflow:hidden}
.footer-dots__line{position:absolute;left:0;top:50%;width:200%;height:60px;opacity:.4;transform:translateY(-50%);background-image:radial-gradient(circle,rgba(120,160,240,.5) 1.5px,transparent 2px),radial-gradient(circle,rgba(120,160,240,.3) 1px,transparent 1.5px);background-size:54px 30px,90px 40px;background-position:0 6px,22px 18px;animation:footerDots 20s linear infinite}
@keyframes footerDots{to{transform:translate3d(-25%,-50%,0)}}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:2.4rem;padding-bottom:2.5rem}
.brand--footer{margin-bottom:1rem;color:#fff}
.footer-about p{color:#93a1bd;font-size:.92rem;margin-bottom:1.2rem;max-width:340px}
.footer-socials{display:flex;gap:.6rem}
.footer-socials a{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:#c4cee0;font-weight:700;transition:.25s}
.footer-socials a:hover{background:var(--accent);color:#fff;border-color:var(--accent);transform:translateY(-3px)}
.footer-col h4{color:#fff;font-size:1rem;margin-bottom:1.1rem;font-family:var(--display)}
.footer-col ul{display:grid;gap:.6rem}
.footer-col ul a{color:#93a1bd;font-size:.9rem;transition:.2s}
.footer-col ul a:hover{color:#fff;padding-left:4px}
.footer-contact li{display:flex;gap:.6rem;align-items:flex-start;color:#93a1bd;font-size:.9rem;margin-bottom:.7rem}
.footer-contact .gs-icon{width:18px;height:18px;color:#7db8ff;flex:0 0 auto;margin-top:2px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;padding:1.4rem 0;border-top:1px solid rgba(255,255,255,.1);font-size:.85rem;color:#93a1bd}
.footer-legal{display:flex;gap:1.4rem}
.footer-legal a:hover{color:#fff}

/* ---------- Design switcher (demo) ---------- */
.theme-switch{position:fixed;right:0;top:45%;z-index:950;display:flex;align-items:flex-start;flex-direction:row-reverse}
.ts-toggle{width:48px;height:48px;border:none;border-radius:12px 0 0 12px;background:var(--ink);color:#fff;cursor:pointer;display:grid;place-items:center;box-shadow:0 10px 26px -10px rgba(15,30,61,.5);transition:.25s;animation:tsWiggle 5s ease-in-out infinite}
.ts-toggle svg{width:24px;height:24px}
.ts-toggle:hover{background:var(--accent)}
@keyframes tsWiggle{0%,88%,100%{transform:rotate(0)}92%{transform:rotate(-14deg)}96%{transform:rotate(10deg)}}
.ts-panel{background:var(--surface);border:1px solid var(--line);border-radius:14px 0 0 14px;box-shadow:var(--shadow);padding:1rem;width:0;overflow:hidden;opacity:0;transform:translateX(12px);transition:.3s ease;pointer-events:none}
.theme-switch.open .ts-panel{width:210px;opacity:1;transform:none;pointer-events:auto}
.ts-panel strong{display:block;color:var(--ink);font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:.7rem;white-space:nowrap}
.ts-item{display:flex;align-items:center;gap:.6rem;padding:.55rem .6rem;border-radius:9px;font-weight:600;font-size:.9rem;color:var(--body);transition:.2s;white-space:nowrap}
.ts-item:hover{background:var(--accent-050);color:var(--accent)}
.ts-item.active{background:var(--accent-050);color:var(--accent)}
.ts-item em{margin-left:auto;font-style:normal}
.ts-dot{width:16px;height:16px;border-radius:50%;flex:0 0 auto;border:2px solid rgba(0,0,0,.12)}
.ts-dot--light{background:linear-gradient(135deg,#f5f7fb 50%,#2563eb 50%)}
.ts-dot--dark{background:linear-gradient(135deg,#060a18 50%,#41d4ff 50%)}
.ts-dot--gold{background:linear-gradient(135deg,#0d0b08 50%,#d4af37 50%)}

/* ---------- Floating buttons ---------- */
.whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:900;width:56px;height:56px;border-radius:50%;display:grid;place-items:center;background:#25d366;color:#fff;box-shadow:0 14px 30px -8px rgba(37,211,102,.6);transition:.25s;animation:pulse2 2.4s infinite}
.whatsapp-float .gs-icon{width:30px;height:30px}
.whatsapp-float:hover{transform:scale(1.08)}
@keyframes pulse2{0%{box-shadow:0 0 0 0 rgba(37,211,102,.45)}70%{box-shadow:0 0 0 16px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}
.to-top{position:fixed;left:22px;bottom:22px;z-index:900;width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:#fff;border:1px solid var(--line-2);color:var(--accent);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(12px);transition:.3s;box-shadow:var(--shadow-sm)}
.to-top .gs-icon{width:22px;height:22px;transform:rotate(-90deg)}
.to-top.show{opacity:1;visibility:visible;transform:translateY(0)}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{position:relative;padding:150px 0 70px;overflow:hidden;background:linear-gradient(180deg,#eaf0fa,#f5f7fb)}
.page-hero-bg{position:absolute;inset:0;z-index:0}
.page-hero-inner{position:relative;z-index:2;max-width:760px}
.crumbs{display:flex;align-items:center;gap:.6rem;font-size:.85rem;font-weight:600;color:var(--muted);margin-bottom:.9rem}
.crumbs a{color:var(--accent)}
.crumbs a:hover{text-decoration:underline}
.page-hero h1{font-family:var(--display);font-size:clamp(2rem,4.6vw,3.2rem);font-weight:700;color:var(--ink);letter-spacing:-.025em;line-height:1.1}
.page-hero p{margin-top:.9rem;font-size:1.05rem;color:var(--body);max-width:600px}

/* ---------- Stats band ---------- */
.stats-band{padding:clamp(40px,5vw,60px) 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem}
.stat{padding:1.7rem 1.4rem;text-align:center;transition:.3s}
.stat:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.stat .count{display:block;font-family:var(--display);font-size:2.2rem;font-weight:700;color:var(--accent);line-height:1}
.stat span{font-size:.85rem;color:var(--muted)}

/* ---------- Mission / Vision ---------- */
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.mv-card{padding:2.2rem}
.mv-card h3{font-family:var(--display);color:var(--ink);font-size:1.25rem;margin:1.1rem 0 .6rem}
.mv-card p{color:var(--body);font-size:.96rem}

/* ---------- Service detail ---------- */
.sd-grid{display:grid;grid-template-columns:1.6fr .9fr;gap:2.6rem;align-items:start}
.sd-img{position:relative;border-radius:var(--radius);overflow:hidden;margin-bottom:2rem;box-shadow:var(--shadow)}
.sd-img img{width:100%;height:360px;object-fit:cover}
.sd-ico{left:22px;bottom:22px!important}
.sd-desc{color:var(--body);margin:1rem 0 1.4rem;font-size:1.02rem}
.sd-points{display:grid;gap:.8rem;margin-bottom:1.8rem}
.sd-points li{display:flex;align-items:flex-start;gap:.7rem;color:var(--ink);font-weight:500;padding:.9rem 1.1rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);transition:.25s}
.sd-points li:hover{transform:translateX(6px);border-color:var(--accent)}
.sd-points .gs-icon{width:18px;height:18px;color:var(--accent);margin-top:3px}
.sd-side{display:grid;gap:1.4rem;position:sticky;top:96px}
.sd-widget{padding:1.6rem}
.sd-widget h3{font-family:var(--display);color:var(--ink);font-size:1.05rem;margin-bottom:1rem}
.sd-widget ul{display:grid;gap:.3rem}
.sd-widget ul a{display:flex;align-items:center;gap:.6rem;padding:.65rem .5rem;border-radius:10px;color:var(--body);font-weight:500;font-size:.92rem;transition:.2s}
.sd-widget ul a:hover{background:var(--accent-050);color:var(--accent)}
.sd-arrow{width:15px;height:15px;color:var(--accent)}
.sd-contact p{color:var(--muted);font-size:.9rem;margin-bottom:1rem}
.sd-phone{display:flex;align-items:center;gap:.6rem;color:var(--ink);font-weight:600;font-size:.92rem;padding:.45rem 0;transition:.2s}
.sd-phone:hover{color:var(--accent)}
.sd-phone .gs-icon{width:18px;height:18px;color:var(--accent)}

/* ---------- Legal pages ---------- */
.legal-wrap{max-width:820px;margin-inline:auto;padding:clamp(1.8rem,4vw,3rem)}
.legal-date{color:var(--muted);font-size:.85rem;margin-bottom:1.6rem}
.legal-wrap h2{font-family:var(--display);color:var(--ink);font-size:1.2rem;margin:1.6rem 0 .5rem}
.legal-wrap p{color:var(--body);font-size:.96rem}
.legal-wrap a{color:var(--accent);font-weight:600}
.legal-wrap a:hover{text-decoration:underline}

/* ---------- Image slider ---------- */
.slider-section{position:relative}
.gs-slider{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--navy-800,#0b1428)}
.gs-slides{position:relative;width:100%;aspect-ratio:21/9;min-height:280px}
.gs-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .8s ease}
.gs-slide.active{opacity:1;visibility:visible;z-index:1}
.gs-slide img{width:100%;height:100%;object-fit:cover;transform:scale(1.02)}
.gs-slide.active img{animation:kenburns 7s ease-out forwards}
@keyframes kenburns{from{transform:scale(1.02)}to{transform:scale(1.12)}}
.gs-slide-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,14,30,.78) 0%,rgba(8,14,30,.5) 45%,rgba(8,14,30,.15) 100%)}
.gs-slide-caption{position:absolute;left:0;top:0;bottom:0;display:flex;flex-direction:column;justify-content:center;gap:.9rem;max-width:600px;padding:clamp(1.5rem,5vw,4rem);z-index:2}
.gs-slide.active .gs-slide-caption{animation:slideCapIn .7s cubic-bezier(.22,1,.36,1) .15s both}
@keyframes slideCapIn{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
.gs-slide-caption h3{font-family:var(--display);color:#fff;font-size:clamp(1.5rem,3.4vw,2.6rem);font-weight:700;line-height:1.1;letter-spacing:-.02em}
.gs-slide-caption p{color:rgba(255,255,255,.9);font-size:clamp(.95rem,1.6vw,1.1rem);max-width:460px}
.gs-slide-btn{align-self:flex-start;margin-top:.4rem}
.gs-slider-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:48px;height:48px;border-radius:50%;border:none;display:grid;place-items:center;cursor:pointer;background:rgba(255,255,255,.9);color:var(--ink);box-shadow:var(--shadow-sm);transition:.25s}
.gs-slider-arrow:hover{background:#fff;transform:translateY(-50%) scale(1.08)}
.gs-slider-arrow .gs-icon{width:22px;height:22px}
.gs-prev{left:16px}.gs-prev .gs-icon{transform:rotate(180deg)}
.gs-next{right:16px}
.gs-slider-dots{position:absolute;left:0;right:0;bottom:16px;z-index:5;display:flex;gap:.5rem;justify-content:center}
.gs-slider-dots button{width:9px;height:9px;border-radius:50%;border:none;background:rgba(255,255,255,.5);cursor:pointer;padding:0;transition:.25s}
.gs-slider-dots button.active{background:#fff;width:28px;border-radius:6px}

/* ---------- Rich-text body (admin MS-Word content) ---------- */
.rich-body{color:inherit}
.rich-body p{margin:0 0 .7em}
.rich-body p:last-child{margin-bottom:0}
.rich-body ul,.rich-body ol{margin:.5em 0 .8em;padding-left:1.3em}
.rich-body ul{list-style:disc}
.rich-body ol{list-style:decimal}
.rich-body li{margin:.25em 0}
.rich-body h3,.rich-body h4{color:var(--ink);margin:.6em 0 .4em;font-family:var(--display)}
.rich-body a{color:var(--accent);font-weight:600;text-decoration:underline}
.rich-body strong,.rich-body b{color:inherit;font-weight:700}

/* ---------- Reveal (enhanced variants) ---------- */
.reveal,.reveal-left,.reveal-right,.reveal-zoom{opacity:0;transition:opacity .8s cubic-bezier(.22,1,.36,1),transform .8s cubic-bezier(.22,1,.36,1)}
.reveal{transform:translateY(34px)}
.reveal-left{transform:translateX(-44px)}
.reveal-right{transform:translateX(44px)}
.reveal-zoom{transform:scale(.9) translateY(20px)}
.reveal.in,.reveal-left.in,.reveal-right.in,.reveal-zoom.in{opacity:1;transform:none}

/* Staggered children — parent gets .stagger + .in */
.stagger>*{opacity:0;transform:translateY(18px);transition:opacity .6s cubic-bezier(.22,1,.36,1),transform .6s cubic-bezier(.22,1,.36,1)}
.stagger.in>*{opacity:1;transform:none}
.stagger.in>*:nth-child(1){transition-delay:.05s}
.stagger.in>*:nth-child(2){transition-delay:.15s}
.stagger.in>*:nth-child(3){transition-delay:.25s}
.stagger.in>*:nth-child(4){transition-delay:.35s}
.stagger.in>*:nth-child(5){transition-delay:.45s}
.stagger.in>*:nth-child(6){transition-delay:.55s}

/* Floating badge */
.floaty{animation:floaty 4.5s ease-in-out infinite}
@keyframes floaty{50%{transform:translateY(-10px)}}

/* Section title underline draw */
.section-head .section-title{position:relative;display:inline-block;padding-bottom:14px}
.section-head .section-title::after{content:"";position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:0;height:3px;border-radius:3px;background:var(--accent);transition:width .9s cubic-bezier(.22,1,.36,1) .3s}
.section-head .reveal.in .section-title::after,.section-head.in .section-title::after{width:64px}

/* Backdrop behind the mobile menu */
.nav-backdrop{position:fixed;inset:0;z-index:998;background:rgba(15,30,61,.45);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.nav-backdrop.show{opacity:1;visibility:visible}

/* ---------- Responsive ---------- */
/* Laptop / small desktop */
@media(max-width:1200px){
    .container{width:min(100% - 48px,var(--max))}
}
@media(max-width:980px){
    .hero-inner,.about-grid,.contact-grid{grid-template-columns:1fr}
    .hero{min-height:auto;padding-top:120px;padding-bottom:70px}
    .hero-card{max-width:480px;margin-inline:auto;width:100%}
    .about-visual{order:-1}
    .about-img img{height:360px}
    .services-grid,.why-grid{grid-template-columns:repeat(2,1fr)}
    .industries-grid{grid-template-columns:repeat(3,1fr)}
    .footer-grid{grid-template-columns:1fr 1fr}
    .sd-grid,.mv-grid{grid-template-columns:1fr}
    .sd-side{position:static}
    .stats-grid{grid-template-columns:repeat(2,1fr)}
    img.gs-logo-img{height:42px;max-width:270px}
    .page-hero{padding:120px 0 56px}

    /* ---- Mobile menu (hamburger) ---- */
    .nav-toggle{display:flex}
    .nav-links{
        position:fixed;top:0;right:0;bottom:0;left:auto;
        width:min(84%,330px);height:100%;
        flex-direction:column;align-items:stretch;justify-content:flex-start;gap:.2rem;
        padding:92px 24px 40px;
        background:#fff;
        border-left:1px solid var(--line);
        box-shadow:-24px 0 60px -20px rgba(15,30,61,.25);
        transform:translateX(105%);transition:transform .35s ease;
        z-index:999;overflow-y:auto;
    }
    .nav-links.open{transform:none}
    .nav-links a{width:100%;font-size:1.05rem;padding:.85rem .2rem;border-bottom:1px solid var(--line)}
    .nav-links a:not(.nav-cta)::after{display:none}
    .nav-links a:not(.nav-cta):hover{color:var(--accent);padding-left:.5rem}
    .nav-cta{margin-top:1rem;justify-content:center;border-bottom:none!important;padding:.9rem 1.6rem!important}
    .site-header.menu-open .nav-toggle-open{display:none}
    .site-header.menu-open .nav-toggle-close{display:block}
    .site-header{z-index:1000}
}
@media(max-width:760px){
    .services-grid,.why-grid,.field-row{grid-template-columns:1fr}
    .industries-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid,.footer-bottom{grid-template-columns:1fr;text-align:left}
    .cta-inner{flex-direction:column;text-align:center;align-items:center}
    .hero h1{min-height:auto}
    .section{padding:clamp(56px,10vw,90px) 0}
    /* hero CTAs stack full-width, stats align in a neat row */
    .hero-cta{flex-direction:column;align-items:stretch;max-width:360px}
    .hero-cta .btn{width:100%;justify-content:center}
    .hero-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
    .hero-trust strong{font-size:1.35rem}
    img.gs-logo-img{height:38px;max-width:240px}
    .site-footer img.gs-logo-img{height:34px;max-width:240px}
    .cta-inner .btn{width:100%;max-width:320px;justify-content:center}
}
@media(max-width:480px){
    .container{width:min(100% - 30px,var(--max))}
    .industries-grid{grid-template-columns:1fr}
    .hero{padding-top:110px}
    .hero-trust{gap:.7rem}
    .hero-trust strong{font-size:1.2rem}
    .hero-trust span{font-size:.74rem}
    img.gs-logo-img{height:34px;max-width:210px}
    .about-img img{height:300px}
    .service-media{height:150px}
    .testi-card,.contact-form-wrap,.mv-card{padding:1.5rem}
    .page-hero{padding:105px 0 48px}
    .whatsapp-float{width:50px;height:50px;right:16px;bottom:16px}
    .whatsapp-float .gs-icon{width:26px;height:26px}
    .to-top{left:16px;bottom:16px}
}

@media(prefers-reduced-motion:reduce){
    *{animation:none!important;transition:none!important}
    .reveal{opacity:1;transform:none}
    .gs-logo-hex{stroke-dashoffset:0}
}
