:root {
    --primary: #1a3a5c;
    --secondary: #2980b9;
    --accent: #e74c3c;
    --gold: #f39c12;
    --light: #f8f9fa;
    --dark: #0d1b2a;
}
* { font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }

/* Navbar */
.navbar {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s;
}
.navbar.scrolled { padding: 6px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.navbar-brand img { height: 50px; border-radius: 8px; }
.navbar-brand span { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; color: #fff; margin-left: 10px; }
.nav-link { color: rgba(255,255,255,0.85) !important; font-weight: 500; font-size: 0.95rem; margin: 0 5px; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-cta { background: var(--accent); color: #fff !important; border-radius: 25px; padding: 8px 24px !important; }
.nav-cta:hover { background: #c0392b; }

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.85) 40%, rgba(13,27,42,0.3) 70%, transparent 100%),
                url('../images/hero-bg.png') right center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1.2; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.8); max-width: 550px; }
.hero .badge-license { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 400; display: inline-block; margin-bottom: 20px; }
.btn-hero { background: var(--accent); color: #fff; border: none; padding: 14px 36px; border-radius: 30px; font-weight: 600; font-size: 1rem; transition: all 0.3s; }
.btn-hero:hover { background: #c0392b; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(231,76,60,0.4); }
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); padding: 12px 36px; border-radius: 30px; font-weight: 600; font-size: 1rem; transition: all 0.3s; }
.btn-hero-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.flag-strip img { width: 48px; height: 32px; border-radius: 4px; object-fit: cover; margin-right: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }

/* Sections */
section { padding: 80px 0; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.section-subtitle { color: #6c757d; font-size: 1.1rem; max-width: 600px; margin: 0 auto 50px; }
.section-line { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 auto 20px; }

/* About */
.about-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); }
.about-card h3 { font-family: 'Playfair Display', serif; color: var(--primary); }
.credential-badge { background: var(--light); border-radius: 10px; padding: 15px 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.credential-badge i { font-size: 1.3rem; color: var(--secondary); }
.credential-badge .label { font-size: 0.75rem; color: #6c757d; text-transform: uppercase; letter-spacing: 1px; }
.credential-badge .value { font-weight: 600; color: var(--primary); font-size: 0.95rem; }

/* Services */
.services-section { background: var(--light); }
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: #fff; }
.service-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-card p { color: #6c757d; font-size: 0.9rem; line-height: 1.7; }

/* Countries */
.country-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.06);
}
.country-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.country-card .flag { font-size: 3rem; margin-bottom: 15px; }
.country-card h6 { font-weight: 700; color: var(--primary); }

/* Why Us */
.why-us-section { background: linear-gradient(135deg, var(--primary), var(--dark)); color: #fff; }
.why-card { text-align: center; padding: 30px 20px; }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.4rem; }
.why-card h6 { font-weight: 700; color: var(--primary); }
.why-card p { color: #6c757d; font-size: 0.88rem; }
.why-us-section .why-card h6 { color: #fff; }
.why-us-section .why-card p { color: rgba(255,255,255,0.6); }
.why-us-section .section-title { color: #fff; }

/* Contact */
.contact-section { background: var(--light); }
.contact-form-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.contact-form-card h4 { font-family: 'Playfair Display', serif; color: var(--primary); }
.form-control, .form-select { border: 2px solid #e9ecef; border-radius: 10px; padding: 12px 16px; font-size: 0.95rem; transition: border-color 0.3s; }
.form-control:focus, .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(41,128,185,0.1); }
.btn-submit { background: var(--accent); color: #fff; border: none; padding: 14px 40px; border-radius: 30px; font-weight: 600; font-size: 1rem; transition: all 0.3s; width: 100%; }
.btn-submit:hover { background: #c0392b; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(231,76,60,0.3); }
.btn-submit:disabled { opacity: 0.7; transform: none; }
.contact-info-card { background: var(--dark); border-radius: 16px; padding: 40px; color: #fff; height: 100%; }
.contact-info-card h4 { font-family: 'Playfair Display', serif; margin-bottom: 25px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 22px; }
.contact-info-item i { font-size: 1.2rem; color: var(--gold); margin-top: 3px; }
.contact-info-item .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item .value { color: #fff; font-weight: 500; }
.contact-info-item a { color: #fff; text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }

/* Footer */
footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 40px 0 20px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.3rem; color: #fff; }

/* Alert */
#formAlert { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .hero {
        min-height: 90vh;
        background: linear-gradient(to bottom, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 60%, rgba(13,27,42,0.5) 100%),
                    url('../images/hero-bg.png') right center/cover no-repeat;
    }
}
