/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 70px;
    box-sizing: border-box;
}

/* Rotated background logo - HIDDEN */
.hero-logo-bg {
    display: none;
}

.swiper-form-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.swiper-slider_fullheight {
    height: 100% !important;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-attachment: fixed;
}

.swiper-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Fixed Hero Overlay Content */
.hero-overlay-content {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 80px 120px 150px 120px;
    pointer-events: none;
}

.hero-overlay-content > div {
    pointer-events: auto;
}

/* Left side - Text */
.hero-left {
    flex: 1;
    max-width: 650px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 84px;
    font-weight: 100;
    line-height: 0.9;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: white;
}

.hero-text p {
    font-size: 30px;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 300;
    color: white;
    max-width: 450px;
}

/* Right side - Contact Info */
.hero-right {
    flex: 1;
    text-align: right;
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.contact-address {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.contact-link {
    margin: 0;
}

.contact-link a {
    font-size: 15px;
    font-weight: 300;
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-link a:hover {
    opacity: 0.8;
}

/* Swiper Pagination - Centered and Styled */
.swiper-pagination {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    gap: 12px !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    opacity: 1 !important;
    display: inline-block !important;
    margin: 0 !important;
}

.swiper-pagination-bullet:hover {
    opacity: 0.9 !important;
}

.swiper-pagination-bullet-active {
    background: #005389 !important;
    width: 10px !important;
    border-radius: 50% !important;
    opacity: 1 !important;
}

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

/* Tablet responsive */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 70px;
        height: 100vh;
    }

    .hero-overlay-content {
        padding: 50px 40px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 50px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        text-align: left;
        padding-right: 0;
        width: 100%;
    }

    .hero-contact {
        flex-direction: row;
        gap: 40px;
        justify-content: space-around;
    }

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

    .hero-text h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        padding-top: 60px;
    }

    .hero-logo-bg {
        width: 400px;
        height: 400px;
        right: -100px;
        opacity: 0.1;
    }

    .hero-overlay-content {
        padding: 40px 15px !important;
        gap: 80px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .hero-text h1 {
        font-size: 35px !important;
        margin-bottom: 15px !important;
    }

    .hero-text p {
        font-size: 16px !important;
    }

    .hero-contact {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .hero-right {
        display: block !important;
        text-align: right !important;
        width: 100% !important;
        margin-top: auto !important;
    }

    .contact-item h6 {
        font-size: 11px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .swiper-pagination {
        bottom: 30px;
        gap: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 8px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        padding-top: 60px;
    }

    .hero-overlay-content {
        padding: 140px 35px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text h1 {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 23px;
    }

    .hero-contact {
        gap: 25px;
    }

    .hero-right {
        text-align: right;
        width: 100%;
    }

    .swiper-pagination {
        bottom: 30px;
        gap: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 8px;
    }
}

/* Fix body padding */
body {
    padding-top: 0 !important;
}
