/* =============================================
   CONTACT SECTION - WHITE BACKGROUND
   Matching Overall Design Aesthetics
   ============================================= */

/* SECTION CONTAINER */
.contact-section {
    min-height: 100vh;
    background: var(--bg-light);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* SECTION HEADER */
.contact-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-section .section-header h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.contact-section .section-header p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    font-weight: 500;
}

/* =============================================
   CONTACT WRAPPER - GRID
   ============================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   CONTACT CARDS
   ============================================= */

.contact-card {
    opacity: 0;
    transform: translateY(40px);
}

.contact-card.reveal {
    animation: revealCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-card:nth-child(1).reveal { animation-delay: 0.1s; }
.contact-card:nth-child(2).reveal { animation-delay: 0.2s; }

.contact-card-inner {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-card-inner:hover {
    border-color: rgba(255, 68, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Icon Header */
.contact-icon-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 68, 0, 0.2);
    flex-shrink: 0;
}

.contact-icon-circle i {
    font-size: 32px;
    color: var(--text-white);
}

.contact-icon-header h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Text Content */
.contact-lead {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-card-inner p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* =============================================
   CONTACT ITEMS
   ============================================= */

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 68, 0, 0.03);
    border: 1px solid rgba(255, 68, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 68, 0, 0.05);
    border-color: rgba(255, 68, 0, 0.2);
    transform: translateX(5px);
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 20px;
    color: var(--text-white);
}

.contact-item-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
}

.contact-item-text p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    word-break: break-word;
}

.contact-item-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* =============================================
   SOCIAL MEDIA
   ============================================= */

.contact-social {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-social h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 68, 0, 0.3);
}

/* =============================================
   CONTACT FEATURES
   ============================================= */

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 68, 0, 0.03);
    border: 1px solid rgba(255, 68, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-feature:hover {
    background: rgba(255, 68, 0, 0.05);
    border-color: rgba(255, 68, 0, 0.2);
    transform: translateX(5px);
}

.contact-feature i {
    font-size: 22px;
    color: var(--primary);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.contact-feature span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */

@media (max-width: 1024px) {
    .contact-section {
        padding: 100px 0 80px;
    }
    
    .contact-wrapper {
        gap: 35px;
    }
    
    .contact-card-inner {
        padding: 35px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 60px;
    }
    
    .contact-section .section-header {
        margin-bottom: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card-inner {
        padding: 30px 25px;
    }
    
    .contact-icon-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon-circle i {
        font-size: 28px;
    }
    
    .contact-lead {
        font-size: 16px;
    }
    
    .contact-card-inner p {
        font-size: 14px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-item-icon i {
        font-size: 18px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE
   ============================================= */

@media (max-width: 480px) {
    .contact-section {
        padding: 70px 0 50px;
    }
    
    .contact-card-inner {
        padding: 25px 20px;
    }
    
    .contact-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .contact-icon-circle i {
        font-size: 24px;
    }
    
    .contact-lead {
        font-size: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 18px 15px;
    }
    
    .contact-item:hover {
        transform: translateY(-5px) !important;
    }
    
    .contact-item-text h4 {
        font-size: 12px;
    }
    
    .contact-item-text p {
        font-size: 15px;
    }
    
    .contact-feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-feature:hover {
        transform: translateY(-5px) !important;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}