/* ==========================================
   CONTACT SECTION STYLES
   ========================================== */

.contact-section {
    background: #e8e8e8;
    padding: 4rem 0 0 0;
}

.contact-main-title {
    font-family: 'Open Runde', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ccc;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6600;
}

.contact-icon svg {
    stroke: #ff6600;
}

.contact-info-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Contact Footer Grid */
.contact-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 4rem;
    padding: 3rem 0;
    border-top: 2px solid #ccc;
}

/* Brand Section */
.contact-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

/* Social Links */
.social-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #c13584;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-icon svg {
    fill: white;
}

/* Footer Links */
.contact-footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 0.75rem;
}

.footer-links-column a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.footer-links-column a:hover {
    color: #1a1a1a;
}

/* Subscribe Section */
.contact-footer-subscribe h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-footer-subscribe p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.subscribe-form {
    display: flex;
    gap: 0;
    background: #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    background: #3a3a3a;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.subscribe-form input::placeholder {
    color: #999;
}

.subscribe-form button {
    padding: 1rem 1.5rem;
    background: #ff6600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #e55a00;
}

.subscribe-form button svg {
    stroke: white;
}

/* Copyright */
.contact-copyright {
    background: #1a1a1a;
    padding: 1.5rem 0;
    margin-top: 3rem;
    width: 100%;
}

.contact-copyright p {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-footer-links {
        flex-direction: row;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-info-grid {
        gap: 2.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-content h3,
    .contact-info-content p {
        text-align: center;
    }
    
    .contact-footer-grid {
        gap: 2.5rem;
    }
    
    .footer-logo {
        width: 150px;
        margin: 0 auto;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-links {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .contact-footer-subscribe {
        text-align: center;
    }
    
    .contact-footer-subscribe h3 {
        text-align: center;
    }
    
    .contact-footer-subscribe p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0 0 0;
    }
    
    .contact-main-title {
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .contact-info-content h3 {
        font-size: 1rem;
    }
    
    .contact-info-content p {
        font-size: 0.85rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        padding: 0.875rem 1rem;
    }
    
    .subscribe-form button {
        padding: 0.875rem;
    }
}