@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-navy: #001f3f;
    --primary-navy-light: #003366;
    --accent-yellow: #ffcc00;
    --accent-yellow-hover: #e6b800;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-mid: #e9ecef;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0;
    box-shadow: var(--shadow-soft);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--primary-navy);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-btn {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: left;
}

/* Subpage Hero */
.page-hero {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn.secondary {
    background: var(--primary-navy);
    color: var(--white);
    border: 1px solid var(--accent-yellow);
}

.cta-btn.secondary:hover {
    background: var(--primary-navy-light);
    border-color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.about h2 {
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 1.5rem;
}

.vision-mission {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--gray-mid);
}

.tabs h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tabs h3::before {
    content: '';
    width: 20px;
    height: 3px;
    background: var(--accent-yellow);
}

.tab-content {
    margin-bottom: 2rem;
}

.tab-content:last-child {
    margin-bottom: 0;
}

/* Services Overview */
.services-overview {
    background: var(--white);
}

.services-overview h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

/* Wallet CTA */
.wallet-cta {
    background: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.wallet-cta h6 {
    color: var(--accent-yellow);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.wallet-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.wallet-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Values */
.values h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.value-card {
    text-align: left;
    padding: 2.5rem;
}

.value-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 1rem;
}

/* Cards & Sections */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--gray-mid);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.card i {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Service Detail Blocks */
.service-details {
    padding: 100px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block:nth-child(even) .service-image {
    order: -1;
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.service-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Process Section */
.process-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.process-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 31, 63, 0.05);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.process-item h3 {
    margin: 1.5rem 0 1rem;
    color: var(--primary-navy);
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info img {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links h4 {
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 5rem;
    }

    .service-block:nth-child(even) .service-image {
        order: 0;
    }

    .service-image img {
        height: 300px;
    }

    .service-text h2 {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
