/* Base Styles and Resets */
html {
    scroll-behavior: smooth;
}

:root {
    --color-top-nav: #0a4f89;
    --color-hero-bg: #0eb3f0;
    --color-banner-bg: #1c5ba1;
    --color-box: #0eb3f0;
    --color-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-white);
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography styles */
i {
    font-style: italic;
}

strong {
    font-weight: 800;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, rgba(14, 179, 240, 0.8) 0%, rgba(6, 17, 120, 0.85) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: -30px;
    /* Makes the logo protrude out of the nav bar downward */
    position: relative;
    top: -10px;
    z-index: 1001;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-text i {
    font-weight: 600;
    margin-right: 5px;
    color: #4dc2f5;
}

.logo-text .reg {
    font-size: 0.5rem;
    vertical-align: super;
    margin-left: 2px;
}

.social-icons {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.social-icons a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.wa-icon-mobile {
    display: none !important;
}

/* Nav Right Section (Buttons + Social) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Nav Actions / Buttons */
.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--color-box);
    /* Light blue */
    color: var(--color-white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: #0c9bcd;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background-color: #25D366;
    /* WhatsApp official green */
    color: var(--color-white);
    border: 2px solid transparent;
}

.btn-whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Modern Pill Buttons (Mobile Specific) */
.mobile-action-buttons-spacer {
    display: none;
}

.mobile-action-buttons {
    display: none;
    background-color: #f6f6f6;
    padding-top: 35px;
    padding-bottom: 25px;
    text-align: center;
}

.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 10px;
}

.btn-modern i {
    font-size: 1.4rem;
}

.btn-modern:active {
    transform: scale(0.97);
}

.btn-modern-blue {
    background: linear-gradient(135deg, #5db2ff 0%, #2f8ffc 100%);
    box-shadow: 0 10px 25px rgba(47, 143, 252, 0.4);
}

.btn-modern-green {
    background: linear-gradient(135deg, #2ae06b 0%, #1eaf50 100%);
    box-shadow: 0 10px 25px rgba(30, 175, 80, 0.4);
}

@media (max-width: 768px) {
    .mobile-action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
    }

    .mobile-action-buttons.is-sticky {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 998;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    }

    .mobile-action-buttons-spacer {
        display: block;
    }
}

@media (max-width: 850px) {
    .top-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: linear-gradient(135deg, rgba(14, 179, 240, 1) 0%, rgba(6, 17, 120, 1) 100%);
    }

    .nav-actions {
        flex-direction: column;
        gap: 5px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .btn i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .nav-actions {
        display: none;
        /* Hide on smallest screens if space is constrained */
    }

    .wa-icon-mobile {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background-color: #25D366;
        color: var(--color-white) !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .wa-icon-mobile i {
        font-size: 1.5rem;
        margin: 0;
    }
}

/* Hero Section */
.hero-wrapper {
    background-color: #0eb3f0;
    width: 100%;
}

.hero-section {
    background: #0eb3f0;
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px 0;
    min-height: 600px;
    max-height: 1000px;
    margin: 0 auto;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slider-bg .slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: left 1s ease-in-out;
}

.slider-bg .slide.active {
    left: 0;
}

.slider-bg .slide.exiting {
    left: -100%;
}

@media (min-width: 851px) {
    .slider-bg {
        top: -120px;
        height: calc(100% + 120px);
    }
    .slider-bg .slide {
        background-position: center top;
    }
}

.slider-bg .slide.no-transition {
    transition: none !important;
}

/* Mobile Slider Classes */
.mobile-hero {
    overflow: hidden;
}

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

.mobile-slide.active {
    left: 0;
}

.mobile-slide.exiting {
    left: -100%;
}

.mobile-slide.no-transition {
    transition: none !important;
}

/* Slide exit to right (dirección anterior) */
.slider-bg .slide.exit-prev {
    left: 100%;
}
.mobile-slide.exit-prev {
    left: 100%;
}

/* Hero slider navigation arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

@media (max-width: 576px) {
    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .hero-arrow-prev { left: 12px; }
    .hero-arrow-next { right: 12px; }
}

/* Layered Slide Styles */
.slide-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* hidden by default until active */
}

/* Base layer / Background */
.slide.active .desktop-hero .layer-c {
    opacity: 1;
    animation: slideFadeInBg 1s ease-out forwards;
}

/* Layer B: cylinder / left side floating object */
.slide.active .desktop-hero .layer-b {
    opacity: 1;
    animation: slideInLeft 1s ease-out forwards, floatAnimation 4s ease-in-out infinite 1s;
}

/* Layer A: right side object */
.slide.active .desktop-hero .layer-a {
    opacity: 1;
    animation: slideInRight 1.2s ease-out forwards, floatAnimationAlt 5s ease-in-out infinite 1.2s;
}

@media (max-width: 768px) {
    .desktop-hero {
        display: none !important;
    }

    .mobile-hero {
        display: block !important;
    }
}

@keyframes slideFadeInBg {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(0);
    }
}

@keyframes floatAnimationAlt {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(0);
    }
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h2 span {
    font-size: 2.8rem;
    font-weight: 600;
}

.time-callout {
    display: flex;
    align-items: flex-start;
    margin-top: -10px;
}

.time-callout .de {
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    margin-top: 35px;
    margin-right: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.time-callout .number {
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: -5px;
}

.hero-text .mins {
    font-size: 3.5rem;
    margin-top: -20px;
    margin-left: 5px;
}

.hero-image {
    flex: 1.2;
    position: relative;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.placeholder-graphic {
    position: relative;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.2);
}

.clock-icon {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    z-index: 1;
}

.truck-icon {
    font-size: 8rem;
    color: var(--color-top-nav);
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 2;
    transform: scaleX(-1);
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.3));
}

.placeholder-badge {
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: -30px;
    position: relative;
    z-index: 3;
    border: 3px solid white;
    transform: rotate(-5deg);
}

.placeholder-badge span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.placeholder-badge small {
    font-size: 0.7rem;
    font-weight: 600;
}

/* Info Banner Carousel */
/* =============================================
   SECTION BUTTONS (reemplaza info-banner)
   ============================================= */
.section-buttons {
    background: #155e9b;
    padding: 40px 0 50px;
}

.section-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.section-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-btn:hover {
    transform: translateY(-6px);
}

.section-btn-img-wrap {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -30px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.section-btn-img-wrap img {
    width: 85%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
}

.section-btn-label {
    background: linear-gradient(135deg, #3bc8f5 0%, #0a9ed4 100%);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    width: 100%;
    padding: 28px 16px 18px;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0, 80, 160, 0.25);
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.section-btn:hover .section-btn-label {
    background: linear-gradient(135deg, #55d4f8 0%, #0b8bbf 100%);
    box-shadow: 0 10px 28px rgba(0, 80, 160, 0.35);
}

@media (max-width: 768px) {
    .section-buttons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin: 0 auto;
    }

    .section-btn-img-wrap {
        min-height: 90px;
    }

    .section-btn-img-wrap img {
        max-height: 110px;
    }
}

.pie-carousel {
    background-color: var(--color-banner-bg);
    position: relative;
    padding: 0 0 10px 0;
    width: 100%;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-slider-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-slider-container.flex-col {
    flex-direction: column;
}

.pie-slide {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.pie-slide.active {
    display: flex;
}

.centered-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Forces horizontal centering */
}

.banner-overlap {
    position: relative;
    margin-top: -60px;
    /* Pull the image upwards so it overlaps the previous section */
    z-index: 10;
}

.banner-texts {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    width: 100%;
    max-width: 1100px;
    /* Matched roughly to image contents */
    position: absolute;
    bottom: 20px;
    /* Adjust to place exactly onto the blue strip of the image */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.banner-texts span {
    text-align: center;
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.text-productos {
    padding-right: 20px;
    /* Slight left shift by adding right padding */
}


.text-locales {
    padding-left: 15px;
    /* Slight right shift by adding left padding */
}

@media (max-width: 768px) {
    .banner-texts {
        bottom: 10px;
    }

    .banner-texts span {
        font-size: 0.75rem;
    }

    .banner-overlap {
        margin-top: -35px;
    }

    .pie-carousel {
        padding: 0 0 15px 0;
        /* prevent layout collapse */
    }
}

@media (max-width: 576px) {
    .banner-texts {
        bottom: 2px;
    }

    .banner-texts span {
        font-size: 0.55rem;
        line-height: 1.1;
    }

    .banner-overlap {
        margin-top: -15px;
    }
}

/* Main content */
.main-content {
    background-color: var(--color-white);
    padding: 40px 0;
    min-height: 400px;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.tip-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.tip-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tip-body {
    padding: 24px;
    flex: 1;
}

.tip-body h3 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: #061178;
    margin-bottom: 14px;
    text-align: center;
}

.tip-body p {
    font-family: var(--font-main);
    font-size: 0.88rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}

.tip-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .tips-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Services Section */
.main-content {
    background-color: #f6f6f6;
    padding: 60px 0 80px 0;
    min-height: auto;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 800;
}

.services-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.carousel-arrow {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #0eb3f0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.service-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-info h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #061178;
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    align-self: center;
}

.btn-ver-mas i {
    font-weight: 400;
}

.btn-ver-mas:hover {
    background-color: #040c54;
    color: var(--color-white);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ff5722;
}

/* Responsive */
@media (max-width: 992px) {

    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .time-callout {
        justify-content: center;
    }

    .hero-text h2 span {
        display: block;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }
}

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

    .carousel-arrow {
        display: none;
        /* Hide arrows on mobile */
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .time-callout .number {
        font-size: 6rem;
    }

    .time-callout .de {
        margin-top: 25px;
    }

    .placeholder-graphic {
        width: 280px;
        height: 280px;
    }

    .clock-icon {
        font-size: 12rem;
    }

    .truck-icon {
        font-size: 6rem;
    }
}

/* Video Testimonials Section */
.testimonials-video-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0eb3f0 0%, #061178 100%);
    text-align: center;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.text-white h2,
.text-white p {
    color: var(--color-white);
}

.text-white h2 {
    margin-bottom: 5px;
}

.text-white p {
    font-size: 1.15rem;
    margin-top: 15px;
    opacity: 0.9;
    font-weight: 400;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    background-color: #000;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-thumbnail {
    opacity: 0.6;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: #061178;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-left: 6px;
    /* Offset to center the play triangle visually */
}

.play-btn:hover {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .video-container {
        border-radius: 12px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Calidad y Servicio Section */
.calidad-servicio-section {
    padding: 80px 0;
    background-color: var(--color-banner-bg);
    /* Uses primary blue #0a4f89 */
}

.calidad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.calidad-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.calidad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.calidad-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media (max-width: 992px) {
    .calidad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Propano Info Section */
.propano-info-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.propano-header h2 {
    color: var(--color-top-nav);
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.propano-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.propano-img {
    flex: 1;
}

.propano-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.propano-text {
    flex: 1;
    padding: 40px;
}

.propano-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.propano-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.propano-card {
    background: var(--color-white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.propano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.propano-card .icon {
    font-size: 2.8rem;
    color: var(--color-box);
    /* Light blue brand color */
    margin-bottom: 20px;
}

.propano-card h3 {
    font-size: 1.3rem;
    color: var(--color-top-nav);
    margin-bottom: 15px;
    font-weight: 700;
}

.propano-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .propano-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .propano-intro {
        flex-direction: column;
    }

    .propano-text {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .propano-header h2 {
        font-size: 1.8rem;
    }
}

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

/* Map Section */
.map-section {
    padding: 80px 0 60px 0;
    background-color: #f6f6f6;
    /* Continue from main-content */
}

.map-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.map-bg {
    width: 100%;
    height: 400px;
    /* Half height instead of keeping image aspect ratio */
    display: block;
    object-fit: cover;
    object-position: center;
}

.map-pin {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pin-icon {
    font-size: 1.4rem;
    color: #4dc2f5;
    /* Blue gas flame pattern */
    position: absolute;
}

.pin-number {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #061178;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.map-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background-color: #f0f0f0;
}

/* Footer Section */
.site-footer {
    background-color: var(--color-top-nav);
    /* Uses the primary blue #0a4f89 */
    color: var(--color-white);
    padding: 60px 0;
    font-family: var(--font-main);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
}

.footer-col-general {
    flex: 2;
    /* takes more space for two columns inside */
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 15px;
    position: relative;
}

.footer-links-grid {
    display: flex;
    gap: 30px;
}

.footer-links-grid ul {
    flex: 1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    display: inline-block;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-col-accesos {
    flex: 1;
    min-width: 250px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-top-nav);
    /* Blue text inside white icon */
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
}

.btn-footer-white {
    display: block;
    background-color: var(--color-white);
    color: #ff5722;
    /* Add a touch of orange from the Abastible reference or use blue. We will use the brand orange or dark blue. The prompt said "con los colores azules" so I will stick to blue text */
    color: var(--color-top-nav);
    text-align: center;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-footer-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-links-grid {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }
}

/* =============================================
   MAP TABS
   ============================================= */

.map-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.map-tab {
    flex: 1;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.25s ease, color 0.25s ease;
    background: #dde8f5;
    color: #4a6080;
    border-radius: 12px 12px 0 0;
}

.map-tab:first-child {
    border-radius: 12px 0 0 0;
}

.map-tab:last-child {
    border-radius: 0 12px 0 0;
}

.map-tab.active {
    background: linear-gradient(135deg, #0eb3f0 0%, #061178 100%);
    color: #fff;
    box-shadow: 0 -4px 12px rgba(6, 17, 120, 0.2);
}

.map-tab:not(.active):hover {
    background: #c8d9ee;
    color: #1a3a60;
}

@media (max-width: 480px) {
    .map-tab {
        font-size: 0.82rem;
        padding: 12px 10px;
        gap: 6px;
    }
}

/* =============================================
   MOBILE FRIES MENU
   ============================================= */

/* Hamburger / Fries button */
.nav-fries-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    cursor: pointer;
    padding: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.nav-fries-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-fries-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 850px) {
    .nav-fries-btn {
        display: flex;
    }
}

/* Overlay */
.slide-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 60, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1099;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.slide-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Slide Panel */
.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 28px 36px;
    overflow-y: auto;

    /* Liquid Glass */
    background: linear-gradient(
        160deg,
        rgba(14, 179, 240, 0.28) 0%,
        rgba(6, 17, 120, 0.72) 55%,
        rgba(4, 10, 80, 0.92) 100%
    );
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: -8px 0 40px rgba(6, 17, 120, 0.5), inset 1px 0 0 rgba(255,255,255,0.1);
}

/* Inner glass highlight line */
.slide-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    pointer-events: none;
}

.slide-menu.open {
    transform: translateX(0);
}

/* Close button */
.slide-menu-close {
    position: absolute;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.slide-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Logo inside menu */
.slide-menu-logo {
    margin-bottom: 28px;
}

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

/* Navigation links */
.slide-menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.slide-menu-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu-links li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.slide-menu-links a i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #0eb3f0;
}

.slide-menu-links a:hover {
    color: #fff;
    padding-left: 8px;
}

/* CTA buttons inside menu */
.slide-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.slide-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slide-menu-btn-blue {
    background: linear-gradient(135deg, #5db2ff 0%, #2f8ffc 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(47, 143, 252, 0.4);
}

.slide-menu-btn-green {
    background: linear-gradient(135deg, #2ae06b 0%, #1eaf50 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(30, 175, 80, 0.4);
}

.slide-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* Social icons inside menu */
.slide-menu-social {
    display: flex;
    gap: 16px;
}

.slide-menu-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.slide-menu-social a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
}

/* =============================================
   MODAL PROMOCIONAL
   ============================================= */
.promo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 5, 40, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal {
    position: relative;
    width: auto;
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.35s ease;
    background: transparent;
    line-height: 0;
}

.promo-modal img {
    display: block;
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
}

.promo-modal-overlay.active .promo-modal {
    transform: scale(1);
}

.promo-modal video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.promo-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.25s ease, transform 0.25s ease;
}

.promo-modal-close:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: rotate(90deg);
}

.promo-unmute-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 8px 18px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 10;
    transition: background 0.25s ease;
}

.promo-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.promo-unmute-btn.hidden {
    display: none;
}

/* =============================================
   MODALES DE CONTENIDO (calidad cards)
   ============================================= */
.calidad-card-clickable {
    cursor: pointer;
}

.calidad-card-clickable:hover {
    transform: translateY(-6px);
}

.content-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 50, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.content-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.content-modal {
    background: #0eb3f0;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.content-modal-overlay.active .content-modal {
    transform: scale(1);
}

.content-modal-close {
    position: sticky;
    top: 12px;
    float: right;
    margin: 12px 12px 0 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.content-modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: rotate(90deg);
}

.content-modal-body {
    padding: 24px 32px 36px;
}

.content-modal-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.content-modal-subtitle {
    font-family: var(--font-main);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.content-modal-body p {
    font-family: var(--font-main);
    font-size: 0.97rem;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 16px;
}

.content-modal-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 20px;
}

.modal-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.modal-col-text {
    flex: 1;
    min-width: 0;
}

.modal-col-img {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-col-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

.modal-divider {
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 20px 0;
}

.modal-specs {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-specs li {
    font-family: var(--font-main);
    font-size: 0.88rem;
    color: #fff;
    line-height: 1.5;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px;
}

.modal-specs li::before {
    content: '•';
    color: rgba(255,255,255,0.7);
}

.modal-specs-plain {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-specs-plain p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 600px) {
    .content-modal-body {
        padding: 16px 18px 28px;
    }

    .content-modal-title {
        font-size: 1.8rem;
    }

    .content-modal-subtitle {
        font-size: 1.1rem;
    }

    .modal-specs li {
        font-size: 0.82rem;
    }

    .modal-col-img {
        flex: 0 0 38%;
    }
}

@media (max-width: 500px) {
    .modal-row {
        flex-direction: column;
        gap: 14px;
    }

    .modal-col-img {
        flex: unset;
        width: 75%;
        max-width: 240px;
    }

    .content-modal-body {
        padding: 14px 16px 24px;
    }
}

/* =============================================
   DESKTOP ICON MENU (DROPDOWN)
   ============================================= */
.desktop-menu-container {
    position: relative;
    display: inline-block;
}

.desktop-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.desktop-menu-btn span {
    display: block;
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.desktop-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: scale(1.05);
}

/* Transform to X when active */
.desktop-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.desktop-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.desktop-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Submenu Dropdown Container */
.desktop-submenu {
    position: absolute;
    top: 55px;
    right: 0;
    width: 250px;
    background: linear-gradient(135deg, rgba(10, 79, 137, 0.98) 0%, rgba(6, 17, 120, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.desktop-submenu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Items */
.desktop-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-submenu li {
    margin: 0;
    padding: 0;
}

.desktop-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.desktop-submenu a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: #0eb3f0;
    transition: color 0.25s ease;
}

.desktop-submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffd700;
    padding-left: 28px;
}

.desktop-submenu a:hover i {
    color: #ffd700;
}

@media (max-width: 850px) {
    .desktop-menu-container {
        display: none !important;
    }
}