
/* === CSS VARIABLES === */
:root {
    --lux-bg: #f8f6f3;
    --lux-white: #fff;
    --lux-grey: #eae6df;
    --lux-gold: #d4af37;
    --lux-green: #3a5a40;
    --lux-blue: #1a2238;
    --lux-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.10);
    --lux-glass: rgba(255, 255, 255, 0.55);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
}

a {
    text-decoration: none;
}

/* === COMMON COMPONENTS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === CONTACT PAGE STYLES === */

/* Alert Styles */
.alert {
    padding: 1rem 0;
    margin-bottom: 0;
    border-radius: 0;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert p {
    margin: 0;
    font-size: 1rem;
}

.contact-hero {
    background: linear-gradient(135deg, var(--lux-blue) 0%, #2a3f5f 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--lux-white);
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.contact-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.contact-page-section {
    padding: 4rem 0;
    background: var(--lux-bg);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Left Side - Contact Info Box */
.contact-info-box {
    background: var(--lux-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--lux-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-box-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.info-box-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lux-blue);
    margin-bottom: 0.5rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.info-box-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.1rem;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--lux-blue);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lux-blue);
    margin-bottom: 0.5rem;
}

.info-content a,
.info-content address,
.info-content div {
    color: var(--lux-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--lux-gold);
}

/* Social Media Section */
.social-section .info-content {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: var(--lux-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-link i {
    font-size: 1rem;
}

/* Social Media Brand Colors */
.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #dc2743;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

/* Right Side - Contact Form Box */
.contact-form-box {
    background: linear-gradient(135deg, var(--lux-white) 0%, rgba(248, 246, 243, 0.8) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--lux-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-box-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-box-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lux-blue);
    margin-bottom: 0.5rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.form-box-header p {
    color: #666;
    font-size: 1rem;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--lux-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--lux-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    flex: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    color: var(--lux-blue);
    border: 2px solid var(--lux-gold);
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fffbe6 0%, var(--lux-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.map-section {
    padding: 3rem 0;
    background: var(--lux-white);
}

.map-content {
    text-align: center;
    margin-bottom: 2rem;
}

.map-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lux-blue);
    margin-bottom: 1rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--lux-shadow);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-page-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-page-section {
        padding: 3rem 0;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 2rem;
    }
    
    .info-box-header h2 {
        font-size: 1.8rem;
    }
    
    .form-box-header h3 {
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
    
    .map-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .map-content h3 {
        font-size: 1.6rem;
    }
    
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Additional responsive improvements */
@media (max-width: 600px) {
    .contact-page-content {
        gap: 2rem;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
    
    .info-box-header h2,
    .form-box-header h3 {
        font-size: 1.6rem;
    }
}