/* ═══════════════════════════════════════════════════════════════════════════
   MODERN CONTACT US PAGE - Touch & Glow Beauty Parlour
   ═══════════════════════════════════════════════════════════════════════════ */

/* Modern Page Header */
.modern-contact-header {
    position: relative;
    padding: 120px 0 80px;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%), 
        url('../images/touch&glowbbsr_contact_us.jpg') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.contact-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
    pointer-events: none;
}

.contact-header-content {
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bf9456;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: #bf9456;
}

.contact-breadcrumb .separator {
    margin: 0 10px;
    color: #bf9456;
}

/* Modern Contact Section */
.modern-contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-card-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Modern Form Styling */
.modern-form-group {
    position: relative;
    margin-bottom: 25px;
}

.modern-form-input,
.modern-form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modern-form-input:focus,
.modern-form-textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #bf9456;
    box-shadow: 0 0 0 4px rgba(191, 148, 86, 0.1);
}

.modern-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.modern-form-input::placeholder,
.modern-form-textarea::placeholder {
    color: #999999;
}

/* Honeypot field */
input[name="website"] {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Submit Button */
.modern-submit-btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #bf9456 0%, #d4a866 100%);
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(191, 148, 86, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(191, 148, 86, 0.4);
    background: linear-gradient(135deg, #d4a866 0%, #bf9456 100%);
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bf9456 0%, #d4a866 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.info-text a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #bf9456;
}

/* Social Links in Contact Info */
.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, #bf9456 0%, #d4a866 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(191, 148, 86, 0.3);
}

/* Map Section */
.modern-map-section {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.modern-map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Alert Messages */
.modern-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.modern-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.modern-alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.modern-alert strong {
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
    .contact-title {
        font-size: 42px;
    }
    
    .form-card-title,
    .info-card-title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .modern-contact-header {
        padding: 100px 0 60px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .modern-contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .modern-contact-header {
        padding: 80px 0 50px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .modern-contact-section {
        padding: 50px 0;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .form-card-title,
    .info-card-title {
        font-size: 24px;
    }
    
    .modern-form-input,
    .modern-form-textarea {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .modern-submit-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .modern-map-section iframe {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .contact-title {
        font-size: 28px;
    }
    
    .form-card-title,
    .info-card-title {
        font-size: 22px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .modern-map-section iframe {
        height: 300px;
    }
}

/* Accessibility */
.modern-form-input:focus,
.modern-form-textarea:focus,
.modern-submit-btn:focus {
    outline: 2px solid #bf9456;
    outline-offset: 2px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .contact-form-card,
    .modern-submit-btn,
    .contact-social-link {
        animation: none !important;
        transition: none !important;
    }
}
