 
    :root{
      --primary:#0e2a47;
      --primary-2:#163b63;
      --accent:#f28b2c;
      --accent-2:#ffb25b;
      --light:#f6f8fb;
      --card:#ffffff;
      --text:#243447;
      --muted:#65758b;
      --line:#e8edf4;
      --shadow:0 20px 60px rgba(11,34,58,.10);
      --shadow-lg:0 24px 70px rgba(11,34,58,.16);
      --container:1240px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Poppins',sans-serif;
      background:var(--light);
      color:var(--text);
      line-height:1.7;
      overflow-x:hidden;
    }

    img{max-width:100%;display:block}
    a{text-decoration:none}
    button,input,textarea,select{font-family:'Poppins',sans-serif}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .topbar{
      background:#0a2036;
      color:#dbe5ef;
      font-size:14px;
      position:relative;
      z-index:90;
    }
    .topbar-wrap{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:10px 0;
      flex-wrap:wrap;
    }
    .topbar-left,.topbar-right{
      display:flex;
      gap:18px;
      align-items:center;
      flex-wrap:wrap;
    }
    .topbar a{color:#dbe5ef}
    .topbar .icon-text{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }

    .navbar{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(14px);
      background:rgba(255,255,255,.94);
      border-bottom:1px solid rgba(232,237,244,.95);
      box-shadow:0 10px 30px rgba(14,42,71,.05);
    }
    .nav-wrap{
      display:grid;
      grid-template-columns:220px 1fr 220px;
      align-items:center;
      gap:20px;
      min-height:92px;
    }

    .brand{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      min-width:0;
      line-height:0;
    }
    .site-logo{
      display:block;
      width:auto;
      height:68px;
      max-width:220px;
      object-fit:contain;
    }

    .nav-menu{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:44px;
      flex-wrap:wrap;
      min-width:0;
    }
    .nav-menu a{
      color:var(--text);
      font-weight:600;
      font-size:15px;
      position:relative;
      letter-spacing:.1px;
      white-space:nowrap;
    }
    .nav-menu a:hover{color:var(--primary)}
    .nav-menu a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-10px;
      width:0;
      height:2px;
      background:var(--accent);
      transition:.28s ease;
      border-radius:999px;
    }
    .nav-menu a:hover::after{width:100%}

    .nav-cta{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:12px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:14px 24px;
      border-radius:999px;
      font-weight:600;
      transition:.25s ease;
      border:1px solid transparent;
      cursor:pointer;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      color:#fff;
      box-shadow:0 14px 30px rgba(242,139,44,.28);
    }
    .btn-primary:hover{transform:translateY(-2px)}
    .btn-outline{
      background:#fff;
      color:var(--primary);
      border-color:#d7e0ea;
    }
    .btn-outline:hover{border-color:var(--primary)}

    .mobile-toggle{
      display:none;
      width:50px;
      height:50px;
      border-radius:16px;
      border:1px solid #d7e0ea;
      background:#fff;
      color:var(--primary);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow:0 8px 20px rgba(14,42,71,.08);
      transition:.25s ease;
      position:relative;
      overflow:hidden;
    }
    .mobile-toggle .line{
      position:absolute;
      width:20px;
      height:2px;
      background:var(--primary);
      border-radius:10px;
      transition:.28s ease;
    }
    .mobile-toggle .line:nth-child(1){transform:translateY(-6px)}
    .mobile-toggle .line:nth-child(2){transform:translateY(0)}
    .mobile-toggle .line:nth-child(3){transform:translateY(6px)}
    .mobile-toggle.active .line:nth-child(1){transform:rotate(45deg)}
    .mobile-toggle.active .line:nth-child(2){opacity:0}
    .mobile-toggle.active .line:nth-child(3){transform:rotate(-45deg)}

    .mobile-overlay{
      position:fixed;
      inset:0;
      background:rgba(8,20,36,.45);
      backdrop-filter:blur(8px);
      opacity:0;
      visibility:hidden;
      transition:.3s ease;
      z-index:120;
    }
    .mobile-overlay.show{
      opacity:1;
      visibility:visible;
    }

    .mobile-panel{
      position:fixed;
      top:0;
      right:0;
      width:min(390px, 92vw);
      height:100vh;
      background:linear-gradient(180deg,#ffffff 0%, #f7fafe 100%);
      box-shadow:-20px 0 60px rgba(11,34,58,.20);
      transform:translateX(100%);
      transition:.36s cubic-bezier(.22,.61,.36,1);
      z-index:130;
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .mobile-panel.show{transform:translateX(0)}
    .mobile-panel-top{
      padding:20px 20px 16px;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .mobile-panel-brand{
      display:flex;
      align-items:center;
      min-width:0;
    }
    .mobile-panel-logo{
      display:block;
      width:auto;
      height:44px;
      max-width:170px;
      object-fit:contain;
    }
    .mobile-close{
      width:44px;
      height:44px;
      border:none;
      border-radius:14px;
      background:rgba(255,255,255,.12);
      color:#fff;
      font-size:24px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }
    .mobile-panel-body{
      padding:18px 20px 24px;
      overflow:auto;
    }
    .mobile-card{
      background:#fff;
      border:1px solid #e7eef6;
      box-shadow:0 14px 34px rgba(11,34,58,.08);
      border-radius:22px;
      padding:12px;
      margin-bottom:16px;
    }
    .mobile-menu-list{
      display:grid;
      gap:6px;
    }
    .mobile-menu-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 14px;
      border-radius:16px;
      color:var(--text);
      font-weight:600;
      transition:.22s ease;
    }
    .mobile-menu-link:hover{
      background:#f3f7fc;
      color:var(--primary);
    }
    .mobile-menu-link span:last-child{
      color:#9db0c2;
      font-size:18px;
      line-height:1;
    }
    .mobile-panel-actions{
      display:grid;
      gap:10px;
      margin-top:8px;
    }

    .hero{
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(105deg, rgba(10,28,48,.88), rgba(14,42,71,.78)),
        url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      color:#fff;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:auto auto -120px -80px;
      width:320px;
      height:320px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      filter:blur(2px);
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:60px -100px auto auto;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(242,139,44,.16);
      filter:blur(10px);
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:38px;
      align-items:center;
      min-height:720px;
      padding:72px 0;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      border-radius:999px;
      padding:10px 16px;
      font-size:13px;
      font-weight:600;
      letter-spacing:.2px;
      margin-bottom:18px;
    }
    .hero h1{
      margin:0 0 18px;
      font-size:clamp(34px, 5vw, 64px);
      line-height:1.08;
      letter-spacing:-1px;
      font-weight:800;
    }
    .hero p{
      margin:0 0 14px;
      font-size:17px;
      color:#e6eef7;
      max-width:760px;
    }
    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .hero-mini{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:34px;
      max-width:760px;
    }
    .hero-mini .mini{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(10px);
      padding:16px 18px;
      border-radius:18px;
    }
    .hero-mini strong{
      display:block;
      font-size:22px;
      margin-bottom:4px;
    }
    .hero-mini span{
      color:#dce8f4;
      font-size:13px;
    }

    .hero-panel{
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(10px);
      border-radius:30px;
      padding:24px;
      box-shadow:0 20px 60px rgba(0,0,0,.18);
    }
    .hero-panel-card{
      background:#fff;
      color:var(--text);
      border-radius:24px;
      overflow:hidden;
    }
    .hero-panel-card img{
      width:100%;
      height:250px;
      object-fit:cover;
    }
    .hero-panel-body{
      padding:22px;
    }
    .hero-panel-body h3{
      margin:0 0 8px;
      color:var(--primary);
      font-size:24px;
      line-height:1.2;
    }
    .hero-panel-body p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .hero-badges span{
      font-size:12px;
      padding:8px 12px;
      border-radius:999px;
      background:#f2f6fb;
      color:var(--primary);
      font-weight:600;
    }

    .section{padding:90px 0}
    .section-sm{padding:70px 0}
    .section-head{
      max-width:860px;
      margin:0 auto 34px;
      text-align:center;
    }
    .section-head .eyebrow{
      display:inline-block;
      color:var(--accent);
      font-weight:700;
      font-size:13px;
      letter-spacing:.8px;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .section-head h2{
      margin:0 0 14px;
      color:var(--primary);
      font-size:clamp(28px, 4vw, 46px);
      line-height:1.15;
      letter-spacing:-.7px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:17px;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:30px;
      align-items:center;
    }
    .about-media{
      position:relative;
      border-radius:28px;
      overflow:hidden;
      min-height:520px;
      box-shadow:var(--shadow);
    }
    .about-media img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .about-floating{
      position:absolute;
      right:22px;
      bottom:22px;
      background:#fff;
      border-radius:22px;
      box-shadow:0 20px 50px rgba(11,34,58,.14);
      padding:18px 18px 16px;
      width:min(320px, calc(100% - 44px));
    }
    .about-floating strong{
      display:block;
      color:var(--primary);
      font-size:20px;
      margin-bottom:6px;
    }
    .about-floating p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .about-content .eyebrow{
      display:inline-block;
      color:var(--accent);
      text-transform:uppercase;
      font-weight:700;
      font-size:13px;
      letter-spacing:.8px;
      margin-bottom:12px;
    }
    .about-content h2{
      margin:0 0 16px;
      color:var(--primary);
      font-size:clamp(30px, 4vw, 46px);
      line-height:1.15;
    }
    .about-content p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:16px;
    }
    .feature-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:22px;
    }
    .feature-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:16px 18px;
      box-shadow:0 10px 25px rgba(11,34,58,.05);
    }
    .feature-item strong{
      display:block;
      color:var(--primary);
      margin-bottom:5px;
      font-size:15px;
    }
    .feature-item span{
      color:var(--muted);
      font-size:14px;
    }

    .stats-wrap{
      background:linear-gradient(135deg, #0f2946, #173f69);
      border-radius:32px;
      padding:28px;
      box-shadow:0 25px 70px rgba(14,42,71,.18);
    }
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .stat-card{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.12);
      border-radius:24px;
      padding:28px 20px;
      color:#fff;
      text-align:center;
      backdrop-filter:blur(10px);
    }
    .stat-card strong{
      display:block;
      font-size:34px;
      margin-bottom:6px;
      letter-spacing:-.5px;
    }
    .stat-card span{
      font-size:14px;
      color:#d8e6f5;
    }

    .services-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }
    .service-card{
      background:#fff;
      border-radius:26px;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:.28s ease;
      border:1px solid rgba(232,237,244,.8);
    }
    .service-card:hover{
      transform:translateY(-8px);
      box-shadow:0 28px 70px rgba(11,34,58,.14);
    }
    .service-card img{
      width:100%;
      height:220px;
      object-fit:cover;
    }
    .service-body{
      padding:24px;
    }
    .service-body h3{
      margin:0 0 10px;
      color:var(--primary);
      font-size:24px;
      line-height:1.2;
    }
    .service-body p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
    }
    .service-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .service-points span{
      background:#f4f7fb;
      color:var(--primary);
      font-size:12px;
      font-weight:600;
      padding:8px 12px;
      border-radius:999px;
    }
    .service-link{
      color:var(--accent);
      font-weight:700;
      font-size:14px;
    }

    .problem-columns{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      margin-bottom:24px;
    }
    .problem-column{
      background:#fff;
      border-radius:24px;
      padding:28px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
    }
    .problem-column h3{
      margin:0 0 8px;
      color:var(--primary);
      font-size:24px;
      line-height:1.25;
    }
    .problem-column p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }

    .problem-card-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .problem-box{
      background:#fff;
      border-radius:20px;
      padding:22px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
      min-height:230px;
      transition:.25s ease;
    }
    .problem-box:hover{
      transform:translateY(-5px);
      box-shadow:0 22px 50px rgba(11,34,58,.12);
    }
    .problem-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:14px;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      font-size:20px;
      margin-bottom:16px;
    }
    .problem-box h4{
      margin:0 0 8px;
      color:var(--primary);
      font-size:18px;
      line-height:1.35;
    }
    .problem-box p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }

    .process-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:22px;
    }
    .process-card{
      background:#fff;
      border-radius:24px;
      padding:28px 24px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
    }
    .process-card::before{
      content:"";
      position:absolute;
      right:-20px;
      top:-20px;
      width:80px;
      height:80px;
      border-radius:50%;
      background:rgba(242,139,44,.10);
    }
    .process-no{
      width:52px;
      height:52px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      font-weight:800;
      margin-bottom:16px;
    }
    .process-card h3{
      margin:0 0 10px;
      color:var(--primary);
      font-size:20px;
    }
    .process-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }

    .branch-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }
    .branch-card{
      background:#fff;
      border-radius:24px;
      padding:26px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
      transition:.25s ease;
    }
    .branch-card:hover{transform:translateY(-5px)}
    .branch-top{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:16px;
    }
    .branch-icon{
      width:52px;
      height:52px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      color:#fff;
      font-size:22px;
      font-weight:800;
      flex:0 0 auto;
    }
    .branch-card h3{
      margin:0;
      color:var(--primary);
      font-size:22px;
      line-height:1.2;
    }
    .branch-meta{
      display:grid;
      gap:12px;
    }
    .branch-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      background:#f8fafc;
      border:1px solid #edf2f7;
      border-radius:16px;
      padding:14px 16px;
    }
    .branch-item .mini-icon{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:#eef4fb;
      color:var(--primary);
      font-size:16px;
      flex:0 0 auto;
      margin-top:2px;
    }
    .branch-item strong{
      display:block;
      color:var(--primary);
      font-size:14px;
      margin-bottom:3px;
    }
    .branch-item span,
    .branch-item a{
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }

    .cta{
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg, rgba(14,42,71,.94), rgba(22,59,99,.94)),
        url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      color:#fff;
      border-radius:36px;
      padding:54px;
      box-shadow:0 28px 80px rgba(14,42,71,.20);
    }
    .cta::before{
      content:"";
      position:absolute;
      left:-60px;
      bottom:-60px;
      width:200px;
      height:200px;
      border-radius:50%;
      background:rgba(255,255,255,.06);
    }
    .cta-wrap{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:24px;
      align-items:center;
    }
    .cta h2{
      margin:0 0 12px;
      font-size:clamp(28px, 4vw, 46px);
      line-height:1.1;
      color:#fff;
      letter-spacing:-.6px;
    }
    .cta p{
      margin:0;
      color:#e4eef8;
      font-size:17px;
      max-width:740px;
    }
    .cta-actions{
      display:flex;
      justify-content:flex-end;
      gap:14px;
      flex-wrap:wrap;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:26px;
    }
    .contact-card{
      background:#fff;
      border-radius:28px;
      padding:32px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
    }
    .contact-card h3{
      margin:0 0 12px;
      color:var(--primary);
      font-size:28px;
    }
    .contact-card p{
      margin:0 0 14px;
      color:var(--muted);
    }
    .contact-list{
      display:grid;
      gap:14px;
      margin-top:18px;
    }
    .contact-item{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:16px 18px;
      background:#f8fafc;
      border:1px solid #edf2f7;
      border-radius:18px;
    }
    .contact-icon-box{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      color:#fff;
      font-size:18px;
      flex:0 0 auto;
    }
    .contact-item strong{
      display:block;
      color:var(--primary);
      margin-bottom:4px;
    }
    .contact-item span, .contact-item a{
      color:var(--muted);
      font-size:15px;
    }

    .map-card{
      overflow:hidden;
      padding:0;
    }
    .map-card-head{
      padding:26px 26px 14px;
    }
    .map-card-head h3{
      margin:0 0 8px;
      color:var(--primary);
      font-size:28px;
    }
    .map-card-head p{
      margin:0;
      color:var(--muted);
    }
    .map-frame{
      width:100%;
      height:420px;
      border:0;
      display:block;
    }

    .footer{
      background:linear-gradient(135deg,#091b2d 0%, #0e2a47 55%, #163b63 100%);
      color:#dce7f3;
      position:relative;
      overflow:hidden;
    }
    .footer::before{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      border-radius:50%;
      background:rgba(255,255,255,.04);
      left:-100px;
      top:-80px;
    }
    .footer::after{
      content:"";
      position:absolute;
      width:320px;
      height:320px;
      border-radius:50%;
      background:rgba(242,139,44,.08);
      right:-100px;
      bottom:-100px;
    }
    .footer-main{
      position:relative;
      z-index:1;
      padding:70px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr .95fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand img{
      height:62px;
      width:auto;
      object-fit:contain;
      margin-bottom:18px;
    }
    .footer-brand p{
      margin:0 0 18px;
      color:#d4dfeb;
      font-size:15px;
      max-width:420px;
    }
    .footer-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-badges span{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      border-radius:999px;
      color:#fff;
      font-size:12px;
      font-weight:600;
    }
    .footer-col h4{
      margin:0 0 16px;
      color:#fff;
      font-size:18px;
      font-weight:700;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a,
    .footer-links span{
      color:#d4dfeb;
      font-size:14px;
      transition:.2s ease;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .footer-contact{
      display:grid;
      gap:12px;
    }
    .footer-contact-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.06);
    }
    .footer-contact-icon{
      width:36px;
      height:36px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      color:#fff;
      font-size:16px;
      flex:0 0 auto;
    }
    .footer-contact-item strong{
      display:block;
      color:#fff;
      font-size:14px;
      margin-bottom:2px;
    }
    .footer-contact-item a,
    .footer-contact-item span{
      color:#d4dfeb;
      font-size:14px;
      line-height:1.6;
    }
    .footer-bottom{
      position:relative;
      z-index:1;
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:#c7d5e3;
      font-size:13px;
    }

    .whatsapp-float{
      position:fixed;
      right:18px;
      bottom:18px;
      width:68px;
      height:68px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,#1ecf74,#0ea960);
      box-shadow:0 18px 40px rgba(14,169,96,.30);
      z-index:95;
      transition:.25s ease;
      overflow:hidden;
      isolation:isolate;
    }
    .whatsapp-float::before{
      content:"";
      position:absolute;
      inset:-40% auto auto -120%;
      width:70%;
      height:180%;
      transform:rotate(25deg);
      background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
      animation:shine 2.8s linear infinite;
      z-index:1;
      pointer-events:none;
    }
    .whatsapp-float::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:50%;
      box-shadow:0 0 0 0 rgba(30,207,116,.45);
      animation:pulseRing 2.2s infinite;
      z-index:0;
    }
    .whatsapp-float:hover{transform:translateY(-5px) scale(1.04)}
    .whatsapp-float svg{
      width:30px;
      height:30px;
      fill:#fff;
      position:relative;
      z-index:2;
    }

    .modal-overlay{
      position:fixed;
      inset:0;
      background:rgba(9,22,38,.56);
      backdrop-filter:blur(8px);
      opacity:0;
      visibility:hidden;
      transition:.28s ease;
      z-index:200;
      padding:20px;
    }
    .modal-overlay.show{
      opacity:1;
      visibility:visible;
    }
    .modal-box{
      width:min(760px, 100%);
      max-height:calc(100vh - 40px);
      overflow:auto;
      margin:40px auto 0;
      background:#fff;
      border-radius:28px;
      box-shadow:0 35px 90px rgba(11,34,58,.22);
      transform:translateY(24px) scale(.98);
      transition:.28s ease;
    }
    .modal-overlay.show .modal-box{
      transform:translateY(0) scale(1);
    }
    .modal-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      padding:26px 26px 12px;
    }
    .modal-head h3{
      margin:0 0 6px;
      color:var(--primary);
      font-size:28px;
      line-height:1.2;
    }
    .modal-head p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .modal-close{
      width:46px;
      height:46px;
      border:none;
      border-radius:14px;
      background:#f4f7fb;
      color:var(--primary);
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }
    .modal-body{
      padding:0 26px 26px;
    }
    .form-grid{
      display:grid;
      gap:14px;
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field{
      width:100%;
      border:1px solid #dfe7f1;
      background:#fff;
      color:var(--text);
      padding:15px 16px;
      border-radius:16px;
      font:inherit;
      outline:none;
      transition:.2s ease;
    }
    .field:focus{
      border-color:#9fb8d4;
      box-shadow:0 0 0 4px rgba(14,42,71,.06);
    }
    textarea.field{
      min-height:140px;
      resize:vertical;
    }
    .modal-actions{
      display:flex;
      justify-content:flex-end;
      gap:12px;
      flex-wrap:wrap;
      margin-top:8px;
    }

    @keyframes shine{
      0%{left:-120%}
      100%{left:170%}
    }
    @keyframes pulseRing{
      0%{box-shadow:0 0 0 0 rgba(30,207,116,.42)}
      70%{box-shadow:0 0 0 18px rgba(30,207,116,0)}
      100%{box-shadow:0 0 0 0 rgba(30,207,116,0)}
    }

    @media (max-width: 1180px){
      .nav-wrap{
        grid-template-columns:110px 1fr 190px;
      }
      .nav-menu{gap:28px}
    }

    @media (max-width: 1100px){
      .hero-grid,
      .about-grid,
      .cta-wrap,
      .contact-grid{
        grid-template-columns:1fr;
      }
      .services-grid,
      .branch-grid,
      .problem-card-grid,
      .footer-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .process-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .stats-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .cta-actions{justify-content:flex-start}
    }

    @media (max-width: 980px){
      .nav-wrap{
        grid-template-columns:1fr auto;
      }
      .nav-menu,
      .nav-cta{
        display:none;
      }
      .mobile-toggle{
        display:flex;
      }
      .nav-wrap{min-height:78px}
    }

    @media (max-width: 768px){
      .hero-grid{
        min-height:auto;
        padding:58px 0 54px;
        grid-template-columns:1fr;
      }
      .hero-mini,
      .services-grid,
      .problem-columns,
      .problem-card-grid,
      .process-grid,
      .stats-grid,
      .feature-list,
      .branch-grid,
      .contact-grid,
      .footer-grid,
      .form-row{
        grid-template-columns:1fr;
      }
      .section{padding:72px 0}
      .cta{padding:36px 24px}
      .contact-card,
      .map-card-head{
        padding:24px;
      }
      .about-media{min-height:380px}
      .topbar{
        font-size:13px;
      }
      .topbar-wrap{
        justify-content:center;
        text-align:center;
      }
      .topbar-left,.topbar-right{
        justify-content:center;
      }
      .site-logo{
        height:48px;
        max-width:150px;
      }
      .whatsapp-float{
        width:62px;
        height:62px;
        right:14px;
        bottom:14px;
      }
      .whatsapp-float svg{
        width:28px;
        height:28px;
      }
      .modal-head,
      .modal-body{
        padding-left:20px;
        padding-right:20px;
      }
      .modal-box{
        border-radius:22px;
        margin-top:20px;
      }
    }
    /* Yukarı Çık Butonu */
.scroll-to-top {
  position: fixed;
  bottom: 90px; /* WhatsApp butonunun üstünde durması için kritik değer */
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #0e2a47; /* Sitenizin ana lacivert/mavi tonu */
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 998; /* Modal'ın altında, normal içeriklerin üstünde kalması için */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Sayfa aşağı kaydırıldığında butonu görünür yapacak class */
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #1a4a78; /* Hover durumunda biraz daha açık bir ton */
  transform: translateY(-3px); /* Hover'da hafif yukarı kalkma efekti */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
}

/* Mobil cihazlarda WhatsApp butonu yeri değişiyorsa burayı revize edebilirsiniz */
@media (max-width: 768px) {
  .scroll-to-top {
    right: 15px;
    bottom: 85px; 
    width: 40px;
    height: 40px;
  }
}
 .nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

.nav-dropdown-btn{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(14px);
  width:320px;
  background:#fff;
  border:1px solid rgba(14,42,71,.10);
  border-radius:20px;
  box-shadow:0 24px 70px rgba(14,42,71,.18);
  padding:12px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.22s ease;
  z-index:999;
}

.nav-dropdown:hover .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(8px);
}

.nav-dropdown-menu a{
  display:block;
  padding:11px 14px;
  border-radius:13px;
  color:#243447;
  font-size:14px;
  font-weight:600;
  line-height:1.35;
}

.nav-dropdown-menu a:hover{
  background:#f3f7fb;
  color:#0e2a47;
}

.mobile-service-group{
  margin:8px 0;
  padding:12px;
  border-radius:18px;
  background:#f6f8fb;
  border:1px solid #e8edf4;
}

.mobile-service-title{
  font-size:13px;
  font-weight:800;
  color:#0e2a47;
  margin:0 0 8px;
  padding:0 4px;
}

.mobile-sub-link{
  font-size:13px;
  padding:10px 12px !important;
  background:#fff;
  margin-bottom:7px;
  border-radius:13px;
}

@media(max-width:991px){
  .nav-dropdown{
    display:none;
  }
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  z-index: 9999;
  animation: pulse 2s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}