: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 20px 40px rgba(1, 30, 65, 0.08);
    --item-shadow: 0 10px 20px rgba(1, 30, 65, 0.04);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 40px 0 70px;
    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);
}

.contact-card-wrapper {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.main-contact-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid rgba(1, 30, 65, 0.05);
}

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

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

.info-item {
    display: flex;
    align-items: center;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.info-item:hover {
    background: white;
    box-shadow: var(--item-shadow);
    border-color: rgba(0, 106, 164, 0.15);
    transform: translateX(10px);
}

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

.info-item:hover .icon-box {
    color: white;
    transform: scale(1.05) rotate(5deg);
}

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

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

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

.social-btn {
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--item-shadow);
    transition: var(--transition);
    border: 1px solid #edf2f7;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: var(--primary-gradient);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(1, 30, 65, 0.2);
}

.premium-form-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(1, 30, 65, 0.05);
    position: relative;
    overflow: hidden;
}

.premium-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    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: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    transition: var(--transition);
    font-size: 1rem;
    color: #334155;
}

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

.premium-input:focus {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 5px rgba(0, 106, 164, 0.1);
}

.btn-premium {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 18px 45px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 12px 24px rgba(1, 30, 65, 0.2);
    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.2), transparent);
    transition: all 0.5s ease;
}

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

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(1, 30, 65, 0.3);
    color: var(--secondary-color);
}

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

.office-hours-badge {
    background: linear-gradient(to right, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--secondary-color);
    border-radius: 16px;
    padding: 24px;
    margin-top: 35px;
    box-shadow: var(--item-shadow);
}

.opening-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

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

@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; }
}
