/* 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE STYLES (MODERN DESIGN)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

/* Hero Section with World Map */
.contact-hero {
    position: relative;
    height: 500px;
    background-color: #0a192f; /* Deep dark blue/black */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/contact-hero-map.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #000000, transparent);
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
}

.contact-hero h1 {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Grid Section */
.contact-grid-section {
    background-color: #000000; /* Pure black background as per image */
    padding: 0 0 100px;
    margin-top: -80px; /* Pull up to overlap hero slightly */
    position: relative;
    z-index: 10;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Form Card Styles */
.contact-form-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    margin-bottom: 40px;
}

.card-header h2 {
    font-size: 36px;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.accent-line {
    width: 40px;
    height: 4px;
    background-color: #f1c40f; /* Yellow accent line */
    border-radius: 2px;
}

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

.modern-form .form-group {
    margin-bottom: 25px;
}

.modern-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-send {
    width: auto;
    min-width: 180px;
    padding: 16px 30px;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: none;
    margin-top: 10px;
}

.btn-send:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Info Panel Styles */
.contact-info-panel {
    color: #ffffff;
    padding-top: 20px;
}

.info-section {
    margin-bottom: 50px;
}

.info-section h3 {
    font-size: 24px;
    color: var(--color-primary); /* Green heading */
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(45, 90, 27, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1c40f; /* Yellow icons */
    flex-shrink: 0;
}

.item-text strong {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.item-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.item-text span {
    color: var(--color-accent); /* Lime green for sales number */
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Quality Badge Panel */
.quality-badge-panel {
    background-color: rgba(45, 90, 27, 0.3);
    border: 1px solid rgba(141, 198, 63, 0.2);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.badge-content h4 {
    font-size: 18px;
    color: #f1c40f; /* Yellow heading */
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.badge-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-hero h1 {
        font-size: 48px;
    }
    
    .contact-form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 400px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-section {
        margin-top: -40px;
    }
}

/* Form Status */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-size: 14px;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
}
