.contact-premium-suite {
    background-color: #fafbfc;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* 🧱 TOP SPACE BRIDGE (Creates breathing room from navbar/header) */
.contact-top-spacing-bridge {
    height: 90px; 
}
@media (max-width: 768px) {
    .contact-top-spacing-bridge { height: 50px; }
}

/* Badges Styling */
.contact-mini-badge, .faq-mini-badge {
    color: #e04a80;
    background: rgba(224, 74, 128, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}
.faq-mini-badge {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.08);
}

.contact-main-title {
    font-size: calc(1.8rem + 1vw);
    letter-spacing: -1px;
}
.contact-subtitle {
    font-size: 0.95rem;
    max-width: 540px;
}

/* 🏢 LEFT PANEL: INFO CARD */
.contact-info-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.info-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c00;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.info-item-row:hover .info-icon-wrapper {
    background: #e04a80;
    color: #ffffff;
    transform: scale(1.05);
}

/* Social Icon Rings */
.social-contact-rings {
    display: flex;
    gap: 12px;
}
.social-ring-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
}
.social-ring-link:hover {
    background: #e04a80;
    color: #ffffff;
    transform: translateY(-3px);
}

/* 🗳️ RIGHT PANEL: FORM INPUTS WITH SPACING */
.contact-form-card {
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03) !important;
}
.form-group-custom {
    margin-bottom: 4px; /* Added spacing buffer */
}
.custom-form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px; /* Increased from 6px to 8px */
    display: block;
}
.custom-form-control {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 13px 16px; /* Slightly roomier padding */
    font-size: 0.92rem;
    color: #0f172a;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-form-control:focus {
    border-color: #e04a80;
    box-shadow: 0 0 0 4px rgba(224, 74, 128, 0.08);
    outline: 0;
}

/* Button */
.btn-brand-gradient-submit {
    background: linear-gradient(135deg, #e04a80 0%, #ff8c00 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 74, 128, 0.2);
}
.btn-brand-gradient-submit:hover {
    background: linear-gradient(135deg, #cc3b70 0%, #e67e00 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(224, 74, 128, 0.3);
}

/* ❓ INTERACTIVE FAQ STYLING WITH RESPONSIVE SPACING */
.faq-luxury-wrapper {
    margin-top: 100px !important; /* Generous separation from upper grid */
}
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Increased card separation */
}
.faq-luxury-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-luxury-header {
    padding: 22px 26px; /* Increased touch targets */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question-text {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.2s ease;
}
.faq-luxury-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* FAQ Active Target State */
.faq-luxury-item.active-faq {
    border-color: rgba(224, 74, 128, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}
.faq-luxury-item.active-faq .faq-question-text {
    color: #e04a80;
}
.faq-luxury-item.active-faq .faq-luxury-toggle {
    background: #e04a80;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-luxury-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 26px;
}
.faq-luxury-body p {
    padding-bottom: 22px;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.6;
}