/* Reset and Base Styles */
:root {
    --primary-red: #BA0000;      /* Dark premium red */
    --hover-red: #8B0000;
    --dark-grey: #2A2A2A;
    --mid-grey: #707070;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --black: #050505;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* Typography Classes */
.accent-text {
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin: 1.5rem 0;
    color: var(--white);
    opacity: 0.9;
}

.text-white { color: var(--white); }
.text-center { text-align: center; }

/* Layout Helpers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
}

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }

/* Backgrounds */
.bg-light { background-color: var(--light-grey); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark-grey); }
.bg-black { background-color: var(--black); }
.bg-primary { background-color: var(--primary-red); }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

nav.scrolled {
    background: rgba(186, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    line-height: 1;
}

nav.scrolled .logo {
    color: var(--white);
    transform: scale(0.9);
}

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

.nav-links a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

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

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Hamburger to X Animation */
.menu-toggle .bar.change:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.menu-toggle .bar.change:nth-child(2) {
    opacity: 0;
}

.menu-toggle .bar.change:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 0, 0, 0.3);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 3.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}



.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: var(--primary-red);
    margin-top: 10px;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections Global */
.section-header {
    margin-bottom: 4rem;
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.divider.center {
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--mid-grey);
    max-width: 600px;
}

/* Services Grid (Intervención) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    will-change: transform, box-shadow;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(186,0,0,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.service-card p {
    color: var(--mid-grey);
    font-size: 0.95rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-grey);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--primary-red);
    border-radius: 50%;
}

/* Two Columns Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.two-columns.align-center {
    align-items: center;
}

/* Stats / Features */
.features-list {
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-grey);
}

.features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* Highlight Quote Box */
.quote-box {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(186,0,0,0.25);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    text-align: left;
}

.quote-box::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    opacity: 0.3;
    font-family: serif;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4.5rem 2.5rem;
    text-align: center;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.stat-text small {
    font-size: 0.8rem;
    color: var(--mid-grey);
    text-transform: none;
    letter-spacing: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    border-left: 2px solid var(--light-grey);
    padding-left: 2rem;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    border-left-color: var(--primary-red);
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.benefit-item p {
    color: var(--mid-grey);
}

/* Timeline (Modulos) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-color: var(--dark-grey);
    opacity: 0.1;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -2.35rem;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-red);
    border-radius: 50%;
    border: 3px solid var(--light-grey);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style-type: none;
    padding-left: 1rem;
    border-left: 1px dashed #ccc;
}

.timeline-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--mid-grey);
    font-size: 0.95rem;
}

.timeline-content ul li::before {
    content: '-';
    position: absolute;
    left: -1rem;
    color: var(--primary-red);
}

/* Continuity (Acompañamiento) Premium Card */
.continuity-card {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 5rem 4rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.continuity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #F00);
}

.card-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.intro-p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 3rem;
    text-align: center;
}

.feature-list-premium {
    list-style: none;
    padding: 0;
    margin: 0 auto 4rem;
    max-width: 800px;
}

.feature-list-premium li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-grey);
    border-radius: 12px;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.feature-list-premium li:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-red);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.feature-list-premium .dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-red);
    margin-top: 0.5rem;
}

.feature-list-premium p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-grey);
}

.card-footer-highlight {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    color: var(--white);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    border-top: 5px solid var(--primary-red);
    border-bottom: 5px solid var(--primary-red);
    overflow: hidden;
    animation: pulse-box 4s infinite ease-in-out;
}

@keyframes pulse-box {
    0% {
        transform: scale(1);
        box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 40px 100px rgba(186, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }
}

.card-footer-highlight p {
    font-size: 1.35rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.card-footer-highlight strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .continuity-card {
        padding: 3rem 1.5rem;
    }
    .intro-p {
        font-size: 1.05rem;
    }
    .card-footer-highlight p {
        font-size: 1.1rem;
    }
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.lead-text-about {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.about-company p {
    color: #BBBBBB;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-section strong {
    color: var(--white);
    font-weight: 500;
}

.about-founder h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.founder-bio p {
    color: #BBBBBB;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.founder-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.founder-footer p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

/* Contact Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.method-item .icon {
    width: 50px;
    height: 50px;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.method-text h5 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid-grey);
    margin-bottom: 0.2rem;
}

.method-text a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
}

.contact-form {
    background: var(--light-grey);
    padding: 3rem;
    border-radius: 12px;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(186,0,0,0.1);
}

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

.w-100 { width: 100%; }

@media (max-width: 992px) {
    .about-grid, .form-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* CTA & Contact Section */
.cta-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 12px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.contact-card .icon-mail, .contact-card .icon-phone {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.contact-card a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--black);
}

/* Footer */
.site-footer {
    padding: 4rem 0 2rem;
    color: var(--mid-grey);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 4px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-legal {
    text-align: center;
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    color: var(--dark-grey);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-grey);
    border: none;
    background: none;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-body h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.modal-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.modal-body ul {
    list-style: none;
    padding-left: 1rem;
    border-left: 2px solid var(--light-grey);
}
.modal-body ul li {
    margin-bottom: 0.5rem;
    position: relative;
}
.modal-body ul li::before {
    content: '-';
    position: absolute;
    left: -1rem;
    color: var(--primary-red);
}

.more-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-red);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.more-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin 0.2s;
}
.service-card:hover .more-link::after {
    margin-left: 10px;
}


@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-description {
        font-size: 1.25rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-red);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        font-family: 'Inter', sans-serif;
        font-style: normal; /* Ensure no italics */
        line-height: 1.5; /* Adjust for modern look */
    }
    
    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-dot {
        left: -2.35rem; /* adjusted for mobile if needed */
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
    }
}

/* Module Timeline Enhancements */
.module-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid rgba(186, 0, 0, 0.15);
    border-radius: 10px;
    color: var(--primary-red);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.timeline-item:hover .module-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(-3deg) scale(1.05);
    border-color: var(--primary-red);
}

.timeline-objective {
    font-size: 1.15rem !important;
    color: var(--black) !important;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(186, 0, 0, 0.04);
    border-left: 4px solid var(--primary-red);
    border-radius: 0 8px 8px 0;
    line-height: 1.4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.timeline-objective strong {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.timeline-content ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--mid-grey);
}

/* Founder Details */
.founder-info-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    padding-left: 1.5rem;
}

.founder-info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

