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

:root {
    --primary-blue: #1A2B5F;
    --secondary-blue: #2E458D;
    --accent-red: #B02A2A;
    --light-blue: #E8F0FE;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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 {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--accent-red);
}

.nav-cta {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--accent-red);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(26, 43, 95, 0.7), rgba(26, 43, 95, 0.7)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 10%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-red);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* About Section */
.about {
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background: var(--primary-blue);
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--light-blue);
}

/* Footer */
footer {
    background: #0D1630;
    color: var(--white);
    padding: 4rem 10% 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.footer-address-title {
    margin-top: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem !important;
}

.footer-company-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.5rem !important;
}

.footer-address-item {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #cbd5e1;
    margin-bottom: 0.6rem !important;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 5%;
    }

    .about {
        flex-direction: column;
    }
}

html {
    scroll-padding-top: 100px;
}
