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

:root {
    /* Color Palette - Updated to Red, Black, White */
    --primary: #cb1c2b; /* Vibrant Red */
    --primary-dark: #a11622;
    --primary-light: #fca5a5;
    --secondary: #000000; /* Black */
    --accent: #1e1e1e;
    --bg-light: #ffffff; /* White */
    --bg-soft: #f4f4f4;
    --text-main: #000000;
    --text-muted: #4b5563;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--primary);
    padding: 1.25rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.75rem;
    color: var(--secondary);
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
}

/* Hero Section - Split Layout */
.hero {
    min-height: 70vh;
    padding-top: 120px;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    background-color: var(--bg-soft);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 20px 20px 0px var(--primary);
}

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

/* Section - Who We Are / About Summary */
.about-summary .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    max-height: 650px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 15px 15px 0px var(--secondary);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-summary .container {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-height: 400px;
        order: -1;
    }
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 15px auto 0;
}

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

.card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
    background-color: white;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background-color: var(--secondary);
}

.card:hover h3, .card:hover p {
    color: white;
}

.card-red {
    background-color: var(--primary);
    border-left: none;
    border-bottom: 5px solid var(--secondary);
}

.card-red h3, .card-red p {
    color: white;
}

.card-red .card-icon {
    color: white;
}

.card-red:hover {
    background-color: var(--secondary);
}

.card-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Our Advantage Cards */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    background: white;
    padding: 3rem 1.5rem 2rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.advantage-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e2e8f0;
    font-family: 'Outfit', sans-serif;
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    background-color: var(--secondary);
    color: white;
    padding: 5rem 0;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 5rem 0 2rem;
    border-top: 5px solid var(--primary);
}

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

.footer-logo {
    margin-bottom: 1.5rem;
    height: 70px !important;
    width: auto;
}

.footer-text {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Timeline Styling */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    position: relative;
    padding-bottom: 4rem;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-align: right;
    font-family: 'Outfit', sans-serif;
}

.timeline-content {
    border-left: 3px solid var(--secondary);
    padding-left: 3rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 10px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.timeline-list {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-year {
        text-align: left;
        font-size: 2rem;
    }
    
    .timeline-content {
        padding-left: 1.5rem;
    }
    
    .timeline-content::before {
        display: none;
    }
}

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

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 2.25rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 4px solid var(--primary);
        z-index: 1000;
        gap: 1.5rem;
    }

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

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image {
        display: none;
    }
    .about-summary .container {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-height: 400px;
        order: -1;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .logo-container span {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Grid 3 Layout */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(15deg);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 32px;
    }
}