/* HEADER STYLES START */
.header {
    position: relative;
    background: white;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100px;
}

.contact-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    display: flex;
    justify-content: flex-end;
    padding: 5px 50px;
    font-size: 14px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.logo {
    display: flex;
    align-items: start;
    z-index: 100;
}

.logo img {
    height: 50px;
    position: relative;
    top: 5px;
    z-index: 11;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 10px;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.4s;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: left;
    gap: 20px;
    padding-top: 20px;
}


.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a:not(.btn-principal) {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.5s ease;
}

.nav-menu a:not(.btn-principal):hover {
    color: maroon;
    text-decoration: underline;
    position: relative;
    text-decoration: none;

    &::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: maroon;
        transition: width 0.5s ease;
    }

    &:hover::after {
        width: 100%;
    }
}

.nav-menu a.active {
    color: maroon;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: maroon;
    }
}

.mobile-menu-header {
    display: none;
}

.btn-principal {
    background: maroon;
    color: white;
    padding: 17px 25px;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    transition: background-color 0.5s ease;
}

.btn-principal:hover {
    background: #1c1c27;
}

/* HEADER END */


/* HERO SECTION STYLES START */
/* Existing Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 766px;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 20s ease infinite;
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    opacity: 0;
    transition: all 0.8s ease;
    transform: translateY(20px);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%);
}

.slider-tagline {
    font-size: 18px;
    margin-bottom: 23px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 65px;
    max-width: 590px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.7;
}


@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.nav-btn.active {
    background: white;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 20px;
    z-index: 10;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* HERO SECTION STYLES END */

/* FOOTER STYLES START */
.main-footer {
    background-color: #1c1c27;
    background-repeat: repeat;
    background-size: cover;
}

.main-footer {
    background-image: url("https://rondoservicio.com/wp-content/themes/finlon/assets/images/shapes/footer-bg-1-1.png");
    background-blend-mode: luminosity;
    background-position: center top;
}

/* FOOTER END */



/* MEDIA QUERIES START */
/* Media Queries */
@media screen and (max-width: 768px) {
    .contact-info {
        display: none;
    }

    .in-menu {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        background: white;
        width: 100%;
        height: 100vh;
        padding: 80px 40px;
        transition: 0.4s;
        z-index: 1000;
        backdrop-filter: blur(5px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-header {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    .mobile-logo {
        height: 50px;
    }

    .mobile-logo img {
        height: 100%;
    }

    /* Hide desktop logo when menu is active */
    .nav-menu.active+.logo {
        opacity: 0;
    }

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

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

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

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

    .slider-tagline {
        font-size: 14px;
        margin-bottom: 23px;
        text-transform: uppercase;
    }

    .slide-title {
        font-size: 45px;
        max-width: 590px;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.7;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a:not(.btn-principal) {
        font-size: 14px;
    }

    .btn-principal {
        padding: 15px 20px;
        font-size: 14px;
    }


}

/* Desktop */
@media screen and (min-width: 1025px) {
    .header {
        padding: 15px 50px;
    }
}

/* MEDIA QUERIES START */

.form-input {
    width: 100%;
    height: 60px;
    background-color: #f2ede9;
    color: #1f2937;
    /* text-gray-900 equivalent  */
    font-size: 14px;
    border: none;
    padding: 10px 30px;

}

.form-input textarea {
    height: 170px;
    padding-top: 20px;
}

.shadow-full {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}

.dropdown-content a:hover {
    background-color: maroon;
    color: white !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}