/* ============================================
   QUICK WINS CSS ENHANCEMENTS
============================================ */

/* Logo Responsive  */
/* Logo Responsive  */
.logo-img {
    max-height: 135px;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 70px !important;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 55px !important;
    }
}

/* Glow Pulse Effect for Urgency Stats */
.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(255, 184, 0, 0.7);
    }
}

/* CTA Urgency Text Styling */
.cta-urgency strong {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(255, 184, 0, 0.3);
}

/* ============================================
   HEADER FIX (OPTION 1: STATIC LOGO, FIXED COUNTDOWN)
============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    /* More opaque */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    /* Keep header in normal sticky flow */
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    margin-top: 0 !important;
}

/* FORCE VERTICAL ALIGNMENT ONLY */
.header-content {
    display: flex !important;
    align-items: center !important;
}

/* Ensure Logo is centered vertically */
.logo,
.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Keep countdown in normal document flow */
.top-countdown-bar {
    position: relative !important;
    top: auto !important;
    left: 0;
    right: 0;
    z-index: 1001;
    min-height: 0;
}

/* Remove sticky header behavior from style.css overrides */
@media (min-width: 900px) {
    .header {
        position: relative !important;
        top: auto !important;
    }
}

/* ============================================
   VISITANOS SECTION (TRUST BUILDER)
============================================ */
.section-visit {
    margin: 4rem auto;
    padding: 0 1.5rem;
    max-width: 1200px;
}

.visit-card {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.visit-content {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.visit-content p {
    color: #444;
    /* Darker text for visibility on light/glass background */
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.visit-map {
    flex: 1;
    min-width: 350px;
    min-height: 350px;
    background: #1a1a1a;
    position: relative;
}

.visit-details {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visit-item i {
    font-size: 1.8rem;
    color: #ffb800;
    /* Primary gold color */
    background: rgba(255, 184, 0, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.visit-item strong {
    display: block;
    color: #333;
    /* Dark text for visibility */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.visit-item span {
    color: #555;
    /* Dark grey text */
    font-size: 1.1rem;
    font-weight: 500;
}

.visit-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .visit-card {
        flex-direction: column;
    }

    .visit-map {
        min-height: 300px;
        width: 100%;
    }

    .visit-content {
        padding: 2rem;
        order: 1;
        /* Content first */
    }

    .visit-map {
        order: 2;
        /* Map second */
    }
}

/* Webpay Logo Enhancement */
.webpay-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 5px auto;
    /* Center horizontally */
}

.getnet-trust-logo {
    max-width: 195px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: none;
}

/* Ensure horizontal alignment of trust titles by fixing icon container height */
.trust-icon {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
