/* ==========================================================================
   LUXURY MAROON CONTACT PAGE STYLES (KEEP THIS)
   ========================================================================== */

/* --- LUXURY CONTACT PAGE MAIN SECTION --- */
.luxury-contact-section {
    background-color: #560202; /* Deep Maroon Shade */
    padding: 60px 20px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER SECTION */
.contact-main-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-main-header h1 {
    font-size: 3rem;
    color: #ffcc00; /* Golden Color */
    margin: 0 0 5px 0;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    font-weight: bold;
}

.gold-decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gold-decorative-divider .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffcc00, transparent);
}

.gold-decorative-divider .diamond {
    color: #ffcc00;
    font-size: 0.9rem;
}

.contact-main-header p {
    font-size: 1.1rem;
    color: #ffdca3;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* GRID LAYOUT */
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* LEFT COLUMN: OFFICE CARDS */
.office-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-card {
    border: 2px solid #ffcc00;
    border-radius: 16px;
    overflow: hidden;
    background-color: #400101; /* Darker Maroon for contrast */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.office-card-header {
    background-color: #ffcc00;
    color: #400101;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 12px 20px;
    text-align: center;
    letter-spacing: 1px;
}

.office-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 1px dashed rgba(255, 204, 0, 0.2);
    padding-bottom: 15px;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 35px;
    height: 35px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #400101;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-text label {
    display: block;
    font-size: 0.8rem;
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-text p, .info-text a {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
}
.info-text p.address-text {
    font-weight: 600;
    color: #fff6e0;
}
.info-text a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

/* RIGHT COLUMN: PREMIUM FORM CARD */
.luxury-form-card {
    background-color: #fdf2d5; /* Cream/Soft-yellow tint layout */
    border: 3px double #ffcc00;
    border-radius: 16px;
    padding: 53px;
    color: #400101;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.form-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-card-header h2 {
    font-size: 1.6rem;
    color: #560202;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-deco-line {
    width: 60px;
    height: 2px;
    background-color: #ffcc00;
    margin: 0 auto;
}

/* INPUT DESIGN */
.input-group-field {
    position: relative;
    margin-bottom: 20px;
}

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

.field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #560202;
    font-size: 1rem;
}

.textarea-group .field-icon {
    top: 22px;
    transform: none;
}

.input-group-field input, .input-group-field textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(86, 2, 2, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #400101;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-group-field input:focus, .input-group-field textarea:focus {
    border-color: #560202;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(86, 2, 2, 0.15);
}

/* RED/GOLD GRADIENT BUTTON */
.form-submit-btn-gold {
    width: 100%;
    background: linear-gradient(180deg, #8a0606 0%, #4a0101 100%);
    color: #ffffff;
    border: 2px solid #ffcc00;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.form-submit-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.2);
    background: linear-gradient(180deg, #a60a0a 0%, #5d0202 100%);
}

/* BOTTOM STRIP CONTAINER */
.quick-info-footer-strip {
    border: 2px solid #ffcc00;
    border-radius: 16px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(64, 1, 1, 0.5);
    backdrop-filter: blur(5px);
}

.strip-item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-right: 1px solid rgba(255, 204, 0, 0.3);
    padding-right: 10px;
}

.strip-item:last-child {
    border-right: none;
    padding-right: 0;
}

.strip-icon {
    width: 45px;
    height: 45px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #400101;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.strip-content .strip-title {
    display: block;
    font-size: 0.75rem;
    color: #ffcc00;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.strip-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.4;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .quick-info-footer-strip {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .strip-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .form-row-two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .quick-info-footer-strip {
        grid-template-columns: 1fr;
    }
    .strip-item {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 204, 0, 0.2);
        padding-bottom: 15px;
    }
    .strip-item:last-child {
        border-bottom: none;
    }
    .contact-main-header h1 {
        font-size: 2.2rem;
    }
}
















/* --- SOCIAL FOLLOW CONTAINER --- */
.social-follow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align rakhne ke liye, center chahiye to center likhein */
    /* gap: 8px; */
    font-family: 'Poppins', sans-serif; /* Ya aapka jo bhi main font ho */
}

/* "Follow Us" Text Style */
.follow-text-heading {
    /* font-size: 1.1rem;
    font-weight: 200;
    color: #333333; 
    letter-spacing: 0.5px;
    margin: 0; */
        color: #666;
    font-size: 0.75rem;

}

/* Icons ki Row */
.social-icons-wrapper {
    display: flex;
    gap: 8px; /* Icons ke beech ka gap */
    align-items: center;
}

/* Individual Icon Button Style */
.social-icon-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f5f5f5; /* Light grey background */
    color: #555555; /* Default icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* --- HOVER EFFECTS (Social Media Brands Colors) --- */
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.youtube:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateY(-3px);
}
