:root {
    --primary-gradient: linear-gradient(135deg, #011e41 0%, #006aa4 100%);
    --secondary-gradient: linear-gradient(135deg, #fbc02d 0%, #f9a825 100%);
    --primary-color: #011e41;
    --accent-color: #006aa4;
    --secondary-color: #fbc02d;
    --light-bg: #f8fafc;
    --card-shadow: 0 30px 60px rgba(1, 30, 65, 0.08);
    --item-shadow: 0 15px 30px rgba(1, 30, 65, 0.04);
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 60px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.08;
    mix-blend-mode: luminosity;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.hero-shape .shape-fill {
    fill: #ffffff;
}

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

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 10px 28px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--secondary-color);
}

/* Glassy Ambient Blobs behind the cards */
.contact-card-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
}

.contact-card-wrapper::before,
.contact-card-wrapper::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.45;
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate ease-in-out;
}

.contact-card-wrapper::before {
    background: radial-gradient(circle, rgba(0, 106, 164, 0.35) 0%, rgba(1, 30, 65, 0) 70%);
    top: 10%;
    left: -100px;
}

.contact-card-wrapper::after {
    background: radial-gradient(circle, rgba(251, 192, 45, 0.25) 0%, rgba(249, 168, 37, 0) 70%);
    bottom: 20%;
    right: -100px;
    animation-delay: 5s;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(20px, -20px); }
}

.main-contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow), inset 0 1px 1px rgba(255,255,255,0.8);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.main-contact-card:hover {
    box-shadow: 0 35px 70px rgba(1, 30, 65, 0.16);
    border-color: rgba(0, 106, 164, 0.15);
}

.info-panel {
    background: transparent;
    padding: 50px 40px;
    height: 100%;
    position: relative;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary-gradient);
    opacity: 0.85;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 24px;
    background: rgba(248, 250, 252, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 24px;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 10px rgba(1, 30, 65, 0.02);
}

.info-item:hover {
    background: white;
    box-shadow: 0 15px 30px rgba(1, 30, 65, 0.08);
    border-color: rgba(0, 106, 164, 0.25);
    transform: translateY(-5px) scale(1.02);
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(1, 30, 65, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.info-item:hover .icon-box::before {
    left: 100%;
}

.info-item:hover .icon-box {
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 106, 164, 0.3);
}

.action-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(0, 106, 164, 0.06);
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 106, 164, 0.08);
}

.action-link-btn:hover {
    background: var(--primary-gradient);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 106, 164, 0.2);
}

/* Map frame styling */
.map-card-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(1, 30, 65, 0.1);
    border: 8px solid rgba(255, 255, 255, 0.9);
    position: relative;
    transition: var(--transition);
    background: white;
}

.map-card-wrapper:hover {
    box-shadow: 0 35px 70px rgba(1, 30, 65, 0.15);
    transform: translateY(-5px);
}

.map-wrapper {
    height: 100%;
    min-height: 520px;
    position: relative;
    background: #e2e8f0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: contrast(1.05) saturate(1.1) brightness(0.95);
    transition: var(--transition);
}

.map-wrapper:hover iframe {
    filter: contrast(1.05) saturate(1.1) brightness(1);
}

.directions-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(1, 30, 65, 0.15);
    z-index: 100;
    max-width: 90%;
}

.social-bar {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.social-btn {
    width: 52px;
    height: 52px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(1, 30, 65, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 1.25rem;
    text-decoration: none;
}

.social-btn:hover {
    color: white !important;
    transform: translateY(-8px) scale(1.1);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 12px 25px rgba(24, 119, 242, 0.4);
}

.social-btn.twitter:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 12px 25px rgba(204, 35, 102, 0.4);
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4);
}

.premium-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--card-shadow), inset 0 1px 1px rgba(255,255,255,0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.premium-form-card:hover {
    box-shadow: 0 35px 70px rgba(1, 30, 65, 0.16);
    border-color: rgba(0, 106, 164, 0.15);
}

.premium-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--secondary-gradient);
}

.form-label {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.premium-input {
    background: rgba(248, 250, 252, 0.7);
    border: 2px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 16px 20px;
    transition: var(--transition);
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.premium-input::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

.premium-input:focus {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 106, 164, 0.12), 0 0 0 5px rgba(0, 106, 164, 0.15);
    transform: translateY(-2px);
}

.btn-premium {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px 45px;
    font-weight: 750;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(1, 30, 65, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(1, 30, 65, 0.35);
    color: var(--secondary-color) !important;
}

.btn-premium:active {
    transform: translateY(-1px);
}

.office-hours-badge {
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-left: 6px solid var(--secondary-color);
    border-radius: 20px;
    padding: 28px;
    margin-top: 35px;
    box-shadow: 0 8px 24px rgba(1, 30, 65, 0.03);
    transition: var(--transition);
}

.office-hours-badge:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(1, 30, 65, 0.08);
    transform: scale(1.02);
}

.opening-tag {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.opening-tag.bg-soft-success {
    background-color: rgba(46, 196, 182, 0.15) !important;
    color: #128c7e !important;
    border: 1px solid rgba(46, 196, 182, 0.25);
}

.opening-tag.bg-soft-danger {
    background-color: rgba(255, 51, 102, 0.12) !important;
    color: #ff3366 !important;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

/* Pulsing Status Dot */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.pulse-success {
    background-color: #2ec4b6;
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    animation: statusPulseGreen 1.6s infinite;
}

.status-dot.pulse-danger {
    background-color: #ff3366;
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    animation: statusPulseRed 1.6s infinite;
}

@keyframes statusPulseGreen {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(46, 196, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

@keyframes statusPulseRed {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 51, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.hide { display: none !important; }
.iti { width: 100%; }
.iti__flag-container { border-radius: 14px 0 0 14px; }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.6;
    z-index: -1;
    top: 0;
    left: 0;
    animation: whatsappPulse 2.4s infinite ease-out;
}

.whatsapp-float::after {
    animation-delay: 1.2s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .map-wrapper { min-height: 400px; }
    .premium-form-card { padding: 40px; }
    .hero-section { padding: 50px 0 60px; }
    .contact-card-wrapper { margin-top: -30px; }
}

@media (max-width: 576px) {
    .premium-form-card { padding: 25px; }
    .whatsapp-float { bottom: 20px; left: 20px; width: 55px; height: 55px; font-size: 28px; }
    .info-panel { padding: 30px 20px; }
}
