/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #fafafa;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    background: #1b2d4a;
    color: #b8c7e0;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1b2d4a;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.logo-highlight { color: #4a90d9; }
.nav-list { display: flex; gap: 32px; }
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90d9;
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: #1b2d4a; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    padding: 10px 24px;
    text-align: center;
}
.btn-sm { font-size: 0.82rem; padding: 8px 20px; }
.btn-lg { font-size: 1rem; padding: 14px 36px; }
.btn-block { width: 100%; }
.btn-primary {
    background: #1b2d4a;
    color: white;
    border-color: #1b2d4a;
}
.btn-primary:hover {
    background: #2a4470;
    border-color: #2a4470;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,45,74,0.2);
}
.btn-outline {
    background: transparent;
    color: #1b2d4a;
    border-color: #1b2d4a;
}
.btn-outline:hover {
    background: #1b2d4a;
    color: white;
    transform: translateY(-2px);
}
.btn-white {
    background: white;
    color: #1b2d4a;
    border-color: white;
}
.btn-white:hover {
    background: #f0f4ff;
    border-color: #f0f4ff;
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1b2d4a;
    border-radius: 2px;
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    filter: brightness(0.3) saturate(1.1);
    transform: scale(1.05);
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f1a2e 0%, rgba(15,26,46,0.6) 50%, rgba(15,26,46,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 720px;
}
.hero-badge {
    display: inline-block;
    background: rgba(74,144,217,0.2);
    border: 1px solid rgba(74,144,217,0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #8ab8f0;
    margin-bottom: 24px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.text-highlight {
    background: linear-gradient(135deg, #4a90d9, #7bb3f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.15rem;
    color: #c0cfe0;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 0.82rem; color: #8a9bb0; margin-top: 4px; }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* === PARTNERS === */
.partners {
    padding: 60px 0;
    background: #f5f6fa;
    text-align: center;
}
.partners-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 28px;
}
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    flex-wrap: wrap;
}
.partner-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1b2d4a;
    opacity: 0.3;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}
.partner-item:hover { opacity: 0.6; }

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    background: rgba(74,144,217,0.1);
    color: #4a90d9;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1b2d4a;
    margin-bottom: 16px;
}
.section-desc {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* === SERVICES === */
.services { padding: 100px 0; background: white; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #f8f9fc;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(27,45,74,0.08);
    border-color: rgba(74,144,217,0.15);
    background: white;
}
.service-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.service-icon svg { width: 60px; height: 60px; }
.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1b2d4a;
    margin-bottom: 10px;
}
.service-desc { font-size: 0.9rem; color: #666; line-height: 1.7; }

/* === ABOUT === */
.about { padding: 100px 0; background: #f5f6fa; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image { position: relative; }
.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s;
}
.about-image-main:hover img { transform: scale(1.03); }
.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(74,144,217,0.3);
}
.about-text { color: #555; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}
.about-feature svg { flex-shrink: 0; }

/* === CTA === */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1b2d4a 0%, #2a4470 100%);
    text-align: center;
}
.cta-content { max-width: 620px; margin: 0 auto; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-desc { color: #b0c4e0; font-size: 1.1rem; margin-bottom: 32px; }

/* === TESTIMONIALS === */
.testimonials { padding: 100px 0; background: white; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: #f8f9fc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.testimonial-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #4a90d9; color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #1b2d4a; }
.testimonial-author span { font-size: 0.78rem; color: #888; }

/* === CONTACT === */
.contact { padding: 100px 0; background: #f5f6fa; }
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e4e8;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90d9;
    box-shadow: 0 0 0 3px rgba(74,144,217,0.1);
    background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: #4a90d9; }
.form-checkbox label { font-weight: 400; font-size: 0.85rem; color: #555; }
.form-checkbox a { color: #4a90d9; text-decoration: underline; }
.form-note { font-size: 0.78rem; color: #999; margin-top: 12px; text-align: center; }
.form-note a { color: #4a90d9; text-decoration: underline; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.contact-info-card h4 { font-size: 0.9rem; font-weight: 700; color: #1b2d4a; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.88rem; color: #555; line-height: 1.7; }
.contact-info-card a { color: #4a90d9; }
.contact-info-card a:hover { text-decoration: underline; }

/* === FOOTER === */
.footer {
    background: #0f1a2e;
    color: #b0c4e0;
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo .logo-text { color: #d0dcee; }
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
    color: #8a9bb0;
}
.footer-desc strong { color: #c0d0e4; }
.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.88rem; color: #8a9bb0; transition: color 0.2s; }
.footer-links ul li a:hover { color: white; }
.footer-middle { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); text-align: center; }
.footer-company-info p { margin-bottom: 4px; font-size: 0.85rem; color: #8a9bb0; }
.footer-company-info a { color: #8ab8f0; }
.footer-middle p { font-size: 0.85rem; color: #8a9bb0; }
.footer-middle a { color: #8ab8f0; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.82rem; color: #6a7b90; }

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: white;
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    width: calc(100% - 48px);
    display: none;
}
.cookie-consent.show { display: flex; }
.cookie-consent p { font-size: 0.85rem; color: #555; line-height: 1.5; flex: 1; }
.cookie-consent a { color: #4a90d9; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* === PAGE CONTENT === */
.page-hero {
    background: linear-gradient(135deg, #1b2d4a, #2a4470);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.page-hero p { color: #b0c4e0; font-size: 0.9rem; }
.page-content { padding: 60px 0 100px; background: white; }
.page-content .container { max-width: 800px; }
.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1b2d4a;
    margin: 40px 0 16px;
    padding-top: 8px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 12px 0 20px 24px; }
.page-content ul li, .page-content ol li { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 8px; }
.page-content a { color: #4a90d9; text-decoration: underline; }
.page-content a:hover { color: #1b2d4a; }
.page-content strong { color: #333; }
.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem; }
.policy-table th { background: #f5f6fa; text-align: left; padding: 12px 16px; font-weight: 700; color: #1b2d4a; border-bottom: 2px solid #e0e4e8; }
.policy-table td { padding: 10px 16px; border-bottom: 1px solid #eee; color: #555; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 80px 32px 32px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 999;
    }
    .nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; }
    .nav-link { font-size: 1rem; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { min-height: 80vh; padding: 100px 0 60px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-scroll { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-accent { right: 0; bottom: -24px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .cookie-consent { flex-direction: column; text-align: center; bottom: 16px; }
    .cookie-actions { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .contact-form { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
