@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #1A3A8C;
    --gold: #F5A800;
    --blue-dark: #122a6b;
    --gray: #f5f6fa;
    --text: #222;
    --text-light: #666;
    --border: #e0e4ef;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(26,58,140,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a,
.nav-menu > li > .nav-header {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-menu > li > .nav-header { cursor: default; }

.nav-menu > li > a:hover,
.nav-menu > li:hover > a,
.nav-menu > li:hover > .nav-header {
    background: rgba(255,255,255,0.12);
}

.nav-menu > li > a .arrow,
.nav-menu > li > .nav-header .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    display: inline-block;
    margin-top: -3px;
    transition: transform 0.2s;
}

.nav-menu > li:hover > a .arrow,
.nav-menu > li:hover > .nav-header .arrow { transform: rotate(-135deg); margin-top: 3px; }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(26,58,140,0.15);
    min-width: 220px;
    padding: 8px 0;
    list-style: none;
    border-top: 3px solid var(--gold);
}

.nav-menu > li:hover .dropdown { display: block; }

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
    background: var(--gray);
    color: var(--blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── SLIDER ─────────────────────────────────────── */
.hero-slider {
    width: 100%;
    height: 540px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,58,140,0.82) 0%, rgba(26,58,140,0.35) 70%, transparent 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    color: #fff;
}

.slide-content h1 {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 560px;
}

.slide-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: #e09800; transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-outline:hover { background: var(--blue); color: #fff; }

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(26,58,140,0.5);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px !important; }

.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ── SECTION BASE ───────────────────────────────── */
section { padding: 72px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.section-sub {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 48px;
}

.title-bar {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 16px;
}

/* ── SERVICES GRID ──────────────────────────────── */
.services-section { background: var(--gray); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 2px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    box-shadow: var(--shadow);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(245,168,0,0.18);
    transform: translateY(-4px);
}

.service-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-title .icon {
    width: 36px;
    height: 36px;
    background: rgba(26,58,140,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.service-card ul li:last-child { border-bottom: none; }

.service-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card ul li a {
    color: var(--text-light);
    transition: color 0.15s;
}

.service-card ul li a:hover { color: var(--blue); }


/* ── ABOUT ──────────────────────────────────────── */
.about-section { background: #fff; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-box {
    text-align: center;
    padding: 20px 12px;
    background: var(--gray);
    border-radius: var(--radius);
    border-top: 3px solid var(--gold);
}

.stat-box .num {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
}

.stat-box .label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ── CTA BANNER ─────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 72px 24px;
    text-align: center;
    color: #fff;
}

.cta-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 17px; opacity: 0.85; margin-bottom: 32px; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-white {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
}

.btn-white:hover { background: var(--gray); transform: translateY(-2px); }

/* ── FOOTER ─────────────────────────────────────── */
footer {
    background: #0f2260;
    color: #c8d4f0;
    padding: 56px 24px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 40px; margin-bottom: 16px; }

.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.8; max-width: 260px; }

footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }
footer ul li a:hover { opacity: 1; color: var(--gold); }
.fci-text a { transition: opacity 0.2s, color 0.2s; }
.fci-text a:hover { opacity: 1; color: var(--gold); }

.footer-contact-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.fci-icon {
    padding-top: 2px;
}

.fci-icon svg {
    width: 14px;
    height: 14px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.75;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ── PAGE CONTENT ───────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 60px 24px;
    color: #fff;
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.breadcrumb { font-size: 14px; opacity: 0.75; }
.breadcrumb a { opacity: 0.9; }
.breadcrumb span { margin: 0 8px; }

.page-content-section { padding: 64px 24px; }
.page-content-inner { max-width: 900px; margin: 0 auto; }
.page-content-inner h2 { color: var(--blue); font-size: 26px; margin-bottom: 16px; }
.page-content-inner h3 { color: var(--blue-dark); font-size: 20px; margin: 24px 0 12px; }
.page-content-inner p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.page-content-inner ul { padding-left: 20px; color: var(--text-light); margin-bottom: 16px; }
.page-content-inner ul li { margin-bottom: 8px; line-height: 1.7; }

/* ── CONTACT ────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-box {
    background: var(--gray);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .ic {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.contact-info-item .ic svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 1.75;
}


.contact-info-item h4 { font-size: 14px; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item p { font-weight: 600; color: var(--text); }

.contact-form { background: var(--gray); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--blue-dark); }

/* ── ABOUT PAGE ─────────────────────────────────── */
.about-full p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.vm-box {
    background: var(--gray);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--gold);
}
.vm-box h3 { color: var(--blue); font-size: 18px; margin-bottom: 12px; }
.vm-box p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--blue); padding: 16px; gap: 0; }
    .nav-menu.active { display: flex; }
    .nav-menu > li > a { padding: 12px 16px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .dropdown { position: static; box-shadow: none; border-radius: 0; border-top: none; background: rgba(0,0,0,0.2); }
    .nav-toggle { display: block; }
    .hero-slider { height: 360px; }
    .slide-content { padding: 0 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .hero-slider { height: 280px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
}
