/* Contact Page (contact.html) - Premium styles */

.contact-hero {
    background:
        linear-gradient(135deg, rgba(0,108,228,0.85) 0%, rgba(0,53,128,0.85) 100%),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1920&auto=format&fit=crop') center/cover;
    padding: 110px 0 70px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 25% 25%, rgba(254,187,2,0.14), transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,0.10), transparent 52%);
    transform: rotate(12deg);
    pointer-events: none;
}

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

.contact-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.12;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.25);
}

.contact-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    font-weight: 600;
}

.hero-badge i { color: #febb02; }

.live-clock {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    display: inline-block;
    min-width: 260px;
}

.clock-label {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.85;
}

.clock-time {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    margin-top: 6px;
    line-height: 1.1;
}

.clock-date {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-top: 4px;
}

.attraction-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 22px 55px rgba(0,0,0,0.25);
    position: relative;
    transform: translateZ(0);
}

.attraction-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 40%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.attraction-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

.attraction-overlay {
    position: absolute;
    inset: auto 16px 16px 16px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
}

.attraction-title {
    font-weight: 800;
    margin: 0 0 2px;
}

.attraction-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.attraction-card:hover img { transform: scale(1.08); }
.attraction-card:hover::after { transform: translateX(120%); }

.contact-wrap { padding: 60px 0; }

.info-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
    padding: 18px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,108,228,0.22);
    box-shadow: 0 24px 55px rgba(0,0,0,0.10);
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,108,228,0.10);
    color: #006ce4;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-form-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 22px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-form-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(0,108,228,0.10) 0%, rgba(254,187,2,0.12) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-form-body { padding: 22px; }

.premium-input {
    border: 2px solid #e7edf6;
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    background-color: #fbfcfe;
}

.premium-input:focus {
    border-color: #006ce4;
    box-shadow: 0 0 0 4px rgba(0,108,228,0.10);
    background-color: #fff;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0,0,0,0.45);
    pointer-events: none;
}

.input-with-icon { position: relative; }
.input-with-icon .premium-input { padding-left: 42px; }

.btn-premium {
    background: linear-gradient(135deg, #006ce4 0%, #0048a0 100%);
    border: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 12px 18px;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,108,228,0.25);
    color: #fff;
}

.mini-note {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.6);
}

.map-embed {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    background: #fff;
}

@media (max-width: 991.98px) {
    .contact-hero { padding: 90px 0 60px; }
    .contact-hero h1 { font-size: 2.6rem; }
    .attraction-card img { height: 300px; }
    .live-clock { min-width: 240px; }
}

