.elementor-250 .elementor-element.elementor-element-3f0efa3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0cec4a5 */.contact-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Section */
.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #150d1c;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.contact-header p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
}

/* Contact Card */
.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #922cf2 0%, #7423c2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-card:hover {
    box-shadow: 0 12px 32px rgba(146, 44, 242, 0.15);
    transform: translateY(-4px);
    border-color: #922cf2;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #922cf2 0%, #7423c2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 36px;
    color: #fff;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 12px 0;
}

.contact-info {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 24px 0;
    word-break: break-word;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #922cf2 0%, #7423c2 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(146, 44, 242, 0.3);
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(146, 44, 242, 0.4);
}

/* Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #922cf2 0%, #7423c2 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.contact-info-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.contact-info-section p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

.hours-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.hours-card i {
    font-size: 32px;
    color: #922cf2;
    margin-bottom: 16px;
}

.hours-title {
    font-size: 20px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 8px 0;
}

.hours-text {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        padding: 40px 20px;
    }
    
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-header p {
        font-size: 18px;
    }
    
    .contact-info-section {
        padding: 40px 24px;
    }
    
    .contact-info-section h2 {
        font-size: 26px;
    }
    
    .contact-info-section p {
        font-size: 16px;
    }
}/* End custom CSS */