/* Carrousel Styles */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 85, 140, 0.8) 0%, rgba(255, 190, 10, 0.6) 100%);
}

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

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.4rem;
    }
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .slide-content p {
        font-size: 1rem;
    }
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--secondary);
    color: var(--primary);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-label {
        font-size: 1.1rem;
    }
}

/* Founder Section */
.founder-section {
    padding: 5rem 0;
    background: white;
}

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

@media (max-width: 1024px) {
    .founder-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.founder-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .founder-content h2 {
        font-size: 2rem;
    }
}

.founder-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .founder-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.founder-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .founder-quote {
        font-size: 1.1rem;
        padding-left: 0;
    }
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: serif;
}

@media (max-width: 768px) {
    .founder-quote::before {
        left: -1rem;
    }
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
}

.founder-title {
    color: #666;
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Sectors Section */
.sectors-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sectors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

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

.sector-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Shine Promotion Section */
.promo-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #003d66 100%);
    color: white;
    text-align: center;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.promo-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.promo-feature i {
    color: var(--secondary);
}

.promo-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: white;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-logo {
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(1);
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.trust-logo img {
    max-height: 100px;
    width: auto;
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 2rem;
    }
    
    .trust-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .trust-logos {
        gap: 1.5rem;
    }
    
    .trust-logo img {
        max-height: 40px;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #e5aa00 100%);
    text-align: center;
    color: var(--primary);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons a,
    .cta-buttons a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: countUp 0.8s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }