/* =========================================================
   AIMIM LATUR — PREMIUM POLITICAL + ADVOCATE WEBSITE
   Hostinger-ready / responsive / no external JS required
   ========================================================= */

:root{
  --green-950:#03100b;
  --green-900:#06150f;
  --green-850:#081c14;
  --green-800:#0b291e;
  --green:#10b981;
  --green-light:#34d399;
  --gold:#d4af37;
  --gold-light:#f0d477;
  --white:#fff;
  --ink:#101817;
  --muted:#66736e;
  --soft:#f4f7f5;
  --line:rgba(16,185,129,.16);
  --shadow:0 20px 60px rgba(3,16,11,.12);
  --radius:20px;
  --container:1220px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Plus Jakarta Sans',Arial,sans-serif;
  color:var(--ink);
  background:var(--soft);
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
img{max-width:100%}
a{color:inherit}
button{font:inherit}
.container{width:min(var(--container),calc(100% - 80px));margin:auto}

/* TOP STRIP */
.top-strip{
  background:var(--green-950);
  color:#b9c9c2;
  font-size:11px;
  letter-spacing:1.3px;
  text-transform:uppercase;
  border-bottom:1px solid rgba(212,175,55,.22);
}
.top-strip-inner{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.top-strip i{color:var(--gold);margin-right:7px}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(4,18,12,.96);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(16,185,129,.18);
  box-shadow:0 10px 35px rgba(0,0,0,.28);
}
.header-inner{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.logo-img{
  width:58px;
  height:58px;
  object-fit:contain;
  filter:drop-shadow(0 0 14px rgba(16,185,129,.35));
}
.brand-copy{display:flex;flex-direction:column}
.brand-name{
  color:#fff;
  font-weight:800;
  font-size:19px;
  letter-spacing:.8px;
}
.brand-sub{
  color:var(--gold-light);
  font-size:9px;
  font-weight:800;
  letter-spacing:2px;
  margin-top:3px;
}
.desktop-nav{display:flex;align-items:center;gap:29px}
.desktop-nav a{
  position:relative;
  color:#dbe7e1;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  padding:12px 0;
  transition:.25s ease;
}
.desktop-nav a:hover,.desktop-nav a.active{color:var(--green-light)}
.desktop-nav a:not(.nav-btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:5px;
  width:0;
  height:2px;
  background:var(--green);
  transition:.25s ease;
}
.desktop-nav a:hover::after,.desktop-nav a.active::after{width:100%}
.nav-btn{
  background:linear-gradient(135deg,var(--green),#078b65);
  color:#fff!important;
  border-radius:10px;
  padding:13px 19px!important;
  box-shadow:0 9px 25px rgba(16,185,129,.22);
}
.nav-btn:hover{transform:translateY(-2px);box-shadow:0 13px 30px rgba(16,185,129,.32)}
.nav-btn i{margin-right:6px}
.menu-toggle{
  display:none;
  width:46px;height:46px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  background:rgba(255,255,255,.05);
  cursor:pointer;
  align-items:center;justify-content:center;flex-direction:column;gap:5px;
}
.menu-toggle span{width:21px;height:2px;background:#fff;border-radius:5px}
.mobile-menu{
  position:fixed;
  inset:0 0 0 auto;
  width:min(380px,88vw);
  transform:translateX(105%);
  transition:.35s ease;
  z-index:2000;
  background:rgba(3,16,11,.985);
  backdrop-filter:blur(20px);
  box-shadow:-25px 0 70px rgba(0,0,0,.5);
  padding:100px 30px 30px;
  display:flex;flex-direction:column;gap:10px;
}
.mobile-menu.active{transform:translateX(0)}
.mobile-menu a{
  text-decoration:none;color:#fff;
  padding:17px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-weight:700;
}
.mobile-menu a:hover{color:var(--green-light)}
.close-btn{
  position:absolute;top:25px;right:25px;
  width:45px;height:45px;border:0;border-radius:50%;
  background:rgba(255,255,255,.07);color:#fff;font-size:32px;line-height:1;cursor:pointer;
}
.mobile-cta{
  background:var(--green);
  border-radius:12px;
  border:0!important;
  margin-top:15px;
  text-align:center;
}

/* TICKER */
.ticker{
  overflow:hidden;
  white-space:nowrap;
  background:linear-gradient(90deg,#020a06,#0a2419,#020a06);
  border-bottom:1px solid rgba(16,185,129,.25);
  box-shadow:inset 0 0 25px rgba(16,185,129,.08);
}
.ticker-track{
  display:inline-flex;
  align-items:center;
  gap:22px;
  min-height:40px;
  padding-left:100%;
  animation:ticker 30s linear infinite;
  color:#dce9e2;
  font-size:10px;
  font-weight:800;
  letter-spacing:2.2px;
}
.ticker-track b{color:var(--gold)}
@keyframes ticker{to{transform:translateX(-100%)}}

/* HERO */
.hero{
  position:relative;
  min-height:calc(100vh - 166px);
  height:760px;
  max-height:900px;
  overflow:hidden;
  background:#020b07;
}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  opacity:0;
  animation:heroFade 18s infinite;
}
.hero-slide-1{background-image:url('hero1.jpg');animation-delay:0s}
.hero-slide-2{background-image:url('hero2.jpg');animation-delay:6s}
.hero-slide-3{background-image:url('hero3.jpg');animation-delay:12s}
@keyframes heroFade{
  0%{opacity:0;transform:scale(1.06)}
  7%,31%{opacity:1}
  38%,100%{opacity:0;transform:scale(1)}
}
.hero-vignette{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(2,11,7,.96) 0%,rgba(2,11,7,.74) 42%,rgba(2,11,7,.18) 76%,rgba(2,11,7,.45) 100%),
    linear-gradient(0deg,rgba(2,11,7,.58),transparent 38%,rgba(2,11,7,.25));
}
.hero-pattern{
  position:absolute;inset:0;
  opacity:.13;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:70px 70px;
}
.hero-inner{height:100%;display:flex;align-items:center;position:relative;z-index:2}
.hero-content{max-width:720px;padding-bottom:15px}
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  padding:9px 14px;
  border:1px solid rgba(16,185,129,.35);
  background:rgba(16,185,129,.10);
  border-radius:999px;
  color:#7ee7bd;
  font-size:10px;font-weight:800;letter-spacing:1.7px;
  margin-bottom:22px;
  box-shadow:0 0 30px rgba(16,185,129,.10);
}
.eyebrow span{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 12px var(--green)}
.hero h1{
  color:#fff;
  font-size:clamp(44px,6vw,78px);
  line-height:1.03;
  letter-spacing:-2.5px;
  font-weight:800;
  text-shadow:0 10px 35px rgba(0,0,0,.55);
}
.hero h1 strong{color:#fff}
.hero h1 strong::after{
  content:"";
  display:block;
  width:90px;height:4px;
  margin:20px 0 20px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
.hero-content>p{
  max-width:620px;
  color:#dce7e1;
  font-size:17px;
  line-height:1.75;
  margin-bottom:30px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  min-height:52px;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:0 22px;border-radius:11px;
  text-decoration:none;font-size:12px;font-weight:800;
  letter-spacing:.25px;
  transition:.28s ease;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#14c88d,#07855f);
  box-shadow:0 12px 35px rgba(16,185,129,.25);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 17px 40px rgba(16,185,129,.36)}
.btn-glass{
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
}
.btn-glass:hover{background:rgba(255,255,255,.14);transform:translateY(-3px)}
.hero-trust{
  display:flex;gap:22px;flex-wrap:wrap;
  margin-top:35px;
  color:#b9c8c1;font-size:10px;font-weight:700;
  letter-spacing:.5px;
}
.hero-trust i{color:var(--gold);margin-right:6px}
.hero-scroll{
  position:absolute;z-index:3;bottom:22px;left:50%;
  transform:translateX(-50%);
  color:rgba(255,255,255,.55);
  display:flex;flex-direction:column;align-items:center;gap:5px;
  font-size:8px;letter-spacing:2px;
}
.hero-scroll i{color:var(--green);animation:scrollBounce 1.5s infinite}
@keyframes scrollBounce{50%{transform:translateY(5px)}}

/* GENERAL SECTIONS */
.section{padding:105px 0}
.section-heading,.legal-intro{
  display:flex;justify-content:space-between;align-items:end;gap:50px;margin-bottom:55px;
}
.section-heading>p,.legal-intro>p{
  max-width:470px;color:var(--muted);line-height:1.7;font-size:14px;
}
.section-kicker{
  display:block;color:#0b9d70;
  font-size:10px;font-weight:800;letter-spacing:2.5px;
  margin-bottom:10px;
}
.section-heading h2,.legal-intro h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.1;letter-spacing:-1.5px;color:var(--green-900);
}

/* ABOUT */
.about-section{background:linear-gradient(180deg,#fff,#f1f6f3)}
.about-grid{display:grid;grid-template-columns:430px 1fr;gap:75px;align-items:start}
.profile-panel{
  border-radius:24px;background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow);overflow:hidden;
}
.profile-photo{height:470px;position:relative;background:#fff;overflow:hidden}
.profile-photo img{width:100%;height:100%;object-fit:contain}
.photo-label{
  position:absolute;left:18px;bottom:18px;
  padding:9px 13px;border-radius:9px;
  background:rgba(3,16,11,.88);color:#fff;
  border:1px solid rgba(16,185,129,.4);
  font-size:10px;font-weight:800;letter-spacing:1px;
}
.photo-label i{color:var(--green);margin-right:6px}
.profile-meta{padding:25px 28px 20px}
.mini-label{color:#0b9d70;font-size:9px;font-weight:800;letter-spacing:2px}
.profile-meta h3{font-size:25px;margin:7px 0;color:var(--green-900)}
.profile-meta p{color:var(--muted);font-size:13px}
.profile-card-footer{
  padding:15px 28px;border-top:1px solid #edf2ef;
  color:#66736e;font-size:12px;font-weight:700;
}
.profile-card-footer i{color:var(--green);margin-right:8px}
.expertise-panel>h3{font-size:35px;margin-bottom:28px;color:var(--green-900)}
.expertise-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.expertise-card{
  background:#fff;border:1px solid var(--line);border-radius:17px;
  padding:22px;display:flex;gap:15px;
  min-height:150px;transition:.3s ease;
}
.expertise-card:hover{transform:translateY(-5px);border-color:rgba(16,185,129,.45);box-shadow:0 18px 35px rgba(3,16,11,.08)}
.expertise-card .icon{
  width:45px;height:45px;min-width:45px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;background:rgba(16,185,129,.10);
  color:#0b9d70;font-size:18px;
}
.expertise-card h4{font-size:15px;margin-bottom:7px;color:var(--green-900)}
.expertise-card p{font-size:12px;line-height:1.65;color:var(--muted)}
.dark-info-card{
  margin-top:22px;padding:20px 22px;border-radius:17px;
  display:flex;align-items:center;gap:15px;
  background:linear-gradient(135deg,#06150f,#0b291e);
  border:1px solid rgba(16,185,129,.28);
  box-shadow:0 15px 35px rgba(3,16,11,.16);
}
.dark-info-icon{
  width:50px;height:50px;border-radius:13px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);background:rgba(212,175,55,.08);
  border:1px solid rgba(212,175,55,.25);font-size:20px;
}
.dark-info-card div:last-child{display:flex;flex-direction:column}
.dark-info-card span{color:#7ee7bd;font-size:9px;font-weight:800;letter-spacing:1.5px}
.dark-info-card strong{color:#fff;font-size:14px;margin:4px 0}
.dark-info-card small{color:#93a59d;font-size:11px}

/* LEADERSHIP */
.section-dark{
  padding:110px 0;
  background:
    radial-gradient(circle at 80% 20%,rgba(16,185,129,.10),transparent 35%),
    linear-gradient(135deg,#03100b,#071d15 60%,#04120c);
  color:#fff;
}
.leadership-grid{display:grid;grid-template-columns:500px 1fr;gap:80px;align-items:center}
.leadership-photo{
  position:relative;border-radius:24px;overflow:hidden;
  border:1px solid rgba(16,185,129,.35);
  box-shadow:0 30px 70px rgba(0,0,0,.4);
}
.leadership-photo img{display:block;width:100%;height:570px;object-fit:cover}
.leadership-caption{
  position:absolute;left:18px;right:18px;bottom:18px;
  padding:15px 18px;border-radius:12px;
  background:rgba(3,16,11,.88);backdrop-filter:blur(10px);
  border:1px solid rgba(16,185,129,.3);
  display:flex;align-items:center;justify-content:center;gap:9px;
  font-size:12px;font-weight:700;
}
.leadership-caption i{color:var(--gold)}
.leadership-copy .section-kicker{color:#49dca5}
.leadership-copy h2{
  font-size:clamp(32px,4vw,50px);line-height:1.12;
  letter-spacing:-1.5px;margin-bottom:25px;
}
.leadership-copy p{color:#b8c6c0;font-size:14px;line-height:1.85;margin-bottom:17px}
.leadership-points{
  margin-top:30px;padding-top:25px;
  border-top:1px solid rgba(255,255,255,.10);
  display:grid;gap:14px;
}
.leadership-points div{display:flex;gap:11px;align-items:flex-start;color:#e6eee9;font-size:12px;font-weight:600}
.leadership-points i{color:var(--green);margin-top:2px}

/* CONTACT */
.contact-section{background:#f4f7f5}
.contact-header{text-align:center;max-width:700px;margin:0 auto 50px}
.contact-header h2{font-size:45px;color:var(--green-900);letter-spacing:-1.5px;margin-bottom:12px}
.contact-header p{color:var(--muted);font-size:14px;line-height:1.7}
.contact-grid{display:grid;grid-template-columns:1.1fr 1.1fr .8fr;gap:18px}
.contact-card{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:20px;padding:30px;box-shadow:0 15px 45px rgba(3,16,11,.06);
  overflow:hidden;
}
.card-number{
  position:absolute;right:20px;top:18px;color:#dbe9e2;font-size:10px;font-weight:800;letter-spacing:2px;
}
.contact-card h3{font-size:20px;color:var(--green-900);margin-bottom:22px}
.contact-line{
  display:flex;align-items:flex-start;gap:12px;text-decoration:none;
  color:#52615b;font-size:12px;line-height:1.6;margin:16px 0;
}
.contact-line i{color:var(--green);width:18px;margin-top:2px}
.contact-line:hover{color:#078b65}
.card-desc{color:var(--muted);font-size:12px;line-height:1.7;margin-bottom:18px}
.social-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}
.social-grid a{
  text-decoration:none;padding:11px 12px;border:1px solid #e6eee9;
  border-radius:10px;font-size:11px;font-weight:700;color:#394842;
  transition:.25s ease;
}
.social-grid a i{margin-right:6px;color:#0b9d70}
.social-grid a:hover{background:#edf9f4;border-color:rgba(16,185,129,.3);transform:translateY(-2px)}
.whatsapp-card{
  background:linear-gradient(145deg,#06150f,#0b291e);
  border-color:rgba(16,185,129,.25);color:#fff;
}
.whatsapp-card h3{color:#fff;margin-top:15px}
.whatsapp-card p{color:#aebdb6;font-size:12px;line-height:1.7;margin-bottom:22px}
.whatsapp-icon{
  width:55px;height:55px;border-radius:15px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(16,185,129,.14);border:1px solid rgba(16,185,129,.3);
  color:#42e39e;font-size:26px;
}

/* LEGAL PAGE */
.legal-hero{
  min-height:440px;
  display:flex;align-items:center;
  background:
    linear-gradient(90deg,rgba(3,16,11,.98),rgba(5,22,16,.88)),
    url('hero2.jpg') center/cover;
  color:#fff;
}
.legal-hero-inner{padding:75px 0}
.legal-hero .section-kicker{color:#54e1a8}
.legal-hero h1{
  font-size:clamp(42px,6vw,70px);line-height:1.05;
  letter-spacing:-2px;margin-bottom:20px;
}
.legal-hero h1 strong{color:#fff}
.legal-hero p{max-width:650px;color:#b9c8c1;font-size:15px;line-height:1.8}
.legal-section{padding:95px 0;background:#f4f7f5}
.legal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.legal-card{
  background:#fff;border:1px solid #e4ece8;border-radius:20px;
  padding:28px;min-height:330px;display:flex;flex-direction:column;
  box-shadow:0 15px 40px rgba(3,16,11,.06);transition:.3s ease;
}
.legal-card:hover{transform:translateY(-7px);border-color:rgba(16,185,129,.4);box-shadow:0 25px 55px rgba(3,16,11,.10)}
.case-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:25px}
.case-top span{font-size:9px;font-weight:800;letter-spacing:1.7px;color:#0b9d70}
.case-top i{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:#edf9f4;color:#0b9d70}
.legal-card h3{font-size:20px;line-height:1.35;color:var(--green-900);margin-bottom:12px}
.legal-card p{color:var(--muted);font-size:12px;line-height:1.75;margin-bottom:25px}
.read-more{
  margin-top:auto;text-decoration:none;color:#087f5b;
  font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:space-between;
  border-top:1px solid #edf2ef;padding-top:17px;
}
.read-more:hover{color:#045b41}
.legal-disclaimer{
  margin-top:30px;padding:18px 20px;
  display:flex;gap:12px;align-items:flex-start;
  border:1px solid rgba(212,175,55,.35);
  background:#fffdf5;border-radius:14px;color:#6c6038;
  font-size:11px;line-height:1.7;
}
.legal-disclaimer i{color:#b48c18;margin-top:2px}

/* FOOTER */
.footer{background:#03100b;color:#9baea5;padding:55px 0 20px;border-top:1px solid rgba(16,185,129,.16)}
.footer-top{display:flex;justify-content:space-between;gap:40px;padding-bottom:35px}
.footer-brand{color:#fff;font-size:18px;font-weight:800;margin-bottom:8px}
.footer-top p{font-size:11px;line-height:1.6;max-width:440px}
.footer-links{display:flex;gap:22px;flex-wrap:wrap}
.footer-links a{text-decoration:none;color:#9baea5;font-size:11px;font-weight:700}
.footer-links a:hover{color:#46dfa1}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;display:flex;justify-content:space-between;gap:20px;
  font-size:10px;
}
.floating-whatsapp{
  position:fixed;right:24px;bottom:24px;z-index:900;
  width:58px;height:58px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#25d366;color:#fff;text-decoration:none;font-size:27px;
  box-shadow:0 12px 35px rgba(37,211,102,.35);
  transition:.25s ease;
}
.floating-whatsapp:hover{transform:translateY(-4px) scale(1.04)}

/* RESPONSIVE */
@media(max-width:1050px){
  .container{width:min(var(--container),calc(100% - 40px))}
  .desktop-nav{gap:18px}
  .desktop-nav a{font-size:11px}
  .about-grid{grid-template-columns:360px 1fr;gap:40px}
  .leadership-grid{grid-template-columns:420px 1fr;gap:45px}
  .contact-grid{grid-template-columns:1fr 1fr}
  .whatsapp-card{grid-column:1/-1}
}
@media(max-width:900px){
  .top-strip{display:none}
  .header-inner{height:76px}
  .desktop-nav{display:none}
  .menu-toggle{display:flex}
  .logo-img{width:50px;height:50px}
  .brand-name{font-size:16px}
  .brand-sub{font-size:8px}
  .ticker-track{min-height:36px}
  .hero{min-height:calc(100vh - 112px);height:700px}
  .hero-vignette{background:linear-gradient(90deg,rgba(2,11,7,.92),rgba(2,11,7,.56)),linear-gradient(0deg,rgba(2,11,7,.7),transparent)}
  .hero-inner{align-items:center}
  .hero-content{max-width:680px}
  .hero h1{font-size:clamp(42px,10vw,64px)}
  .section{padding:75px 0}
  .section-heading,.legal-intro{display:block;margin-bottom:35px}
  .section-heading>p,.legal-intro>p{margin-top:15px}
  .about-grid{grid-template-columns:1fr}
  .profile-panel{max-width:520px;margin:auto;width:100%}
  .profile-photo{height:520px}
  .leadership-grid{grid-template-columns:1fr}
  .leadership-photo{max-width:600px;margin:auto;width:100%}
  .leadership-copy{max-width:700px;margin:auto}
  .legal-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .container{width:calc(100% - 28px)}
  .hero{height:650px}
  .hero-content>p{font-size:14px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn{width:100%}
  .hero-trust{gap:10px;display:grid;grid-template-columns:1fr 1fr}
  .hero-scroll{display:none}
  .expertise-grid{grid-template-columns:1fr}
  .profile-photo{height:450px}
  .section-dark{padding:75px 0}
  .leadership-photo img{height:430px}
  .contact-grid{grid-template-columns:1fr}
  .whatsapp-card{grid-column:auto}
  .social-grid{grid-template-columns:1fr 1fr}
  .footer-top,.footer-bottom{display:block}
  .footer-links{margin-top:25px}
  .footer-bottom span{display:block;margin-top:8px}
  .legal-hero{min-height:400px}
  .legal-section{padding:70px 0}
  .legal-grid{grid-template-columns:1fr}
  .legal-card{min-height:290px}
  .floating-whatsapp{width:54px;height:54px;right:17px;bottom:17px;font-size:24px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition:none!important}
}
