/* Palette: Passport Navy, Gold, White */
:root {
    --navy: #283593;
    --dark-navy: #1A237E;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-grey: #F4F4F4;
    --text: #333333;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--light-grey);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }

/* Header */
.linked-header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--navy); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 5px; }
.gold { color: var(--gold); }
.icon-link { font-size: 1.2rem; transform: rotate(45deg); display: inline-block; }

.global-nav a { margin-left: 25px; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; color: #555; }
.global-nav a:hover, .global-nav a.active { color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.btn-gold { background: var(--gold); color: var(--white) !important; padding: 10px 25px; border-radius: 4px; font-weight: 700; }
.btn-gold:hover { background: var(--navy); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--navy); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 260px; height: 100%; background: var(--navy); z-index: 2000; display: flex; flex-direction: column; padding: 30px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--gold); font-size: 2rem; background: none; border: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { color: var(--white); font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 900px) {
    .global-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-global { height: 80vh; background-size: cover; background-position: center; position: relative; }
.blue-overlay { width: 100%; height: 100%; background: linear-gradient(rgba(40, 53, 147, 0.8), rgba(26, 35, 126, 0.8)); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { color: var(--white); max-width: 800px; padding: 20px; }
.status-badge { border: 1px solid var(--gold); color: var(--gold); padding: 5px 15px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; }
.hero-content p { font-size: 1.2rem; color: #E8EAF6; margin-bottom: 40px; font-weight: 300; }

.cta-group { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 15px 35px; font-weight: 700; border-radius: 4px; }
.btn-secondary { border: 1px solid var(--white); color: var(--white); padding: 13px 35px; font-weight: 700; border-radius: 4px; }
.btn-secondary:hover { background: var(--white); color: var(--navy); }

/* Services */
.section-title h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--navy); margin-bottom: 15px; }
.gold-line { width: 80px; height: 3px; background: var(--gold); margin: 0 auto; }
.gold-line.left { margin: 20px 0; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.service-card { background: var(--white); padding: 40px 25px; text-align: center; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border-top: 4px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-top-color: var(--gold); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
.service-card a { color: var(--gold); font-weight: 700; font-size: 0.9rem; }

/* Stats Bar */
.why-bar { background: var(--navy); color: var(--white); padding: 50px 0; margin-top: 50px; }
.why-flex { display: flex; justify-content: space-around; text-align: center; }
.why-item strong { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--gold); }
.why-item span { font-size: 0.9rem; letter-spacing: 1px; }

/* Citizenship Layout */
.content-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 8px; }
.main-text h1 { font-family: var(--font-head); color: var(--navy); }
.option-list { margin-top: 30px; }
.opt-item { background: var(--light-grey); padding: 20px; margin-bottom: 15px; border-left: 4px solid var(--gold); }
.price { font-weight: 700; color: var(--navy); font-size: 1.2rem; display: block; margin-bottom: 5px; }

.sidebar-box { background: var(--navy); color: var(--white); padding: 30px; border-radius: 8px; }
.sidebar-box h3 { font-family: var(--font-head); color: var(--gold); margin-bottom: 20px; text-align: center; }
.steps { list-style: none; padding: 0; }
.steps li { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; font-size: 0.9rem; }
.btn-full { display: block; background: var(--gold); color: var(--navy); text-align: center; padding: 12px; font-weight: 700; border-radius: 4px; margin-top: 20px; }

/* Residence Grid */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.info-card { background: var(--white); padding: 30px; border: 1px solid #eee; border-radius: 8px; }
.info-card.highlight { border-color: var(--gold); background: #fffdf5; }
.info-card h3 { font-family: var(--font-head); color: var(--navy); margin-bottom: 10px; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 60px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.contact-text h2 { font-family: var(--font-head); color: var(--navy); }
.contact-details p { margin-bottom: 10px; color: #555; }

.global-form .form-group { margin-bottom: 20px; }
.global-form label { display: block; font-weight: 700; margin-bottom: 5px; font-size: 0.9rem; color: var(--navy); }
.global-form input, .global-form select, .global-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-body); }
.submit-btn { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 15px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: var(--gold); }

/* Legal Doc */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 8px; }
.legal-doc h1 { font-family: var(--font-head); color: var(--navy); }
.legal-doc h3 { color: var(--gold); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.linked-footer { background: #1A237E; color: #C5CAE9; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #303F9F; padding-bottom: 30px; margin-bottom: 20px; }
.f-info h4 { color: var(--white); font-family: var(--font-head); letter-spacing: 1px; }
.f-links a { margin-left: 20px; color: var(--gold); font-size: 0.9rem; }
.copyright { text-align: center; font-size: 0.8rem; opacity: 0.8; }

/* Cookie */
.cookie-global { position: fixed; bottom: 20px; left: 20px; background: var(--navy); color: var(--white); padding: 15px 25px; border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-global.active { display: flex; }
.cookie-global button { background: var(--gold); color: var(--navy); border: none; padding: 8px 20px; font-weight: 700; border-radius: 2px; cursor: pointer; }

@media (max-width: 900px) {
    .grid-3, .content-layout, .contact-wrapper, .card-grid, .why-flex { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .why-flex { gap: 30px; }
}