.premium-contact-section {
    position: relative;
    padding: 100px 5%;
    background: #fffefb; 
    overflow: hidden;
    min-height: 80vh;
}


.bg-blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}
.maroon-blob { background: #800000; top: -200px; right: -100px; }
.gold-blob { background: #f4c430; bottom: -200px; left: -100px; }

/* --- Grid Layout --- */
.contact-container { position: relative; z-index: 2; }
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Map & Pills --- */
.map-card {
    height: 450px;
    background: #fff;
    padding: 12px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    transition: 0.6s ease;
}
.map-card:hover { transform: perspective(1000px) rotate(0); }
.map-card iframe { border-radius: 20px; }

.pills-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-pill {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-pill i { color: #800000; font-size: 1.2rem; }
.main-val { display: block; font-weight: 700; color: #333; }
.sub-label { font-size: 0.7rem; color: #999; text-transform: uppercase; }

.contact-pill:hover {
    background: #800000;
    border-color: #800000;
    transform: translateX(10px);
}
.contact-pill:hover .main-val, .contact-pill:hover i { color: #fff; }
.contact-pill:hover .sub-label { color: #f4c430; }

/* --- Text & Form --- */
.shimmer-gold {
    background: linear-gradient(90deg, #b8860b, #f4c430, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite;
    font-weight: 800;
}
@keyframes goldShimmer { to { background-position: 200% center; } }

.main-title { font-size: 2.8rem; color: #1a1a1a; margin: 10px 0; line-height: 1.1; }
.top-tag { color: #800000; font-weight: 800; letter-spacing: 2px; font-size: 0.8rem; }

.glass-form { display: flex; flex-direction: column; gap: 20px; }
.input-wrapper input, .glass-form textarea {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: 1.5px solid #eee;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: 0.3s;
}
.input-wrapper input:focus, .glass-form textarea:focus {
    border-color: #800000;
    outline: none;
    background: #fff;
}

.submit-glow-btn {
    background: #800000;
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.submit-glow-btn:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(128,0,0,0.2); }

/* --- Success State --- */
.hidden-success { display: none; text-align: center; padding: 40px; }
.check-circle { 
    width: 60px; height: 60px; background: #800000; color: #fff; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .map-card { height: 300px; transform: none; }
}







* {
    box-sizing: border-box; 
}

html, body {
    max-width: 100%;
    overflow-x: hidden; 
}


@media (max-width: 900px) {
    .premium-contact-section {
        padding: 40px 15px;
    }

    .contact-grid {
        display: flex;
        flex-direction: column; 
        gap: 30px;
        width: 100%;
    }

  
    .form-column {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .main-title {
        font-size: 1.8rem; 
        width: 100%;
        word-wrap: break-word;
    }

    .shimmer-gold {
        font-size: 1.6rem;
        display: block;
    }

    
    .glass-form {
        width: 100%;
        padding: 0;
    }

    .input-wrapper input, .glass-form textarea {
        width: 100% !important; 
        font-size: 16px; 
    }

    .submit-glow-btn {
        width: 100%;
    }

    
    .visual-column {
        width: 100%;
        order: 2; 
        transform: none !important; 
    }

    .map-card {
        height: 250px; 
        width: 100%;
        transform: none !important;
        margin-bottom: 20px;
    }

    
    .pills-container {
        position: relative; 
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contact-pill {
        width: 100%; 
        justify-content: flex-start;
        padding: 15px;
        background: #fff;
        border: 1px solid #ddd;
    }

    .main-val {
        font-size: 0.9rem;
        word-break: break-all;
    }

    
    .bg-blob {
        display: none;
    }
}


@media (max-width: 400px) {
    .main-title {
        font-size: 1.5rem;
    }
    .contact-pill {
        padding: 12px;
    }
    .main-val {
        font-size: 0.8rem;
    }
}






























/* --- DRAMA CARD SPECIFIC POLISH --- */
.reveal-drama {
    position: relative;
    background: #1a0205 !important; /* Deep Maroon base */
    border: 2px solid rgba(244, 196, 48, 0.3);
}

.stage-light {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top, rgba(244, 196, 48, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gold-text {
    color: #f4c430;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.category-pill {
    background: #f4c430;
    color: #800000;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 10px;
}

.drama-tags {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.drama-tags span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(244, 196, 48, 0.2);
}

/* Hover Effect for Drama Card */
.reveal-drama:hover .stage-light {
    background: radial-gradient(circle at top, rgba(244, 196, 48, 0.3) 0%, transparent 80%);
    transition: 0.5s ease;
}