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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: #f59e0b;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 15px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.95);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 8px 15px;
    white-space: nowrap;
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '►';
    font-size: 0.7em;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-submenu-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: rgba(15, 23, 42, 0.95);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.dropdown-submenu:hover > .dropdown-submenu-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 1;
    }
    
    .logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }
    
    .cta-button {
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 9999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: calc(var(--i) * 0.1s);
    }

    .nav-links li:nth-child(1) { --i: 1; }
    .nav-links li:nth-child(2) { --i: 2; }
    .nav-links li:nth-child(3) { --i: 3; }
    .nav-links li:nth-child(4) { --i: 4; }
    .nav-links li:nth-child(5) { --i: 5; }
    .nav-links li:nth-child(6) { --i: 6; }
    .nav-links li:nth-child(7) { --i: 7; }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(30, 41, 59, 0.8);
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
        box-shadow: none;
        margin-top: 5px;
        padding: 0;
    }
    
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0s;
        padding: 10px 0;
    }
    
    .dropdown-submenu {
        width: 100%;
    }
    
    .dropdown-submenu-menu {
        position: static;
        width: 100%;
        background: rgba(51, 65, 85, 0.8);
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
        box-shadow: none;
        margin-top: 5px;
        padding: 0;
    }
    
    .dropdown-submenu-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0s;
        padding: 10px 0;
    }
    
    .dropdown-submenu > a::after {
        content: '▼';
        right: auto;
        margin-left: 8px;
        transform: none;
        position: relative;
        top: auto;
    }
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(51, 65, 85, 0.8) 100%), url('../../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23f59e0b;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23f59e0b;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="300" r="200" fill="url(%23a)"/><circle cx="800" cy="700" r="300" fill="url(%23a)"/><circle cx="500" cy="100" r="150" fill="url(%23a)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    border: 2px solid #f59e0b;
    color: #f59e0b;
    background: transparent;
}

.btn-secondary:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-3px);
}

/* Journey Section */
.journey-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.7) 0%, rgba(226, 232, 240, 0.6) 100%), url('../../images/plan-crecimiento.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.1);
    z-index: 1;
}

.journey-section .container {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header h2.section-title {
    color: #f59e0b;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    flex: 1;
    margin-left: 6rem;
    position: relative;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-number {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.8;
}

/* Impact Section */
.impact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.impact-icon {
    /*width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);*/
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    line-height: 1;
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

/* Career Plan Section */
.career-plan-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Products Section */
.products-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.product-icon {
    /*width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);*/
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.product-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.product-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.product-btn:hover {
    background: transparent;
    border-color: #f59e0b;
    color: #f59e0b;
    transform: scale(1.05);
}

.product-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.product-links .product-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.accordion-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.7s ease-in-out;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.accordion-header.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.accordion-header:hover .accordion-icon,
.accordion-header.active .accordion-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.accordion-content.active {
    max-height: 1200px;
    padding: 2rem;
}

.accordion-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.accordion-text {
    flex: 1;
}

.accordion-image {
    flex: 0 0 200px;
    text-align: center;
}

.accordion-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    /*border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
}

@media (max-width: 768px) {
    .accordion-content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .accordion-image {
        flex: none;
        align-self: center;
    }
    
    .accordion-image img {
        max-width: 150px;
    }
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #475569;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content strong {
    color: #f59e0b;
    font-weight: 700;
}

.stats-section {
    padding: 6rem 2rem;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #dddd;
    border-radius: 20px;
    box-shadow: 3px 3px 8px #bebebe;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

.testimonial-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
}

.testimonial-media {
    position: relative;
    width: 100%;
}

.media-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-placeholder:hover {
    border-color: rgba(245, 158, 11, 0.6);
    transform: scale(1.02);
}

.media-placeholder.image-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease;
}

.media-placeholder:hover .play-button {
    transform: scale(1.1);
}

.image-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.media-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-text {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: serif;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: #e2e8f0;
}

.testimonial-author h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.author-details {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.author-achievement {
    font-size: 0.9rem;
    color: #fbbf24;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.8);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #f59e0b;
    transform: scale(1.2);
}

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    color: #94a3b8;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f59e0b;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info a, .contact-info a:visited {
    color: #94a3b8;
}

.contact-info a:hover {
    color: #f59e0b;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: #f59e0b;
    flex-shrink: 0;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
    .logo img{
        height: 40px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        line-height: 1.05;
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 1rem 0 1rem 6rem;
    }
    
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-number {
        left: 30px;
    }

    /* Testimonials Mobile Styles */
    .testimonials-section {
        padding: 4rem 1rem;
    }
    
    .testimonial-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
    
    .testimonial-media {
        order: 1;
        max-width: 100%;
    }
    
    .media-placeholder {
        height: 250px;
        margin: 0 auto;
    }
    
    .testimonial-text {
        order: 2;
        padding: 0 1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.3rem;
    }
    
    .author-details {
        font-size: 0.9rem;
    }
    
    .author-achievement {
        font-size: 0.8rem;
    }
    
    .carousel-controls {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .testimonials-carousel {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 1rem;
    }
    .timeline-content {
        padding: 1.5rem 1rem;
        margin: .8rem 0 .8rem 5rem;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .footer-logo img {
       height: 50px;
       margin: auto;
    }

    .testimonials-section {
        padding: 3rem 0.5rem;
    }
    
    .testimonial-content {
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .media-placeholder {
        height: 200px;
    }
    
    .testimonial-text {
        padding: 0 0.5rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.2rem;
    }
    
    .author-details {
        font-size: 0.85rem;
    }
    
    .author-achievement {
        font-size: 0.75rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-bottom {
        font-size: .8rem;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

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