*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Plus Jakarta Sans', sans-serif; color: #1A1A2E; background: #F8F7F4; }
    .fraunces { font-family: 'Fraunces', serif; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: #1A2744; }
    ::-webkit-scrollbar-thumb { background: #F07B1F; border-radius: 4px; }

    /* Loading */
    .loading-screen {
      position: fixed; inset: 0; background: #1A2744;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    .loading-screen.fade-out { opacity: 0; visibility: hidden; }
    .plane-wrapper {
      position: relative; width: 200px; height: 200px;
      display: flex; align-items: center; justify-content: center;
    }
    .orbit-ring {
      position: absolute; width: 140px; height: 140px;
      border: 1.5px dashed rgba(240,123,31,0.3); border-radius: 50%;
      animation: spin 4s linear infinite;
    }
    .plane-icon {
      position: absolute;
      animation: orbit 4s linear infinite;
      transform-origin: 70px 70px;
      top: calc(50% - 70px); left: calc(50% - 70px);
    }
    .planet-icon {
      position: absolute; width: 60px; height: 60px; border-radius: 50%;
      background: rgba(240,123,31,0.1); border: 1.5px solid rgba(240,123,31,0.3);
      display: flex; align-items: center; justify-content: center; font-size: 28px;
    }
    .loading-progress {
      width: 160px; height: 2px; background: rgba(255,255,255,0.1);
      border-radius: 2px; margin-top: 40px; overflow: hidden;
    }
    .loading-fill { height: 100%; background: linear-gradient(90deg, #F07B1F, #FF9441); border-radius: 2px; animation: load 2.2s ease forwards; }
    .loading-text { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-top: 16px; }
    .loading-brand { text-align: center; margin-bottom: 0; }
    .loading-brand-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 4px; }
    .loading-brand-sub { font-size: 10px; letter-spacing: 3px; color: #F07B1F; text-transform: uppercase; margin-bottom: 28px; }

    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes orbit { from { transform: rotate(0deg) translateX(70px) rotate(0deg); } to { transform: rotate(360deg) translateX(70px) rotate(-360deg); } }
    @keyframes load { from { width: 0%; } to { width: 100%; } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

    /* Nav */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(26,39,68,0.97); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(240,123,31,0.15);
      padding: 0 5%; animation: slideDown 0.5s ease;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; height: 70px; }
    .nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
    .nav-logo-icon { width: 40px; height: 40px;  border-radius: 500px; display: flex; align-items: center; justify-content: center; font-size: 20px; -webkit-border-radius: 500px; -moz-border-radius: 500px; -ms-border-radius: 500px; -o-border-radius: 500px; margin-right: 10px; }
    /* background: #F07B1F; */
    .nav-logo-text { color: white; }
    .nav-logo-text strong { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; display: block; }
    .nav-logo-text span { display: block; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: #F07B1F; }
    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nav-links li button {
      background: none; border: none; color: rgba(255,255,255,0.75);
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; font-weight: 500;
      padding: 8px 12px; border-radius: 8px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.2px;
    }
    .nav-links li button:hover, .nav-links li button.active { color: #F07B1F; background: rgba(240,123,31,0.08); }
    .nav-cta { background: #F07B1F !important; color: white !important; border-radius: 8px !important; padding: 8px 20px !important; }
    .nav-cta:hover { background: #FF9441 !important; color: white !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; display: block; }

    /* Mobile menu */
    .mobile-menu {
      position: fixed; inset: 0; background: #1A2744; z-index: 200;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
      animation: fadeIn 0.2s ease;
    }
    .mobile-menu button { background: none; border: none; color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 600; cursor: pointer; padding: 14px 32px; transition: color 0.2s; }
    .mobile-menu button:hover { color: #F07B1F; }
    .mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 28px; cursor: pointer; }

    /* Pages */
    .page { display: none; animation: fadeIn 0.4s ease; }
    .page.active { display: block; }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, #0F1A32 0%, #1A2744 50%, #243660 100%);
      min-height: 92vh; display: flex; align-items: center;
      padding: 60px 5% 80px; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(240,123,31,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid {
      max-width: 1280px; margin: 0 auto; display: grid;
      grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(240,123,31,0.12); border: 1px solid rgba(240,123,31,0.25);
      color: #F07B1F; font-size: 12px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
      margin-bottom: 24px; animation: fadeUp 0.6s ease;
    }
    .hero h1 {
      font-family: 'Fraunces', serif; font-size: clamp(38px, 5vw, 62px);
      font-weight: 700; color: white; line-height: 1.12; margin-bottom: 20px;
      animation: fadeUp 0.7s ease 0.1s both;
    }
    .hero h1 em { color: #F07B1F; font-style: italic; }
    .hero > div > div:first-child > p {
      font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65);
      max-width: 500px; margin-bottom: 36px; animation: fadeUp 0.7s ease 0.2s both;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }
    .hero-stats {
      display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08); animation: fadeUp 0.7s ease 0.4s both;
    }
    .hero-stat strong { display: block; font-size: 28px; font-weight: 700; color: #F07B1F; font-family: 'Fraunces', serif; }
    .hero-stat span { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }
    .hero-visual { animation: fadeIn 1s ease 0.3s both; position: relative; }
    .hero-card-stack { position: relative; display: flex; justify-content: center; }
    .floating-card {
      background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 20px 24px;
      color: white; position: relative; width: 100%; max-width: 360px;
    }
    .dest-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
    .dest-chip {
      background: rgba(240,123,31,0.15); border: 1px solid rgba(240,123,31,0.2);
      color: #F07B1F; font-size: 12px; font-weight: 600; padding: 5px 12px;
      border-radius: 100px; cursor: pointer; transition: all 0.2s;
    }
    .dest-chip:hover { background: rgba(240,123,31,0.25); }
    .hero-process { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
    .hero-process-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
    .hero-process-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .hero-process-num { width: 20px; height: 20px; border-radius: 50%; background: rgba(240,123,31,0.15); border: 1px solid rgba(240,123,31,0.3); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #F07B1F; font-weight: 700; flex-shrink: 0; }
    .hero-process-dot { margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: #F07B1F; }
    .hero-process-text { font-size: 13px; color: rgba(255,255,255,0.7); }
    .floating-badge {
      position: absolute;
      background: #F07B1F;
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 16px;
      border-radius: 12px;
      animation: float 3s ease-in-out infinite;
      white-space: nowrap;
      -webkit-animation: float 3s ease-in-out infinite;
}

    /* Sections */
    section { padding: 80px 5%; }
    .section-inner { max-width: 1280px; margin: 0 auto; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      color: #F07B1F; font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; margin-bottom: 14px;
    }
    .section-label::before { content: ''; width: 20px; height: 2px; background: #F07B1F; border-radius: 1px; }
    h2.section-title { font-family: 'Fraunces', serif; font-size: clamp(30px, 3.5vw, 46px); font-weight: 700; line-height: 1.18; color: #1A1A2E; margin-bottom: 16px; }
    h2.section-title.light { color: white; }
    .section-subtitle { font-size: 16.5px; color: #6B7280; line-height: 1.7; max-width: 560px; }
    .section-subtitle.light { color: rgba(255,255,255,0.6); }
    .section-header { margin-bottom: 52px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-label { justify-content: center; }
    .section-header.center .section-subtitle { margin: 0 auto; }

    /* Buttons */
    .btn-primary {
      background: #F07B1F; color: white; font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14.5px; font-weight: 600; padding: 14px 28px; border-radius: 10px;
      border: none; cursor: pointer; transition: all 0.25s; display: inline-flex;
      align-items: center; gap: 8px; letter-spacing: 0.2px; text-decoration: none;
    }
    .btn-primary:hover { background: #FF9441; transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: white; font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14.5px; font-weight: 600; padding: 14px 28px; border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
    .btn-white {
      background: white; color: #F07B1F; font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; padding: 15px 34px; border-radius: 10px;
      border: none; cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

    /* Services */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .service-card {
      background: white; border: 1px solid #E8E6E1; border-radius: 16px;
      padding: 28px; cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0; background: #1A2744;
      transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; z-index: 0;
    }
    .service-card:hover::before { transform: scaleY(1); }
    .service-card:hover { border-color: #1A2744; transform: translateY(-4px); }
    .service-card > * { position: relative; z-index: 1; }
    .service-card:hover h3, .service-card:hover p, .service-card:hover .service-arrow { color: white !important; }
    .service-icon { width: 52px; height: 52px; background: #FEF0E2; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; transition: background 0.3s; }
    .service-card:hover .service-icon { background: rgba(240,123,31,0.2); }
    .service-card h3 { font-size: 17px; font-weight: 700; color: #1A1A2E; margin-bottom: 10px; transition: color 0.3s; }
    .service-card p { font-size: 14px; color: #6B7280; line-height: 1.6; transition: color 0.3s; }
    .service-arrow { color: #F07B1F; font-size: 18px; margin-top: 16px; display: block; transition: color 0.3s; }

    /* Why Us */
    .why-us { background: #1A2744; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why-items { display: flex; flex-direction: column; gap: 28px; }
    .why-item { display: flex; gap: 18px; align-items: flex-start; }
    .why-num { min-width: 42px; height: 42px; background: rgba(240,123,31,0.12); border: 1px solid rgba(240,123,31,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #F07B1F; font-size: 14px; font-weight: 700; font-family: 'Fraunces', serif; }
    .why-item h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 6px; }
    .why-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
    .why-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
    .why-visual-label { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
    .why-visual-row { display: flex; align-items: center; gap: 16px; }
    .why-visual-icon { width: 44px; height: 44px; background: rgba(240,123,31,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .why-visual-text strong { display: block; color: white; font-size: 15px; font-weight: 600; }
    .why-visual-text span { color: rgba(255,255,255,0.4); font-size: 13px; }
    .why-visual-dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: rgba(240,123,31,0.6); }

    /* Destinations */
    .destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .dest-card { background: white; border: 1px solid #E8E6E1; border-radius: 16px; padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.3s; }
    .dest-card:hover { border-color: #F07B1F; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(240,123,31,0.12); }
    .dest-flag { font-size: 42px; margin-bottom: 12px; }
    .dest-card h3 { font-size: 16px; font-weight: 700; color: #1A1A2E; margin-bottom: 6px; }
    .dest-card p { font-size: 13px; color: #6B7280; }

    /* CTA */
    .cta-section { background: linear-gradient(135deg, #F07B1F 0%, #1A1A2E 100%); padding: 72px 5%; text-align: center; }
    .cta-section h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; color: white; margin-bottom: 16px; }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/*#FF9441*/
    /* Testimonials */
    .testimonials { background: #F8F7F4; }
    .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .testi-card { background: white; border: 1px solid #E8E6E1; border-radius: 16px; padding: 28px; }
    .testi-stars { color: #F07B1F; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-card blockquote { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 20px; font-style: italic; font-family: 'Fraunces', serif; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: #FEF0E2; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #F07B1F; font-family: 'Fraunces', serif; flex-shrink: 0; }
    .testi-name strong { display: block; font-size: 14px; font-weight: 700; color: #1A1A2E; }
    .testi-name span { font-size: 12px; color: #6B7280; }

    /* Footer */
    footer { background: #0F1A32; padding: 60px 5% 28px; }
    .footer-inner { max-width: 1280px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; }
    .footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.3px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li button { background: none; border: none; color: rgba(255,255,255,0.45); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; cursor: pointer; transition: color 0.2s; padding: 0; text-align: left; }
    .footer-col ul li button:hover { color: #F07B1F; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
    .footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }

    /* Page hero */
    .page-hero { background: linear-gradient(135deg, #0F1A32 0%, #1A2744 100%); padding: 80px 5% 70px; text-align: center; }
    .page-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 54px); font-weight: 700; color: white; margin-bottom: 14px; }
    .page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; line-height: 1.7; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 13px; }
    .breadcrumb span { color: rgba(255,255,255,0.35); }
    .breadcrumb button { background: none; border: none; color: #F07B1F; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; cursor: pointer; }

    /* Info card */
    .info-card { background: white; border: 1px solid #E8E6E1; border-radius: 16px; padding: 28px; transition: all 0.3s; }
    .info-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .info-card h3 { font-size: 18px; font-weight: 700; color: #1A1A2E; margin-bottom: 10px; }
    .info-card p { font-size: 14.5px; color: #6B7280; line-height: 1.7; }

    /* Step card */
    .step-card { display: flex; gap: 20px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid #E8E6E1; }
    .step-card:last-child { border-bottom: none; }
    .step-num { min-width: 50px; height: 50px; background: #1A2744; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #F07B1F; font-size: 20px; font-weight: 700; font-family: 'Fraunces', serif; }
    .step-card h4 { font-size: 17px; font-weight: 700; color: #1A1A2E; margin-bottom: 8px; }
    .step-card p { font-size: 14.5px; color: #6B7280; line-height: 1.65; }

    /* Team */
    .team-card { background: white; border: 1px solid #E8E6E1; border-radius: 16px; overflow: hidden; transition: all 0.3s; }
    .team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.1); }
    .team-avatar { height: 200px; background: linear-gradient(135deg, #1A2744, #243660); display: flex; align-items: center; justify-content: center; }
    .team-avatar-inner { 
      width: 90px; height: 90px; border-radius: 50%;   display: flex; 
      align-items: center; justify-content: center; font-size: 34px; font-weight: 700;  font-family: 'Fraunces', serif; }
    /* color: #F07B1F; */
    /* border: 3px solid rgba(240,123,31,0.3); background: rgba(240,123,31,0.15); */
    .team-info { padding: 24px; }
    .team-info h3 { font-size: 17px; font-weight: 700; color: #1A1A2E; margin-bottom: 4px; }
    .team-role { font-size: 13px; color: #F07B1F; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 10px; }
    .team-info p { font-size: 13.5px; color: #6B7280; line-height: 1.65; }

    /* Blog */
    .blog-card { background: white; border: 1px solid #E8E6E1; border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.3s; }
    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.08); }
    .blog-thumb { height: 180px; background: linear-gradient(135deg, #1A2744, #243660); display: flex; align-items: center; justify-content: center; font-size: 52px; }
    .blog-body { padding: 24px; }
    .blog-tag { display: inline-block; background: #FEF0E2; color: #F07B1F; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
    .blog-body h3 { font-size: 17px; font-weight: 700; color: #1A1A2E; margin-bottom: 10px; line-height: 1.4; }
    .blog-body p { font-size: 13.5px; color: #6B7280; line-height: 1.65; margin-bottom: 16px; }
    .blog-meta { font-size: 12.5px; color: #9CA3AF; display: flex; gap: 12px; }

    /* FAQ */
    .faq-item { border-bottom: 1px solid #E8E6E1; }
    .faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600; color: #1A1A2E; gap: 20px; }
    .faq-q:hover { color: #F07B1F; }
    .faq-icon { font-size: 20px; color: #F07B1F; min-width: 20px; }
    .faq-a { padding-bottom: 20px; font-size: 15px; color: #6B7280; line-height: 1.75; display: none; }
    .faq-a.open { display: block; }

    /* Contact */
    .contact-form { background: white; border: 1px solid #E8E6E1; border-radius: 20px; padding: 40px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 13.5px; font-weight: 600; color: #374151; margin-bottom: 8px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; background: #F8F7F4; border: 1.5px solid #E8E6E1; border-radius: 10px;
      padding: 12px 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px;
      color: #1A1A2E; outline: none; transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #F07B1F; }
    .form-group textarea { height: 120px; resize: vertical; }
    .contact-info-card { background: #1A2744; border-radius: 20px; padding: 36px; color: white; }
    .contact-info-card h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; margin-bottom: 24px; }
    .contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
    .contact-icon { width: 42px; height: 42px; background: rgba(240,123,31,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .contact-item strong { display: block; color: white; font-size: 15px; margin-bottom: 3px; }
    .contact-item span { color: rgba(255,255,255,0.5); font-size: 14px; white-space: pre-line; }
    .highlight-box { background: linear-gradient(135deg, rgba(240,123,31,0.08), rgba(240,123,31,0.04)); border: 1px solid rgba(240,123,31,0.15); border-radius: 16px; padding: 28px; margin-bottom: 24px; }
    .highlight-box h3 { color: #F07B1F; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .highlight-box p { font-size: 14.5px; color: #374151; line-height: 1.7; }
    .checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #374151; line-height: 1.5; }
    .check-icon { min-width: 22px; height: 22px; background: #FEF0E2; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #F07B1F; font-size: 13px; font-weight: 700; margin-top: 1px; }
    .social-pills { display: flex; gap: 10px; }
    .social-pill { background: rgba(240,123,31,0.12); border: 1px solid rgba(240,123,31,0.2); color: #F07B1F; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 8px; }
    .social-pill:hover{background:#F07B1F;color: #F8F7F4;transform:scale(1.05);}

    /* About */
    .about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 60px; }
    .about-brand-card { background: linear-gradient(135deg, #1A2744, #243660); border-radius: 20px; padding: 36px; color: white; }
    .about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
    .about-stat { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 16px; text-align: center; }
    .about-stat strong { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: #F07B1F; display: block; }
    .about-stat span { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; display: block; }
    .about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .mission-card { background: #1A2744; border-radius: 20px; padding: 36px; color: white; }
    .mission-card.light { background: #F8F7F4; color: #1A1A2E; }
    .mission-card h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; margin-bottom: 14px; }
    .mission-card.light h3 { color: #1A1A2E; }
    .mission-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }
    .mission-card.light p { color: #6B7280; }
    .mission-icon { font-size: 36px; margin-bottom: 16px; }

    /* Services page */
    .service-detail-card { background: white; border: 1px solid #E8E6E1; border-radius: 20px; padding: 32px 36px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: start; margin-bottom: 24px; }
    .service-detail-icon { width: 60px; height: 60px; background: #FEF0E2; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
    .service-detail-num { font-size: 28px; color: #E8E6E1; font-family: 'Fraunces', serif; text-align: right; flex-shrink: 0; }
    .service-detail-card h3 { font-size: 19px; font-weight: 700; color: #1A1A2E; margin-bottom: 10px; }
    .service-detail-card p { font-size: 15px; color: #6B7280; line-height: 1.7; margin-bottom: 16px; }
    .service-highlights { display: flex; gap: 10px; flex-wrap: wrap; }
    .service-highlight { background: #FEF0E2; color: #F07B1F; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 6px; }

    /* Destinations page */
    .dest-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
    .dest-detail-card { background: white; border: 1px solid #E8E6E1; border-radius: 18px; overflow: hidden; transition: all 0.3s; cursor: pointer; }
    .dest-detail-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
    .dest-header { background: linear-gradient(135deg, #1A2744, #243660); padding: 24px 28px; display: flex; align-items: center; gap: 16px; }
    .dest-header-text .name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: white; }
    .dest-header-text .type { font-size: 12px; color: #F07B1F; font-weight: 600; letter-spacing: 1px; }
    .dest-body { padding: 24px 28px; }
    .dest-body p { font-size: 14.5px; color: #6B7280; line-height: 1.7; margin-bottom: 20px; }
    .dest-meta { display: flex; gap: 16px; }
    .dest-meta-item { flex: 1; }
    .dest-meta-label { font-size: 11px; color: #9CA3AF; margin-bottom: 3px; }
    .dest-meta-value { font-size: 14px; font-weight: 600; color: #1A1A2E; }

    /* Visa page */
    .visa-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
    .visa-sidebar { position: sticky; top: 100px; }

    /* Scholarship */
    .scholarship-process { background: #1A2744; border-radius: 20px; padding: 40px; color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
    .scholarship-process-title { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; margin-bottom: 14px; }
    .scholarship-process-item { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
    .scholarship-process-num { min-width: 26px; height: 26px; border-radius: 50%; background: rgba(240,123,31,0.15); border: 1px solid rgba(240,123,31,0.25); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #F07B1F; font-weight: 700; }
    .scholarship-process-text { font-size: 14.5px; color: rgba(255,255,255,0.7); }
    .scholarship-free-box { text-align: center; }

    /* Contact success */
    .contact-success { background: white; border: 1px solid #E8E6E1; border-radius: 20px; padding: 48px; text-align: center; }
    .contact-success h2 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: #1A1A2E; margin-bottom: 12px; }
    .contact-success p { font-size: 16px; color: #6B7280; line-height: 1.7; }

    /* Responsive */
@media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-mission { grid-template-columns: 1fr; }
      .about-story-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      nav .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .visa-grid { grid-template-columns: 1fr; }
      .scholarship-process { grid-template-columns: 1fr; }
.service-detail-card { grid-template-columns: auto 1fr; }
      .service-detail-num { display: none; }
      .contact-page-grid {
    grid-template-columns: 1fr !important;
  }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
      section { padding: 60px 5%; }
      .contact-form { padding: 24px; }
    }
