/* ============================================================
   OFW Europe — Main Stylesheet
   Based on ofworiginal design
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0A2463;
    --secondary-blue: #1E4A8A;
    --accent-gold: #D4AF37;
    --light-gold: #F5E6D3;
    --neutral-50: #F8F7F5;
    --neutral-100: #F0EDE8;
    --neutral-200: #E5E5E5;
    --neutral-700: #404040;
    --neutral-900: #171717;
    --white: #FDFCFA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--neutral-700);
    background: var(--neutral-50);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(10, 36, 99, 0.06) 20px, rgba(10, 36, 99, 0.06) 22px);
    background-attachment: fixed;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-logo::before {
    content: '◆';
    color: var(--accent-gold);
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-logo-accent {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links > li > a,
.nav-links > li > span {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-links > li > a::after,
.nav-links > li > span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover,
.nav-links > li > span:hover {
    color: var(--primary-blue);
}

.nav-links > li > a:hover::after,
.nav-links > li > span:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown > span::before {
    content: '▾';
    font-size: 0.8rem;
    order: 2;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    color: var(--neutral-700);
    display: block;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--neutral-50);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.nav-cta {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.nav-cta:hover {
    background: var(--secondary-blue) !important;
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 36, 99, 0.2);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 0.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    margin-top: 80px;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.85) 0%, rgba(30, 74, 138, 0.85) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08));
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #C49B2D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: var(--light-gold);
    border-radius: 20px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
    padding: 8rem 2rem;
    background: var(--neutral-50);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(10, 36, 99, 0.06) 20px, rgba(10, 36, 99, 0.06) 22px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.mission p {
    font-size: 1.25rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    padding: 6rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    border-radius: 2px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--neutral-700);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   SERVICES / RESOURCE CARDS
   ============================================================ */
.services {
    padding: 8rem 2rem;
    background: var(--white);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(10, 36, 99, 0.06) 20px, rgba(10, 36, 99, 0.06) 22px);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--neutral-700);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
    color: inherit;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-gold), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-blue);
    fill: none;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px; right: -2px;
    width: 12px; height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

/* ============================================================
   COMMUNITY SECTION
   ============================================================ */
.community-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.community-section::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.community-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-text {
    color: var(--white);
}

.community-text h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.community-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.community-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.community-benefits li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.community-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--neutral-200);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--light-gold);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--neutral-700);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================================
   PAGE HEADER (content pages)
   ============================================================ */
.page-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================
   CONTENT SECTION (content pages body)
   ============================================================ */
.content-section {
    padding: 6rem 2rem;
    background: var(--neutral-50);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(10, 36, 99, 0.06) 20px, rgba(10, 36, 99, 0.06) 22px);
}

.content-section .container {
    padding: 0 1rem;
}

.content-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

/* ============================================================
   CONTENT CARDS
   ============================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-card p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.info-card ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--neutral-100);
}

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

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Rights cards */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.rights-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.rights-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rights-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

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

.rights-card li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    line-height: 1.6;
}

.rights-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Embassy cards */
.embassy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.embassy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.embassy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.embassy-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.embassy-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.embassy-info p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.embassy-info a {
    color: var(--accent-gold);
}

.embassy-info a:hover {
    text-decoration: underline;
}

.embassy-services {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-200);
}

.embassy-services h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.embassy-services ul {
    list-style: none;
    padding: 0;
}

.embassy-services li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.embassy-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Emergency */
.emergency-alert {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.emergency-alert h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.emergency-number {
    font-size: 5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hotline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hotline-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hotline-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hotline-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1rem 0;
}

.country-emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.country-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.emergency-list {
    list-style: none;
    padding: 0;
}

.emergency-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-200);
    font-size: 0.95rem;
}

.emergency-list li:last-child {
    border-bottom: none;
}

/* Warning section */
.warning-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(153, 27, 27, 0.05));
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.warning-section h2 {
    text-align: center;
    color: #991b1b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warning-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.warning-card h4 {
    color: #991b1b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.warning-card li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
}

.warning-card li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #dc2626;
}

/* Disclaimer */
.disclaimer {
    background: rgba(10, 36, 99, 0.04);
    border: 1px solid var(--neutral-200);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--neutral-700);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Table */
.table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table-wrap thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.table-wrap thead th {
    color: var(--white);
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.table-wrap tbody tr {
    border-bottom: 1px solid var(--neutral-200);
    transition: background 0.2s ease;
}

.table-wrap tbody tr:last-child {
    border-bottom: none;
}

.table-wrap tbody tr:nth-child(even) {
    background: var(--neutral-50);
}

.table-wrap tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.table-wrap tbody td {
    padding: 0.85rem 1.2rem;
    color: var(--neutral-700);
    line-height: 1.5;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-hero {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-section {
    padding: 6rem 2rem;
    background: var(--neutral-50);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(10, 36, 99, 0.06) 20px, rgba(10, 36, 99, 0.06) 22px);
}

.blog-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.blog-section-header p {
    color: var(--neutral-700);
    font-size: 1.1rem;
}

.blog-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--neutral-200);
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
    border-left-color: var(--accent-gold);
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--accent-gold);
}

.blog-card p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: var(--accent-gold);
}

/* Blog post page */
.blog-post-header {
    margin-top: 80px;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.blog-post-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header .post-meta {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-post-header .post-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-post-body {
    padding: 5rem 2rem;
    background: var(--neutral-50);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(10, 36, 99, 0.06) 20px, rgba(10, 36, 99, 0.06) 22px);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-back {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-back:hover {
    color: var(--accent-gold);
}

.post-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--neutral-700);
}

.post-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.post-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin: 2rem 0 0.8rem;
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content ul, .post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-content ul {
    list-style: none;
    padding-left: 0;
}

.post-content ul li {
    padding: 0.4rem 0 0.4rem 1.8rem;
    position: relative;
}

.post-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.post-content ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
}

.post-content ol li {
    counter-increment: item;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.post-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 1.6rem; height: 1.6rem;
    background: var(--accent-gold);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.1rem;
}

.post-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--accent-gold);
}

.post-cta {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.post-cta h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.post-disclaimer {
    font-size: 0.85rem;
    color: var(--neutral-700);
    opacity: 0.7;
    font-style: italic;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-200);
}

/* ============================================================
   CONTAINER NARROW
   ============================================================ */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================================
   CARD / CONTENT-CARD (used by content pages)
   ============================================================ */
.card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.content-card {
    border-left: 4px solid var(--accent-gold);
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.content-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin: 1.5rem 0 0.5rem;
}

.content-card p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.content-card ul, .content-card ol {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 1.2rem;
}

.content-card ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.6;
}

.content-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.content-card a {
    color: var(--accent-gold);
}

.content-card a:hover {
    text-decoration: underline;
    color: var(--primary-blue);
}

/* Tag badges (embassy page) */
.tag {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--accent-gold);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0.1rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(10, 36, 99, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .community-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .community-text h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        padding: 1rem 2rem 2rem;
        border-bottom: 1px solid var(--neutral-200);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        gap: 0;
    }

    .nav-links.open li {
        border-bottom: 1px solid var(--neutral-100);
    }

    .nav-links.open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        background: transparent;
    }

    .nav-cta { display: none; }

    .hero { padding: 4rem 1.5rem 3rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }

    .mission { padding: 4rem 1.5rem; }
    .mission h2 { font-size: 2rem; }
    .mission p { font-size: 1.1rem; }

    .services { padding: 4rem 1.5rem; }
    .services-header h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }

    .testimonials { padding: 4rem 1.5rem; }
    .testimonials-header h2 { font-size: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .page-header { padding: 3rem 1.5rem; }
    .page-header h1 { font-size: 2rem; }

    .content-section { padding: 3rem 1.5rem; }
    .content-section h2 { font-size: 1.8rem; }

    .blog-hero { padding: 3rem 1.5rem; }
    .blog-hero h1 { font-size: 2rem; }

    .blog-post-header { padding: 3rem 1.5rem; }
    .blog-post-header h1 { font-size: 1.8rem; }
    .blog-post-body { padding: 3rem 1.5rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stat-number { font-size: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .emergency-alert { padding: 2rem 1.5rem; }
    .emergency-number { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .rights-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .embassy-grid { grid-template-columns: 1fr; }
}
