/* ===== CONTACT SECTION - THREE BOXES SIDE BY SIDE WITH BEAUTIFUL BACKGROUND ===== */
.contact-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
    position: relative;
    overflow: hidden;
}

/* Gradient overlay */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.96) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative circles pattern */
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(79, 172, 254, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 90% 85%, rgba(0, 242, 254, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(67, 233, 123, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 25% 75%, rgba(79, 172, 254, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 75% 25%, rgba(0, 242, 254, 0.05) 0%, transparent 30%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 50% 50%, 50% 50%;
    pointer-events: none;
    z-index: 0;
    animation: circlesFloat 15s ease-in-out infinite;
}

@keyframes circlesFloat {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 25% 75%, 75% 25%;
        opacity: 1;
    }
    50% { 
        background-position: 5% 10%, 95% 90%, 55% 45%, 30% 70%, 70% 30%;
        opacity: 0.8;
    }
}

.contact-section .container-main {
    position: relative;
    z-index: 1;
}

/* Support Options Info */
.support-options-info {
    max-width: 800px;
    margin: 40px auto 35px;
    padding: 25px 35px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid rgba(79, 172, 254, 0.2);
    position: relative;
    z-index: 1;
}

.support-options-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.support-options-info > p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.support-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(79, 172, 254, 0.15);
    transition: all 0.3s ease;
}

.support-method:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
    border-color: #4facfe;
    transform: translateY(-2px);
}

.method-icon {
    font-size: 24px;
}

.support-method span {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.support-method a {
    color: #4facfe;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-method a:hover {
    color: #00f2fe;
    text-decoration: underline;
}

.support-method-divider {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    padding: 0 10px;
}

/* Responsive for support options */
@media (max-width: 768px) {
    .support-options-info {
        padding: 20px 25px;
        margin: 30px auto 30px;
    }
    
    .support-options-info > p {
        font-size: 16px;
    }
    
    .support-methods {
        flex-direction: column;
        gap: 15px;
    }
    
    .support-method {
        width: 100%;
        justify-content: center;
    }
    
    .support-method-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .support-options-info {
        padding: 18px 20px;
    }
    
    .support-method {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .method-icon {
        font-size: 28px;
    }
}

/* Grid for 3 Boxes */
.support-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Individual Support Box */
.support-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.support-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.support-box:hover::before {
    transform: scaleX(1);
}

.support-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

/* Box Header with Flag */
.support-box-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
}

.support-flag-large {
    font-size: 56px;
    font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    transition: transform 0.4s ease;
}

.support-box:hover .support-flag-large {
    transform: scale(1.15) rotate(5deg);
}

.support-box-header h4 {
    margin: 0;
    font-size: 22px;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Box Body */
.support-box-body {
    padding: 25px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Phone Section - Inline */
.support-phone-section {
    padding: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.support-phone-section:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: #667eea;
}

.support-phone-link-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none !important;
}

.support-phone-link-inline:hover {
    text-decoration: none !important;
}

.phone-icon-inline {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.support-phone-link-inline:hover .phone-icon-inline {
    transform: scale(1.2) rotate(-10deg);
}

.support-phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.support-phone-link-inline:hover .support-phone-number {
    color: #764ba2;
    transform: scale(1.05);
}

/* Hours Section - NEW CLEAN DESIGN */
.support-hours-section {
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.support-hours-section:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border-color: #FFD700;
}

/* Header with icon and title */
.hours-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.25);
}

.hours-icon-inline {
    font-size: 22px;
    flex-shrink: 0;
}

.hours-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hours list */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.2s ease;
}

.hours-row:hover {
    background: rgba(255, 250, 240, 0.8);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(3px);
}

.hours-days {
    font-size: 13px;
    font-weight: 600;
    color: #5a6c7d;
}

.hours-times {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .support-boxes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .support-flag-large {
        font-size: 48px;
    }
    
    .support-box-header h4 {
        font-size: 20px;
    }
    
    .support-phone-number {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .support-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .support-box:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .support-boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-box:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .support-box-header {
        padding: 25px 20px 20px;
    }
    
    .support-flag-large {
        font-size: 52px;
    }
    
    .support-box-body {
        padding: 20px 18px 25px;
    }
}

@media (max-width: 600px) {
    .support-boxes-grid {
        margin-top: 30px;
    }
    
    .support-box-header {
        padding: 22px 18px 18px;
    }
    
    .support-flag-large {
        font-size: 48px;
    }
    
    .support-box-header h4 {
        font-size: 19px;
    }
    
    .support-phone-section,
    .support-hours-section {
        padding: 12px;
    }
    
    .phone-icon,
    .hours-icon {
        font-size: 24px;
    }
    
    .support-phone-number {
        font-size: 17px;
    }
    
    .hours-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .support-box-body {
        padding: 18px 15px 22px;
        gap: 15px;
    }
    
    .support-phone-section,
    .support-hours-section {
        padding: 12px 10px;
    }
}
