/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */

/* ========================================
   HERO CONTACT SECTION
   ======================================== */
.contact-hero-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 80px 0 100px;
    position: relative;
}

.hero-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.hero-text-section {
    flex: 1;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    max-width: 600px;
}

/* Social Sidebar */
.social-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Contact Form */
.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    padding: 14px 18px;
    font-size: 15px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-bottom-color: #4CAF50;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #4CAF50;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #43A047;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit i {
    font-size: 18px;
}

/* ========================================
   CONTACT INFO SECTION
   ======================================== */
.contact-info-section {
    padding: 100px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-text-column .section-label {
    margin-bottom: 16px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1a1a;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.info-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #4CAF50;
}

.info-hours {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: #4CAF50;
    padding: 80px 0;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-heading {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}

.newsletter-text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 50px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    font-size: 15px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
}

.btn-subscribe {
    background: #fff;
    color: #4CAF50;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #f5f5f5;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet - Below 900px */
@media (max-width: 900px) {
    .hero-main-title {
        font-size: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile - Below 768px */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .social-sidebar {
        flex-direction: row;
        position: static;
        justify-content: center;
    }
    
    .hero-main-title {
        font-size: 32px;
    }
    
    .hero-main-title br {
        display: none;
    }
    
    .form-control {
        padding: 12px 16px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-heading {
        font-size: 32px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }
    
    .newsletter-input {
        text-align: center;
    }
    
    .btn-subscribe {
        width: 100%;
    }
}

/* Small Mobile - Below 480px */
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .newsletter-heading {
        font-size: 28px;
    }
    
    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
