*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
      font-family:Arial, Helvetica, sans-serif;
    }

    body{
      background:linear-gradient(180deg,#f5f9fd 0%, #eef4fb 100%);
      color:#1a1a1a;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .container{
      width:90%;
      max-width:1280px;
      margin:0 auto;
    }

    header{
      position:sticky;
      top:0;
      z-index:999;
      background:rgba(255,255,255,.95);
      /* backdrop-filter:blur(12px); */
      box-shadow:0 8px 24px rgba(0,0,0,.06);
    }

    .navbar{
      min-height:84px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }

    .logo{
      height:54px;
      transition:.3s ease;
    }

    .logo:hover{
      transform:scale(1.05);
    }

    .back-link{
      font-weight:700;
      color:#123b67;
      transition:.3s;
    }

    .back-link:hover{
      color:#1b79d1;
    }

    .hero{
      position:relative;
      min-height:48vh;
      display:flex;
      align-items:center;
      background:
        linear-gradient(rgba(9,28,50,.8), rgba(9,28,50,.72)),
        url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      overflow:hidden;
    }

    .hero::before,
    .hero::after{
      content:"";
      position:absolute;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      animation:float 8s ease-in-out infinite;
    }

    .hero::before{
      width:240px;
      height:240px;
      top:10%;
      left:-70px;
    }

    .hero::after{
      width:170px;
      height:170px;
      right:-40px;
      bottom:8%;
      animation-delay:2s;
    }

    @keyframes float{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-18px)}
    }

    .hero-content{
      position:relative;
      z-index:2;
      color:#fff;
      max-width:840px;
      animation:fadeUp 1s ease;
    }

    .hero-badge{
      display:inline-block;
      padding:10px 18px;
      border-radius:999px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.18);
      margin-bottom:22px;
      font-size:14px;
      /* backdrop-filter:blur(10px); */
    }

    .hero h1{
      font-size:54px;
      line-height:1.08;
      margin-bottom:18px;
      font-weight:800;
    }

    .hero p{
      font-size:18px;
      line-height:1.7;
      max-width:760px;
      opacity:.95;
    }

    section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:50px;
    }

    .section-title span{
      display:inline-block;
      color:#1b79d1;
      font-weight:700;
      margin-bottom:12px;
      text-transform:uppercase;
      letter-spacing:1px;
      font-size:13px;
    }

    .section-title h2{
      font-size:40px;
      color:#13385d;
      margin-bottom:14px;
    }

    .section-title p{
      max-width:760px;
      margin:0 auto;
      color:#6b7b8c;
      font-size:17px;
      line-height:1.7;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .contact-card{
      background:rgba(255,255,255,.88);
      /* backdrop-filter:blur(10px); */
      border:1px solid rgba(15,76,129,.08);
      border-radius:24px;
      padding:30px;
      box-shadow:0 16px 36px rgba(0,0,0,.05);
      transition:.35s ease;
      text-align:center;
    }

    .contact-card:hover{
      transform:translateY(-10px);
      box-shadow:0 22px 44px rgba(0,0,0,.08);
    }

    .contact-icon{
      width:68px;
      height:68px;
      margin:0 auto 18px;
      border-radius:20px;
      background:linear-gradient(135deg,#1b79d1,#0f4c81);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      box-shadow:0 12px 24px rgba(27,121,209,.22);
    }

    .contact-card h3{
      font-size:22px;
      color:#153a61;
      margin-bottom:10px;
    }

    .contact-card p,
    .contact-card a{
      color:#6f8091;
      line-height:1.7;
      display:block;
    }

    .main-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:start;
    }

    .map-box,
    .form-box{
      background:#fff;
      border-radius:28px;
      overflow:hidden;
      box-shadow:0 16px 36px rgba(0,0,0,.06);
      border:1px solid rgba(15,76,129,.08);
    }

    .map-placeholder{
      min-height:520px;
      background:
        linear-gradient(rgba(15,76,129,.12), rgba(15,76,129,.12)),
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
      position:relative;
      display:flex;
      align-items:flex-end;
    }

    .map-note{
      margin:22px;
      background:rgba(255,255,255,.95);
      border-radius:18px;
      padding:18px 20px;
      max-width:260px;
      box-shadow:0 12px 28px rgba(0,0,0,.12);
      animation:float 6s ease-in-out infinite;
    }

    .map-note strong{
      display:block;
      color:#123b67;
      margin-bottom:6px;
      font-size:20px;
    }

    .map-note span{
      color:#6f8091;
      line-height:1.6;
      font-size:14px;
    }

    .form-box{
      padding:32px;
    }

    .form-box h3{
      font-size:30px;
      color:#153a61;
      margin-bottom:14px;
    }

    .form-box p{
      color:#66788a;
      line-height:1.7;
      margin-bottom:22px;
    }

    .form-grid{
      display:grid;
      gap:16px;
    }

    .input-group{
      display:grid;
      gap:8px;
    }

    .input-group label{
      font-weight:700;
      color:#153a61;
      font-size:14px;
    }

    .input-group input,
    .input-group textarea{
      width:100%;
      border:none;
      outline:none;
      background:#f4f8fd;
      border:1px solid rgba(15,76,129,.08);
      border-radius:14px;
      padding:15px 16px;
      font-size:15px;
      color:#234;
      transition:.3s ease;
    }

    .input-group input:focus,
    .input-group textarea:focus{
      border-color:#1b79d1;
      background:#fff;
      box-shadow:0 0 0 4px rgba(27,121,209,.08);
    }

    .input-group textarea{
      min-height:140px;
      resize:vertical;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:15px 28px;
      border:none;
      border-radius:14px;
      font-weight:700;
      cursor:pointer;
      transition:.35s ease;
    }

    .btn-primary{
      background:linear-gradient(135deg,#1b79d1,#0f4c81);
      color:#fff;
      box-shadow:0 14px 30px rgba(27,121,209,.35);
    }

    .btn-primary:hover{
      transform:translateY(-4px);
    }

    .info-strip{
      background:linear-gradient(135deg,#0f4c81,#143b67);
      color:#fff;
      border-radius:28px;
      padding:44px 34px;
      overflow:hidden;
      position:relative;
    }

    .info-strip::before{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      right:-60px;
      top:-60px;
    }

    .info-inner{
      position:relative;
      z-index:2;
    }

    .info-strip h3{
      font-size:34px;
      margin-bottom:14px;
    }

    .info-strip p{
      line-height:1.7;
      opacity:.95;
      margin-bottom:20px;
      max-width:760px;
    }

    .quick-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:18px;
    }

    .quick-item{
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      padding:18px;
      transition:.35s;
    }

    .quick-item:hover{
      transform:translateY(-6px);
      background:rgba(255,255,255,.14);
    }

    .quick-item h4{
      font-size:18px;
      margin-bottom:10px;
    }

    .quick-item p{
      font-size:14px;
      line-height:1.65;
      margin:0;
    }

    footer{
      background:#0d2340;
      color:#d5e3f3;
      margin-top:90px;
    }

    .footer-inner{
      padding:24px 0;
      text-align:center;
      font-size:14px;
    }

    .reveal{
      opacity:0;
      transform:translateY(40px);
      transition:all .9s ease;
    }

    .reveal.active{
      opacity:1;
      transform:translateY(0);
    }

    @keyframes fadeUp{
      from{
        opacity:0;
        transform:translateY(35px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    @media (max-width:1100px){
      .contact-grid,
      .quick-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .main-layout{
        grid-template-columns:1fr;
      }

      .hero h1{
        font-size:44px;
      }
    }

    @media (max-width:800px){
      .contact-grid,
      .quick-grid{
        grid-template-columns:1fr;
      }

      .hero h1,
      .section-title h2,
      .info-strip h3{
        font-size:32px;
      }

      .map-placeholder{
        min-height:360px;
      }
    }

    @media (max-width:560px){
      .hero h1{
        font-size:28px;
      }

      .hero p{
        font-size:16px;
      }

      .form-box{
        padding:22px;
      }

      .btn{
        width:100%;
      }
    }
  

/* ─── PAGE RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid, .features-grid, .programs-grid,
  .news-grid, .footer-grid, .steps-grid, .benefits-grid,
  .cards-grid, .partners-grid, .docs-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .hero { padding: 70px 0 !important; min-height: auto !important; }
  .hero h1, .hero h2 { font-size: 30px !important; }
  .hero p { font-size: 16px !important; }
  .hero-badge { font-size: 12px; padding: 8px 12px; }
  .section-title h2 { font-size: 28px !important; }
  .cta h2 { font-size: 26px !important; }
  .cta { padding: 50px 20px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mobility-grid, .schedule-layout, .contact-grid,
  .two-col, .split-grid { grid-template-columns: 1fr !important; }
  .sidebar { position: static !important; }
}
@media (max-width: 560px) {
  .stats-grid, .features-grid, .programs-grid,
  .news-grid, .footer-grid, .steps-grid, .benefits-grid,
  .cards-grid, .partners-grid, .docs-grid, .team-grid {
    grid-template-columns: 1fr !important;
  }
  .container { width: 95% !important; }
  .hero h1, .hero h2 { font-size: 24px !important; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr !important; }
  section { padding: 60px 0 !important; }
  .timeline-line { left: 16px !important; transform: none !important; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100% !important; left: 0 !important;
    text-align: left !important; padding: 0 0 24px 44px !important;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 6px !important; right: auto !important; }
}

/* ─── OVERFLOW / SCROLL FIX ──── */
html, body { overflow-x: hidden; max-width: 100%; }
* { max-width: 100%; }
img, video { max-width: 100%; height: auto; }
.schedule-layout { grid-template-columns: 1fr !important; }
@media (max-width: 1100px) {
  .schedule-layout { grid-template-columns: 1fr !important; }
  .sidebar { position: static !important; top: auto; }
}
@media (max-width: 768px) {
  .lesson { grid-template-columns: 1fr !important; }
  .room { align-items: flex-start !important; text-align: left !important; }
}


.map-frame{
  display:block;
  width:100%;
  min-height:520px;
  border:0;
  background:#eef6ff;
}

.map-link-wrap{
  padding:14px 18px;
  border-top:1px solid rgba(15,76,129,.08);
  background:#fff;
}

.map-link-wrap a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:8px;
  background:#0f4c81;
  color:#fff;
  font-weight:800;
  text-decoration:none;
}

.map-link-wrap a:hover{
  background:#1b79d1;
}
