@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #001f3f;
    --accent-gold: #c5a059;
    --light-gold: #e6d2a9;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

nav.scrolled {
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-toggle {
    display: none !important;
    font-size: 2.5rem;
    color: var(--accent-gold);
    cursor: pointer;
    line-height: 1;
}

/* MOBILE RESPONSIVE NAVBAR */
@media screen and (max-width: 992px) {
    .nav-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 15px;
        padding: 10px 0;
    }

    .logo {
        text-align: center !important;
        font-size: 1.1rem !important;
        margin-right: 0 !important;
        display: block !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block !important;
        margin: 0 auto !important;
        color: var(--accent-gold);
        text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    nav:not(.scrolled) {
        background: rgba(0, 31, 63, 0.4);
        backdrop-filter: blur(5px);
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.btn-premium {
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.btn-premium:hover {
    background: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.5);
}

/* SECTION HEADINGS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.section-header .line {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto;
}

/* PILLARS SECTION */
.pillars {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-39c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm30 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23001f3f' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pillar-card {
    background: var(--white);
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.05);
    display: flex;
    align-items: center;
    text-align: left;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 100%;
}

.pillar-card:hover {
    transform: translateX(15px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0;
    margin-right: 30px;
    width: 60px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

@media screen and (max-width: 600px) {
    .pillar-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .pillar-card i {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .pillar-content {
        text-align: center;
    }
}

.pillar-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.pillar-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 5px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}


/* MANAGEMENT SECTION */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    text-align: left;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateX(15px);
    border-color: var(--accent-gold);
}

@media screen and (max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
    }
    .team-card:hover {
        transform: translateY(-10px);
    }
    .team-img-container {
        width: 100%;
        height: 250px;
    }
}

.team-img-container {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    padding: 15px;
    border-radius: 15px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
    background: white;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.team-info p {
    margin-bottom: 20px;
}

.team-info p {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ROADMAP TIMELINE */
.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.roadmap-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--accent-gold);
    top: 0; bottom: 0; left: 50%;
    margin-left: -1px;
}

.roadmap-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--accent-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; text-align: right; }
.right { left: 50%; text-align: left; }

.left::after { right: -10px; }
.right::after { left: -10px; }

.roadmap-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.roadmap-content h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    .roadmap-container::after { left: 31px; }
    .roadmap-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
    .roadmap-item::after { left: 21px; }
    .right { left: 0; }
}
