/* ============================================================
   OFW Americas — Main Stylesheet
   Based on ofw-europe.com design
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-accent: #1B6B5A;
    --secondary-accent: #2B8B7A;
    --accent-coral: #E07A5F;
    --light-coral: #FDE8E0;
    --beige-light: #F8F2E5;
    --beige-hover: #FDF8EF;
    --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(224, 122, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 107, 90, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(27, 107, 90, 0.06) 20px, rgba(27, 107, 90, 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-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-logo::before {
    content: '◆';
    color: var(--accent-coral);
    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-coral);
}

.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-coral);
    transition: width 0.3s ease;
}

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

.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-accent);
    padding-left: 2rem;
}

.nav-cta {
    background: var(--primary-accent);
    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-accent);
}

.nav-cta:hover {
    background: var(--secondary-accent) !important;
    border-color: var(--secondary-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(27, 107, 90, 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-accent);
    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(27, 107, 90, 0.85) 0%, rgba(43, 139, 122, 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(224, 122, 95, 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(224, 122, 95, 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-coral);
}

.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-coral);
    color: var(--primary-accent);
    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(224, 122, 95, 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: var(--accent-coral);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.4);
    color: var(--primary-accent);
}

.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-coral);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: var(--light-coral);
    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(224, 122, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 107, 90, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(27, 107, 90, 0.06) 20px, rgba(27, 107, 90, 0.06) 22px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.mission h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-accent);
    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-coral), var(--primary-accent));
    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-accent) 0%, var(--accent-coral) 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(224, 122, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 107, 90, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(27, 107, 90, 0.06) 20px, rgba(27, 107, 90, 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-accent);
    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-coral), var(--primary-accent));
    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-coral);
    color: inherit;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-coral), var(--accent-coral));
    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(224, 122, 95, 0.2);
}

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

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px; right: -2px;
    width: 12px; height: 12px;
    background: var(--primary-accent);
    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-accent);
    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-accent) 0%, var(--secondary-accent) 100%);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(224, 122, 95, 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(224, 122, 95, 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-coral);
    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-accent);
    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-coral);
    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-coral);
}

.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-accent), var(--accent-coral));
    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-accent);
    margin-bottom: 0.2rem;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-accent);
    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(224, 122, 95, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 122, 95, 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-coral);
}

.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-coral);
}

.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-accent) 0%, var(--secondary-accent) 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;
    max-width: 700px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================================
   CONTENT SECTION (content pages body)
   ============================================================ */
.content-section {
    padding: 6rem 2rem;
    background: var(--neutral-50);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(224, 122, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 107, 90, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(27, 107, 90, 0.06) 20px, rgba(27, 107, 90, 0.06) 22px);
}

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

.content-section h2 {
    text-align: center;
    color: var(--primary-accent);
    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-coral);
    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);
}

/* --- 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-coral);
}

.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-accent);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-align: left;
}

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

.content-card p {
    margin: 0.5rem 0;
    line-height: 1.7;
    color: var(--neutral-700);
}

.content-card ul,
.content-card ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.content-card li {
    margin: 0.3rem 0;
    line-height: 1.7;
}

.content-card .highlight-box {
    background: var(--neutral-100);
    border-left: 4px solid var(--accent-coral);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}


.info-card h3 {
    color: var(--primary-accent);
    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-coral);
    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-coral);
    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-accent);
    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-coral);
    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-coral);
}

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

.embassy-card h3 {
    color: var(--primary-accent);
    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-coral);
}

.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-accent);
    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-coral);
    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-coral);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.hotline-number {
    font-size: 1.
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-accent);
    letter-spacing: 1px;
}

/* ============================================================
   Table Styles — Alternating Row Colours
   ============================================================ */

.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    background: var(--white);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    line-height: 1.6;
}

.table-wrap thead {
    background: var(--primary-accent);
}

.table-wrap thead th {
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-coral);
    white-space: nowrap;
    border-bottom: 2px solid var(--secondary-accent);
}

.table-wrap tbody tr {
    transition: background 0.15s ease;
}

/* Alternating rows: white (even) and light beige (odd) */
.table-wrap tbody tr:nth-child(even) {
    background: var(--white);
}

.table-wrap tbody tr:nth-child(odd) {
    background: var(--beige-light); /* light beige */
}

/* Hover state for all rows */
.table-wrap tbody tr:hover {
    background: var(--light-coral);
}

.table-wrap tbody td {
    padding: 0.8rem 1.2rem;
    vertical-align: top;
    border-bottom: 1px solid var(--neutral-200);
}

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

.table-wrap tbody td:first-child {
    font-weight: 600;
    color: var(--primary-accent);
}

/* Responsive table caption / note */
.table-wrap + p,
.table-wrap + .table-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--neutral-700);
    font-style: italic;
}

/* ============================================================
   Back to Top
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-accent);
    color: var(--accent-coral);
    border: 2px solid var(--accent-coral);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ============================================================
   Disclaimer Box
   ============================================================ */

.disclaimer {
    background: var(--light-coral);
    border-left: 4px solid var(--accent-coral);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--neutral-700);
    margin-top: 2rem;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE NAV — Mobile
   ============================================================ */

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

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-bottom: 1px solid var(--neutral-200);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > li > a,
    .nav-links > li > span {
        padding: 0.8rem 0;
        font-size: 1.05rem;
        width: 100%;
    }

    /* Dropdown on mobile */
    .nav-dropdown {
        position: static;
    }

    .nav-dropdown > span {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-dropdown > span::before {
        content: '▸';
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > span::before {
        transform: rotate(90deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        margin: 0;
        min-width: auto;
        display: none;
        background: transparent;
        transition: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        border-left: 2px solid var(--neutral-200);
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        border-left-color: var(--accent-coral);
    }

    .nav-cta {
        display: none;
    }

    /* Show CTA inside mobile menu instead */
    .nav-links.open .nav-cta-mobile {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
}

.nav-cta-mobile {
    display: none;
}
