@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary-color: #000957;
    --secondary-color: #344CB7;
    --accent-color: #FFEB00;
    --light-color: #F2F2F2;
    --dark-color: #0a0a1a;
    --gradient-primary: linear-gradient(135deg, #344CB7 0%, #000957 100%);
    --hover-color: #577BC1;
    --background-color: #eef2f5;
    --text-color: #1a1a1a;
    --border-color: rgba(52, 76, 183, 0.2);
    --divider-color: rgba(0, 9, 87, 0.15);
    --shadow-color: rgba(0, 9, 87, 0.15);
    --highlight-color: #FF6B35;
    --main-font: 'Lora', serif;
    --alt-font: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--highlight-color);
}

/* Header & Hamburger */
header {
    background-color: var(--primary-color);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.logo img {
    height: 45px;
}

.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    color: var(--light-color);
    font-size: 2.2rem;
    cursor: pointer;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navigation a {
    color: var(--light-color);
    font-size: 1rem;
    position: relative;
}

.navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

/* Glass & Neumorphism */
.neo-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #d0d4d6, -10px -10px 20px #ffffff;
    padding: 35px;
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.4s ease;
}

.neo-box:hover {
    transform: translateY(-8px);
}

.neo-btn {
    display: inline-block;
    padding: 16px 35px;
    background: var(--gradient-primary);
    color: var(--light-color) !important;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 10px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: none;
}

.neo-btn:hover {
    box-shadow: 0 15px 25px var(--shadow-color);
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Sections */
section {
    padding: 10vh 0;
    position: relative;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Screen */
.hero {
    height: 80vh;
    background: linear-gradient(to right, rgba(0, 9, 87, 0.9), rgba(52, 76, 183, 0.6)), url('./img/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content {
    max-width: 600px;
    color: var(--light-color);
}

.hero h1 {
    color: var(--light-color);
    font-size: 3.2rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Content Blocks */
.content-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.img-wrapper {
    flex: 1;
}

.img-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 15px 15px 0px var(--accent-color);
}

.text-wrapper {
    flex: 1;
}

/* Divider */
.section-divider {
    text-align: center;
    position: relative;
    padding: 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.section-divider h2 {
    display: inline-block;
    background: var(--background-color);
    padding: 0 30px;
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
}

/* CTA */
.cta-banner {
    background: url('./img/bg.jpg') fixed center center/cover;
    position: relative;
    text-align: center;
}

.cta-overlay {
    background-color: rgba(0, 9, 87, 0.8);
    padding: 80px 20px;
    border-radius: 15px;
    color: white;
}

.cta-overlay h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
}

/* Grid layout for features & testimonials */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* FAQ */
.faq-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 6px var(--shadow-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 50px 5% 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: var(--accent-color);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-credits {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 800px) {
    .hamburger { display: block; }
    
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 85px;
        left: 0;
        background: var(--primary-color);
        z-index: 999;
    }
    
    .nav-toggle:checked ~ .navigation {
        display: block;
    }
    
    .navigation ul {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .content-row, .content-row.reverse {
        flex-direction: column;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
}