/* Professional Contact Section Styles */
.arc-contact-section {
    background: linear-gradient(135deg, #0a1a35 0%, #1a3a6c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.arc-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 123, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 157, 244, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.arc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.arc-contact-wrapper {
    text-align: center;
}

/* Header Styles */
.arc-contact-header {
    margin-bottom: 80px;
}

.arc-contact-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #6a9ae3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arc-contact-subtitle {
    font-size: 1.3rem;
    color: #e6e9f0;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid Styles */
.arc-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.arc-contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.arc-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.arc-contact-item:hover::before {
    left: 100%;
}

.arc-contact-item:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 123, 200, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Icon Styles */
.arc-contact-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.arc-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5aa0, #4a7bc8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.arc-contact-item:hover .arc-contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4a7bc8, #6a9ae3);
    box-shadow: 0 10px 25px rgba(74, 123, 200, 0.4);
}

.arc-contact-symbol {
    font-size: 2rem;
    color: #ffffff;
}

.arc-contact-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(74, 123, 200, 0.3);
    border-radius: 50%;
    animation: arcPulse 2s infinite;
}

.arc-contact-item:hover .arc-contact-pulse {
    animation: arcPulseFast 1s infinite;
}

@keyframes arcPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes arcPulseFast {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Content Styles */
.arc-contact-content {
    text-align: center;
}

.arc-contact-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.arc-contact-value {
    font-size: 1.2rem;
    color: #6a9ae3;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
}

.arc-contact-value:hover {
    color: #ffffff;
}

.arc-contact-note {
    font-size: 0.9rem;
    color: #e6e9f0;
    margin-top: 10px;
    font-style: italic;
}

.arc-contact-time {
    display: block;
    line-height: 1.6;
}

/* Individual Item Customizations */
#arcContactPhone:hover .arc-contact-icon {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

#arcContactAddress:hover .arc-contact-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

#arcContactHours:hover .arc-contact-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .arc-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .arc-contact-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .arc-contact-section {
        padding: 80px 0;
    }
    
    .arc-contact-title {
        font-size: 2.2rem;
    }
    
    .arc-contact-subtitle {
        font-size: 1.1rem;
    }
    
    .arc-contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .arc-contact-item {
        padding: 40px 25px;
    }
    
    .arc-contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .arc-contact-symbol {
        font-size: 1.8rem;
    }
    
    .arc-contact-pulse {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .arc-contact-section {
        padding: 60px 0;
    }
    
    .arc-contact-title {
        font-size: 1.8rem;
    }
    
    .arc-contact-subtitle {
        font-size: 1rem;
    }
    
    .arc-contact-header {
        margin-bottom: 50px;
    }
    
    .arc-contact-item {
        padding: 30px 20px;
    }
    
    .arc-contact-label {
        font-size: 1.2rem;
    }
    
    .arc-contact-value {
        font-size: 1rem;
    }
}