/* ==========================================
   CONTACT SECTION
   Base styles from global-sections-patterns.css
   Section-specific styles only
========================================== */

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-primary-dark, #3B56D9) 0%, var(--color-primary, #4D6AFF) 100%);
    position: relative;
}

/* Subtle pattern overlay */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="none" d="M10,10 L90,10 M10,30 L90,30 M10,50 L90,50 M10,70 L90,70 M10,90 L90,90 M10,10 L10,90 M30,10 L30,90 M50,10 L50,90 M70,10 L70,90 M90,10 L90,90" stroke="white" stroke-width="1"/></svg>');
    background-repeat: repeat;
    background-size: 40px;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* 
   NOTE: The following are NOT duplicated from global-sections-patterns.css:
   - .section-eyebrow, .section-title, .section-text
   - But we're using contact-specific class names here, so no conflict
*/

.contact-eyebrow {
    display: inline-block;
    font-size: var(--font-xs, 0.75rem);
    font-weight: var(--font-weight-semibold, 600);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide, 0.05em);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm, 0.5rem);
}

.contact-title {
    font-size: var(--font-3xl, 2rem);
    font-weight: var(--font-weight-bold, 700);
    line-height: var(--line-tight, 1.2);
    margin-bottom: var(--space-md, 0.75rem);
    color: var(--color-white, #FFFFFF);
}

.contact-text {
    font-size: var(--font-base, 1rem);
    line-height: var(--line-relaxed, 1.7);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Buttons - Sleeker and smaller */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;  /* Reduced from 16px 32px */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;  /* Slightly smaller radius */
    text-decoration: none;
    transition: all var(--transition-normal, 0.3s ease);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 220px;  /* Reduced from 260px */
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);  /* Reduced from -3px */
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.3);
}

.contact-btn i:first-child {
    font-size: 26px;  /* Reduced from 32px */
}

.contact-btn-whatsapp i:first-child {
    color: #25D366;
}

.contact-btn-email i:first-child {
    color: #FFFFFF;
}

.contact-btn-content {
    flex: 1;
    text-align: left;
}

.contact-btn-label {
    display: block;
    font-size: var(--font-2xs, 0.6875rem);  /* Reduced from var(--font-xs) */
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.contact-btn-value {
    display: block;
    font-size: var(--font-sm, 0.875rem);  /* Reduced from var(--font-base) */
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-white, #FFFFFF);
}

.contact-btn i:last-child {
    font-size: 12px;  /* Reduced from 14px */
    opacity: 0.7;
    transition: transform var(--transition-fast, 0.2s ease);
}

.contact-btn:hover i:last-child {
    transform: translateX(4px);
    opacity: 1;
}

/* CTA Button variants for services page */
.contact-btn-primary i:first-child,
.contact-btn-secondary i:first-child {
    font-size: 26px;
}

.contact-btn-primary i:first-child {
    color: #FFFFFF;
}

.contact-btn-secondary i:first-child {
    color: #FFFFFF;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
========================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-title {
        font-size: var(--font-2xl, 1.75rem);
    }
    
    .contact-btn {
        min-width: 200px;  /* Reduced from 240px */
        padding: 10px 20px;  /* Reduced from 14px 28px */
    }
    
    .contact-btn i:first-child {
        font-size: 24px;
    }
    
    .contact-btn-value {
        font-size: var(--font-xs, 0.75rem);
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: var(--font-xl, 1.5rem);
    }
    
    .contact-text {
        font-size: var(--font-sm, 0.875rem);
        margin-bottom: 32px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;  /* Reduced from 16px */
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;  /* Reduced from 300px */
        padding: 10px 20px;  /* Reduced from 12px 24px */
    }
    
    .contact-btn i:first-child {
        font-size: 22px;  /* Reduced from 28px */
    }
    
    .contact-btn-value {
        font-size: var(--font-xs, 0.75rem);
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .contact-section {
        padding: 32px 0;
    }
    
    .contact-btn {
        padding: 8px 16px;  /* Reduced from 10px 20px */
        gap: 10px;
        min-width: auto;
    }
    
    .contact-btn i:first-child {
        font-size: 20px;  /* Reduced from 24px */
    }
    
    .contact-btn-label {
        font-size: 0.625rem;
    }
    
    .contact-btn-value {
        font-size: var(--font-2xs, 0.6875rem);
    }
}