/* Contact Page Specific Styles */

.contact-info-card {
    background: rgba(0, 0, 0, 0.5);
    border: 0px solid #103536;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    /* background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%); */
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    /* border-color: #32B7BA;
    box-shadow: 0 2px 20px rgba(50, 183, 186, 0.2); */
    box-shadow: 0 1px 2px rgba(0, 212, 255, 0.5);
}

.contact-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #103536;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.map-section {
    background: rgba(0, 0, 0, 0.3);
}

.map-placeholder {
    height: 400px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #103536;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: radial-gradient(at center, #023D3FA3 0%, #0D0E12 60%); */
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);
}

.map-icon {
    font-size: 100px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #103536;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    border-color: #32B7BA;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-icon {
        font-size: 70px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
.content-box {
  border: 0px solid #103536;
}