:root{
  --primary:#001676;
  --secondary:#D6C084;
  --dark:#0f1222;
  --muted:#667085;
  --bg:#ffffff;
  --light:#f6f7fb;
  --shadow:0 14px 34px rgba(15,18,34,.10);
  --shadow2:0 26px 70px rgba(0,0,0,.18);
  --radius:16px;
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{max-width:100%;overflow-x:hidden}
body{
  font-family:'Poppins',sans-serif;
  color:var(--dark);
  background:var(--bg);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:92%;max-width:1200px;margin:auto}

/* TOPBAR */
.topbar{background:var(--primary);color:#fff;font-size:13px}
.topbar-inner{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 0;gap:12px
}
.topbar-left a{opacity:.92;margin-right:14px}
.topbar-right{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.sep{opacity:.7}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.brand-logo{
  height:74px;
  width:auto;
  object-fit:contain;
}

/* NAV */
.nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
}
.nav a{
  font-size:13px;
  font-weight:800;
  color:#1f2a44;
  padding:10px 10px;
  border-radius:10px;
  white-space:nowrap;
  transition:.2s ease;
}
.nav a:hover{background:rgba(0,22,118,.06)}
.nav a.active{
  background:rgba(0,22,118,.08);
  color:var(--primary);
}
.nav-cta{margin-left:4px}

/* BUTTON */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  border:2px solid transparent;
  transition:.2s ease;
}
.btn-sm{padding:10px 14px}
.btn-primary{
  background:var(--primary);
  color:#fff;
}
.btn-primary:hover{transform:translateY(-2px)}
.btn-secondary{
  background:var(--secondary);
  color:#111;
}
.btn-secondary:hover{transform:translateY(-2px)}
.btn-outline-dark{
  background:#fff;
  border-color:rgba(15,18,34,.14);
  color:var(--dark);
}
.btn-outline-dark:hover{transform:translateY(-2px)}

/* MOBILE NAV */
.nav-toggle{display:none}
.hamburger{
  display:none;width:44px;height:44px;border:1px solid rgba(0,0,0,.10);
  border-radius:12px;position:relative;cursor:pointer;background:#fff
}
.hamburger span{display:block;width:20px;height:2px;background:var(--primary);border-radius:2px;position:absolute;left:12px;transition:transform .3s ease,opacity .2s ease,top .3s ease}
.hamburger span:nth-child(1){top:14px}
.hamburger span:nth-child(2){top:21px}
.hamburger span:nth-child(3){top:28px}

/* HERO */
.lgs-hero{
  position:relative;
  padding:86px 0;
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(214,192,132,.16), transparent 60%),
    radial-gradient(700px 400px at 85% 30%, rgba(214,192,132,.08), transparent 60%),
    linear-gradient(135deg,#001676 0%, #001044 100%);
  color:#fff;
  overflow:hidden;
}
.lgs-hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:32px;
  align-items:center;
}
.hero-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(214,192,132,.16);
  border:1px solid rgba(214,192,132,.38);
  font-size:12px;
  font-weight:800;
  margin-bottom:16px;
}
.lgs-hero h1{
  font-size:50px;
  line-height:1.12;
  font-weight:900;
  margin-bottom:14px;
  max-width:680px;
}
.lgs-hero h1 span{color:var(--secondary)}
.hero-text{
  font-size:17px;
  opacity:.95;
  max-width:640px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.hero-tags span{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;
  font-weight:800;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero-panel{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:24px;
  box-shadow:0 24px 50px rgba(0,0,0,.16);
  backdrop-filter:blur(10px);
}
.hero-stat{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.hero-stat:last-of-type{border-bottom:none}
.hero-stat strong{
  font-size:34px;
  line-height:1;
  font-weight:900;
  color:var(--secondary);
}
.hero-stat span{
  font-size:13px;
  font-weight:700;
  text-align:right;
  opacity:.95;
}
.hero-note{
  margin-top:16px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  font-size:13px;
  font-weight:600;
  opacity:.96;
}

/* SECTIONS */
.section{padding:78px 0}
.light{background:var(--light)}
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 36px;
}
.section-head h2{
  font-size:34px;
  line-height:1.2;
  color:var(--primary);
  font-weight:900;
  margin-bottom:8px;
}
.section-head p{
  color:var(--muted);
  font-weight:600;
}

/* HIGHLIGHTS */
.highlight-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.highlight-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:.22s ease;
}
.highlight-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(15,18,34,.12);
}
.card-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:rgba(0,22,118,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:14px;
}
.highlight-card h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
}
.highlight-card p{
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.process-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:.22s ease;
}
.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(15,18,34,.12);
}
.step-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  height:36px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(0,22,118,.08);
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}
.process-card h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
}
.process-card p{
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}

/* DUAL */
.dual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.dual-card{
  border-radius:24px;
  padding:28px;
  min-height:320px;
  box-shadow:var(--shadow2);
}
.dual-label{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}
.dual-card h3{
  font-size:28px;
  line-height:1.2;
  font-weight:900;
  margin-bottom:16px;
}
.dual-card ul{padding-left:18px}
.dual-card li{
  margin:10px 0;
  font-size:14px;
  font-weight:600;
}
.dark-card{
  background:linear-gradient(135deg,#001676,#000f42);
  color:#fff;
}
.dark-card .dual-label{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
}
.gold-card{
  background:linear-gradient(135deg,#f3e5bc,#d6c084);
  color:#1a1a1a;
}
.gold-card .dual-label{
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.08);
}

/* FINAL CTA */
.final-cta{
  padding:70px 0;
  background:linear-gradient(135deg, rgba(214,192,132,.95), rgba(214,192,132,.72));
}
.final-cta-box{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:20px;
  align-items:center;
}
.cta-logo{
  width:140px;
  height:auto;
}
.cta-center h2{
  font-size:34px;
  line-height:1.15;
  font-weight:900;
  color:#111;
  margin-bottom:8px;
}
.cta-center p{
  color:#2b2b2b;
  font-weight:600;
}

/* FOOTER */
.footer{
  background:#0b0f2e;
  color:#fff;
}
.footer-grid{
  padding:48px 0 28px;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
}
.footer-col{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}
.footer-col h4{
  font-size:14px;
  font-weight:900;
  margin-bottom:12px;
}
.footer-brand-link{
  display:inline-flex;
  align-items:center;
  margin-bottom:12px;
}
.footer-logo-img{
  height:108px;
  width:auto;
  object-fit:contain;
}
.footer-desc{
  opacity:.9;
  font-size:13px;
  font-weight:600;
  line-height:1.7;
}
.footer-links{
  list-style:none;
  display:grid;
  gap:8px;
}
.footer-links a{
  display:inline-block;
  padding:8px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:800;
  opacity:.94;
}
.footer-links a:hover{background:rgba(255,255,255,.07)}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-contact a,
.footer-contact span{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:800;
  opacity:.94;
}
.footer-social{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.footer-social a{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  font-weight:900;
}
.footer-social a:hover{background:rgba(255,255,255,.10)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:16px 0 22px;
}
.footer-bottom-inner{text-align:center}
.footer-bottom-inner p{
  font-size:13px;
  opacity:.88;
  font-weight:600;
}

/* RESPONSIVE */
@media (max-width:1100px){
  .highlight-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:1040px){
  .lgs-hero-grid{grid-template-columns:1fr}
  .dual-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .final-cta-box{grid-template-columns:1fr; text-align:center}
  .cta-left,.cta-right{display:flex;justify-content:center}
}

@media (max-width:860px){
  .topbar-inner{flex-direction:column;align-items:flex-start}
  .topbar-right{font-size:11px;gap:6px}
  .topbar-right .sep{display:none}
  .topbar-left{font-size:11px}
  .topbar-left a{margin-right:8px}
  .brand-logo{height:100px}

  .nav ul{
    position:absolute;
    left:0;right:0;top:100%;
    background:#fff;
    padding:14px;
    display:none;
    flex-direction:column;
    gap:6px;
    border-bottom:1px solid rgba(0,0,0,.06);
  }
  .hamburger{display:flex}
  .nav-toggle:checked ~ .nav ul{display:flex}

  .lgs-hero{padding:70px 0}
  .lgs-hero h1{font-size:36px}
  .section-head h2{font-size:28px}
}

@media (max-width:560px){
  .highlight-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn,
  .btn-sm{
    width:100%;
  }

  .footer-logo-img{height:72px}
  .cta-logo{width:110px}
  .cta-center h2{font-size:28px}
}






/* NAV genel yapı */
.nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
}

.nav ul li{
  position:relative;
}

.nav a{
  font-size:13px;
  font-weight:800;
  color:#1f2a44;
  padding:10px 10px;
  border-radius:10px;
  white-space:nowrap;
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav a:hover{
  background:rgba(0,22,118,.06);
}

.nav a.active{
  background:rgba(0,22,118,.08);
  color:var(--primary);
}

/* DROPDOWN */
.dropdown-toggle{
  cursor:pointer;
}

.dropdown-arrow{
  font-size:11px;
  line-height:1;
  transition:.2s ease;
}

.nav-dropdown:hover .dropdown-arrow{
  transform:rotate(180deg);
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(15,18,34,.12);
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:4px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.22s ease;
  z-index:200;
}

.dropdown-menu li{
  width:100%;
}

.dropdown-menu a{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  color:#1f2a44;
  background:transparent;
}

.dropdown-menu a:hover{
  background:rgba(0,22,118,.06);
  color:var(--primary);
}

.nav-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Mobil */
@media (max-width: 860px){
  .nav ul{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:#fff;
    padding:14px;
    display:none;
    flex-direction:column;
    gap:6px;
    border-bottom:1px solid rgba(0,0,0,.06);
    align-items:stretch;
  }

  .nav-toggle:checked ~ .nav ul{
    display:flex;
  }

  .nav ul li{
    width:100%;
  }

  .nav a{
    width:100%;
    justify-content:space-between;
  }

  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border:none;
    padding:6px 0 0 12px;
    margin-top:4px;
    display:flex;
    background:transparent;
    min-width:100%;
  }

  .dropdown-menu a{
    background:rgba(0,22,118,.04);
  }

  .nav-dropdown:hover .dropdown-arrow{
    transform:none;
  }

  .nav-dropdown:hover .dropdown-menu{
    transform:none;
  }
}






.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

/* logo görseli */
.brand-logo{
  height:124px;        /* header yüksekliğine göre ideal */
  width:auto;
  display:block;
  object-fit:contain;
}

/* İstersen mobilde biraz küçülsün */
@media (max-width: 860px){
  .brand-logo{
    height:100px;
  }
}

/* FLOATING BUTTONS */
.float-buttons{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-end;
}
.float-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  text-decoration:none;
  box-shadow:0 6px 24px rgba(0,0,0,.18);
  transition:transform .2s,box-shadow .2s;
}
.float-btn:hover{
  transform:scale(1.06);
  box-shadow:0 8px 32px rgba(0,0,0,.25);
}
.float-btn-icon{
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.float-btn-call{
  background:#25D366;
  color:#fff;
}
.float-btn-call .float-btn-icon{
  background:#1fba59;
}
.float-btn-wa{
  background:#25D366;
  color:#fff;
}
.float-btn-wa .float-btn-icon{
  background:#1fba59;
}
@media(max-width:520px){
  .float-buttons{right:14px;bottom:14px;gap:10px}
}

/* ===== MODERN MOBILE MENU (OVERRIDE) ===== */
@media (max-width:860px){
  .header{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .header-inner{padding:10px 0}
  .brand-logo{height:100px !important}

  .hamburger{
    display:block;
    z-index:110;
    position:relative;
    background:#fff;
    margin-left:auto;
  }
  .nav-toggle:checked ~ .hamburger{
    position:fixed;
    top:18px;
    right:24px;
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(1){
    top:21px;transform:rotate(45deg);
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(2){
    opacity:0;
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(3){
    top:21px;transform:rotate(-45deg);
  }

  .nav::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(15,18,34,.5);
    z-index:99;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease,visibility .3s ease;
    pointer-events:none;
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);
  }
  .nav-toggle:checked ~ .nav::before{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .nav > ul{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:auto !important;
    width:320px;
    max-width:88vw;
    background:#fff !important;
    padding:76px 20px 32px !important;
    display:flex !important;
    flex-direction:column !important;
    gap:4px !important;
    z-index:100;
    box-shadow:-8px 0 40px rgba(0,0,0,.18);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    border-bottom:none !important;
    visibility:hidden;
  }
  .nav-toggle:checked ~ .nav > ul{
    transform:translateX(0) !important;
    visibility:visible;
  }

  .nav > ul li{
    width:100%;
  }

  .nav > ul > li > a{
    width:100%;
    display:flex !important;
    align-items:center;
    gap:8px;
    padding:11px 14px !important;
    font-size:14px !important;
    font-weight:700;
    border-radius:10px;
    color:#1f2a44;
    justify-content:flex-start;
    white-space:normal;
    transition:background .15s ease,color .15s ease;
    border:1px solid transparent;
    min-height:42px;
  }
  .nav > ul > li > a:hover,
  .nav > ul > li > a:active{
    background:rgba(0,22,118,.06);
    color:var(--primary);
  }

  .nav .nav-cta,
  .nav a.btn.btn-secondary{
    margin-top:16px !important;
    text-align:center !important;
    justify-content:center !important;
    padding:14px 16px !important;
    font-size:15px !important;
    font-weight:900 !important;
    border-radius:12px;
    background:var(--secondary) !important;
    color:#0b0b0b !important;
    border:2px solid transparent !important;
  }

  .nav-dropdown > .dropdown-toggle{
    justify-content:space-between !important;
  }

  .dropdown-menu{
    position:static !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    box-shadow:none !important;
    border:none !important;
    padding:6px 0 4px 16px !important;
    margin-top:0;
    display:flex !important;
    flex-direction:column;
    background:transparent !important;
    min-width:100%;
    gap:2px;
  }
  .dropdown-menu li{
    width:100%;
  }
  .dropdown-menu a{
    background:rgba(0,22,118,.04) !important;
    padding:9px 12px !important;
    font-size:13px !important;
    font-weight:700 !important;
    border-radius:8px;
    color:#1f2a44 !important;
    min-height:38px;
    display:flex !important;
    align-items:center;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:active{
    background:rgba(0,22,118,.08) !important;
    color:var(--primary) !important;
  }

  .nav-dropdown:hover .dropdown-arrow{transform:none !important}
  .nav-dropdown:hover .dropdown-menu{transform:none !important}

  body.menu-open{overflow:hidden}
}