/* ====================================================================
   PREMIUM CONTACT PAGE — Zenora Dental
   ==================================================================== */

:root {
    --primary: #011f23;
    --primary-light: #022c32;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
}

body {
    background-color: var(--bg-light);
}

/* ── Premium Hero Banner ─────────────────────────────────────────── */
.contact-hero {
    position: relative;
    padding: 200px 0 120px;
    background: var(--primary);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(2, 44, 50, 0.8) 0%, transparent 50%);
    z-index: 2;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(50%) contrast(120%);
}

.contact-hero .container {
    position: relative;
    z-index: 3;
}

.contact-hero_content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: #5eead4;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.premium-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5eead4;
    box-shadow: 0 0 10px #5eead4;
}

.contact-hero_content h1 {
    color: #fff;
    font-family: Sora, sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-hero_content h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #5eead4 0%, #0d9488 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 0;
}

.contact-hero_para {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Premium Layout Grid ─────────────────────────────────────────── */
.contact-section {
    position: relative;
    padding: 0 0 120px;
    z-index: 10;
    margin-top: -80px;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* ── Premium Info Cards ──────────────────────────────────────────── */
.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premium-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(1, 31, 35, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.premium-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(13, 148, 136, 0.1);
    background: #fff;
}

.premium-info-card:hover::before {
    transform: scaleY(1);
}

.info-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.info-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.premium-info-card h3 {
    font-family: Sora, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    word-spacing: 0.1em;
}

.premium-info-card p, 
.premium-info-card a {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.premium-info-card a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s;
}

.premium-info-card a:hover {
    color: var(--accent);
}

/* ── Premium Form Card ───────────────────────────────────────────── */
.premium-form-wrapper {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 24px 80px rgba(1, 31, 35, 0.08);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: Sora, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    word-spacing: 0.1em;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-group {
    position: relative;
}

.input-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #fff;
    padding: 0 8px;
    font-family: Sora, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
    transition: color 0.3s;
}

.premium-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-family: Sora, sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.premium-input:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
    outline: none;
}

.premium-input:focus + .input-label {
    color: var(--accent);
}

textarea.premium-input {
    resize: vertical;
    min-height: 150px;
}

.premium-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 18px 32px;
    font-family: Sora, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.premium-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.premium-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 31, 35, 0.2);
}

.premium-submit:hover::before {
    transform: translateX(100%);
}

.premium-submit:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s;
}

.premium-submit:hover .btn-icon {
    transform: translateX(4px) translateY(-4px);
}

/* ── Socials ─────────────────────────────────────────────────────── */
.premium-socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.social-circle:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

/* ── Map Section ─────────────────────────────────────────────────── */
.premium-map-section {
    padding: 0 0 120px;
}

.map-card {
    background: #fff;
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(1, 31, 35, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.map-visual-premium {
    height: 400px;
    background: #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    /* Optional: placeholder gradient if no iframe */
    background: linear-gradient(45deg, #f1f5f9 0%, #e2e8f0 100%);
}

.map-visual-premium iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.5) contrast(1.1) opacity(0.9);
    transition: filter 0.5s;
}

.map-visual-premium:hover iframe {
    filter: grayscale(0) contrast(1) opacity(1);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        margin-top: -40px;
    }
    
    .contact-hero {
        padding: 180px 0 100px;
    }
}

@media (max-width: 767px) {
    .premium-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero_content h1 {
        font-size: 2.5rem;
    }
    
    .map-visual-premium {
        height: 300px;
    }
}
