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

body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #7EC8E3;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

.navbar {
    position: fixed;
    top: 5vh;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.4s ease;
}

.navbar.hidden {
    transform: translateY(-150%);
    opacity: 0;
}

.navbar.scrolled {
    top: 0;
    background: rgba(126, 200, 227, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 2rem;
}

.nav-logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.nav-menu li a:hover {
    color: #E94B3C;
    transform: scale(1.1);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #E94B3C;
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(126, 200, 227, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        gap: 1.5rem;
    }

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

    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        background: #1a1a1a;
    }
}

.hero {
    height: 100vh;
    background: #7EC8E3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/logo-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(126, 200, 227, 0.7);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>');
    opacity: 0.3;
    animation: float 20s linear infinite;
    z-index: 1;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    z-index: 2;
    padding: 2rem;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #E94B3C;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(233, 75, 60, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 75, 60, 0.5);
    background: #d43d2e;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background: #7EC8E3;
}

.section-title {
    font-size: 20px;
    margin-bottom: 3rem;
    text-align: center;
    color: #E94B3C;
    font-weight: 900;
}

.intro-text {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #1a1a1a;
    line-height: 1.8;
}

/* Services Carousel Styles */
.services-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 400px;
    max-width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid rgba(233, 75, 60, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 75, 60, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 75, 60, 0.3);
    border-color: #E94B3C;
    background: rgba(255, 255, 255, 0.7);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s;
}

.service-card:hover .service-icon img {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #E94B3C;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-description {
    color: #1a1a1a;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.read-more {
    color: #E94B3C;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.3s;
}

.read-more:hover {
    color: #d43d2e;
    text-decoration: underline;
}

/* Service Lightbox */
.service-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.service-lightbox.active {
    display: flex;
}

.service-lightbox-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: zoomIn 0.3s ease;
    margin: 20px;
}

.service-lightbox-title {
    color: #E94B3C;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-right: 40px;
}

.service-lightbox-text {
    color: #1a1a1a;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 60px;
    color: #E94B3C !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 0.7;
    font-weight: normal;
    background: transparent;
    border: none;
    padding: 10px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-close-btn:hover {
    color: #d43d2e !important;
    transform: scale(1.2);
}

/* Responsive for services carousel */
@media (max-width: 768px) {
    .services-wrapper {
        padding: 0 40px;
    }

    .service-card {
        min-width: 300px;
        max-width: 300px;
        height: 350px;
    }

    .service-lightbox-content {
        padding: 2rem;
        margin: 15px;
    }

    .service-lightbox-title {
        font-size: 1.4rem;
    }
}

.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E94B3C;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 15px;
    width: 45%;
    border: 2px solid rgba(233, 75, 60, 0.3);
}

.timeline-content h3 {
    color: #E94B3C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #1a1a1a;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #E94B3C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #E94B3C;
}

.stat-label {
    color: #1a1a1a;
    margin-top: 0.5rem;
    font-weight: 600;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(233, 75, 60, 0.2);
    transition: all 0.3s;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #E94B3C;
    background: rgba(255, 255, 255, 0.7);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: #E94B3C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 20px;
    color: #E94B3C;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    color: #1a1a1a;
    font-weight: 600;
}

.team-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(233, 75, 60, 0.95);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.7;
    width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.team-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: rgba(233, 75, 60, 0.95);
}

.team-member:hover .team-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.contact-section {
    background: rgba(255, 255, 255, 0.3);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #E94B3C;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper .wpcf7 {
    display: block !important;
}

.contact-info {
    max-width: 600px;
    margin: 2rem auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.contact-item svg {
    margin-right: 1rem;
    color: #E94B3C;
    min-width: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: 2px solid #E94B3C;
    transition: all 0.3s;
    color: #E94B3C;
}

.social-link:hover {
    background: #E94B3C;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 75, 60, 0.4);
}

.social-link svg {
    width: 28px;
    height: 28px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #7EC8E3;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    color: #E94B3C;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #E94B3C;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(233, 75, 60, 0.2);
    transform: rotate(90deg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(233, 75, 60, 0.3);
    border-radius: 10px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    transition: all 0.3s;
}

.wpcf7-form-control-wrap select,
.form-group select {
    font-size: 1.3rem;
    font-weight: 600;
}

.wpcf7-form-control-wrap textarea,
.form-group textarea {
    font-size: 1.2rem;
    line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus,
.wpcf7-form-control-wrap select:focus {
    outline: none;
    border-color: #E94B3C;
    background: white;
    box-shadow: 0 0 0 3px rgba(233, 75, 60, 0.1);
}

.form-group textarea,
.wpcf7-form-control-wrap textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit,
.wpcf7-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #E94B3C;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(233, 75, 60, 0.3);
}

.form-submit:hover,
.wpcf7-submit:hover {
    background: #d43d2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 75, 60, 0.5);
}

.form-submit:active,
.wpcf7-submit:active {
    transform: translateY(0);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.captcha-container {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(233, 75, 60, 0.3);
    margin-bottom: 1.5rem;
}

.captcha-label {
    display: block;
    color: #E94B3C;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.captcha-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.captcha-question {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.captcha-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(233, 75, 60, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    transition: all 0.3s;
}

.captcha-input:focus {
    outline: none;
    border-color: #E94B3C;
    background: white;
    box-shadow: 0 0 0 3px rgba(233, 75, 60, 0.1);
}

.captcha-error {
    color: #E94B3C;
    font-weight: 600;
    margin-top: 0.5rem;
    display: none;
}

.captcha-error.active {
    display: block;
}

/* Partners Carousel Styles */
.partners-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-carousel::-webkit-scrollbar {
    display: none;
}

.partner-logo {
    min-width: 200px;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
    border: 2px solid rgba(233, 75, 60, 0.1);
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(233, 75, 60, 0.2);
    border-color: #E94B3C;
    background: rgba(255, 255, 255, 0.8);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* Responsive for partners carousel */
@media (max-width: 768px) {
    .partners-wrapper {
        padding: 0 40px;
    }

    .partner-logo {
        min-width: 150px;
        max-width: 150px;
        min-height: 100px;
    }
}

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

.equipment-category {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(233, 75, 60, 0.2);
    max-height: 400px;
    overflow-y: auto;
}

.equipment-category h3 {
    color: #E94B3C;
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.equipment-category h3 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.equipment-category ul {
    list-style: none;
    padding: 0;
}

.equipment-category li {
    padding: 0.5rem 0;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(233, 75, 60, 0.1);
    display: flex;
    align-items: center;
}

.equipment-category li:last-child {
    border-bottom: none;
}

.equipment-category li:before {
    content: "▸";
    color: #E94B3C;
    font-weight: bold;
    margin-right: 0.5rem;
}

.equipment-category::-webkit-scrollbar {
    width: 8px;
}

.equipment-category::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.equipment-category::-webkit-scrollbar-thumb {
    background: #E94B3C;
    border-radius: 10px;
}

.equipment-category::-webkit-scrollbar-thumb:hover {
    background: #d43d2e;
}

/* Firefox scrollbar support */
.equipment-category {
    scrollbar-width: thin;
    scrollbar-color: #E94B3C rgba(255, 255, 255, 0.3);
}

/* Mobile scrollbar fix - Chrome Android */
@media (max-width: 768px) {
    .equipment-category {
        scrollbar-width: auto;
        scrollbar-color: #E94B3C #ddd;
        overflow-y: scroll !important;
        border-right: 4px solid #E94B3C;
    }

    .equipment-category::-webkit-scrollbar {
        width: 8px !important;
        -webkit-appearance: scrollbar !important;
        background-color: #ddd !important;
    }

    .equipment-category::-webkit-scrollbar-track {
        background-color: #ddd !important;
        border-radius: 0 !important;
    }

    .equipment-category::-webkit-scrollbar-thumb {
        background-color: #E94B3C !important;
        border-radius: 4px !important;
    }
}

/* Video Showcase */
.video-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.featured-video {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(233, 75, 60, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.featured-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(233, 75, 60, 0.4);
    border-color: #E94B3C;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
}

.video-title {
    font-size: 24px;
    color: #E94B3C;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-description {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(233, 75, 60, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:hover {
    transform: translateY(-8px);
    border-color: #E94B3C;
    box-shadow: 0 15px 40px rgba(233, 75, 60, 0.4);
}

.video-thumbnail.active {
    border-color: #E94B3C;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(233, 75, 60, 0.5);
}

.video-thumbnail img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.video-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
    background: rgba(233, 75, 60, 0.7);
}

.thumbnail-overlay svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.video-thumbnail:hover .thumbnail-overlay svg {
    transform: scale(1.2);
}

.thumbnail-info {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.thumbnail-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.discography-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: #7EC8E3;
}

.discography-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.discography-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.discography-carousel::-webkit-scrollbar {
    display: none;
}

.discography-item {
    min-width: 280px;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: visible;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: all 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(233, 75, 60, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
}

.carousel-btn:hover {
    background: rgba(233, 75, 60, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.discography-item:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 10;
}

.cd-case {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discography-item:hover .cd-case {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(233, 75, 60, 0.4);
}

.cd-case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.discography-item:hover .cd-case img {
    transform: scale(1.1);
}

/* Responsive styles for carousel */
@media (max-width: 768px) {
    .discography-wrapper {
        padding: 0 40px;
    }

    .discography-item {
        min-width: 220px;
        max-width: 220px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Lightbox for enlarged images */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #E94B3C;
    transform: scale(1.2);
}

/* Make discography items clickable */
.discography-item {
    cursor: pointer;
}

.discography-item:hover .cd-case {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 75, 60, 0.4);
}

/* Video Gallery Carousel Styles */
.video-section {
    background: #7EC8E3;
}

.video-gallery-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.video-gallery-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-gallery-carousel::-webkit-scrollbar {
    display: none;
}

.video-gallery-item {
    min-width: 400px;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.video-gallery-item:hover .video-card {
    box-shadow: 0 20px 50px rgba(233, 75, 60, 0.4);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.video-gallery-item:hover .video-card img {
    transform: scale(1.1);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(233, 75, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-gallery-item:hover .video-play-icon {
    background: rgba(233, 75, 60, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon svg {
    margin-left: 5px;
}

.video-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-content {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    animation: zoomIn 0.3s ease;
}

.video-lightbox-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Responsive styles for video gallery */
@media (max-width: 768px) {
    .video-gallery-wrapper {
        padding: 0 40px;
    }

    .video-gallery-item {
        min-width: 300px;
        max-width: 300px;
    }

    .video-play-icon {
        width: 60px;
        height: 60px;
    }

    .video-play-icon svg {
        width: 40px;
        height: 40px;
    }

    .video-lightbox-content {
        width: 95%;
    }
}

.map-container {
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid #E94B3C;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: #E94B3C;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(233, 75, 60, 0.3);
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 75, 60, 0.5);
    background: #d43d2e;
}

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

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-year {
        left: 20px;
        transform: translateX(0);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .team-tooltip {
        width: 320px;
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }

    .video-showcase {
        padding: 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-title {
        font-size: 20px;
    }

    .video-description {
        font-size: 14px;
    }

    .thumbnail-info {
        padding: 0.75rem;
    }

    .thumbnail-title {
        font-size: 12px;
    }

    .video-thumbnail img {
        height: 160px;
    }
}
