/* Additional styles for contact page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Modern Left-Right Contact Layout */
.contact-info-container {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-info-container .row.align-items-stretch {
    min-height: 320px;
}

.border-end-md {
    border-right: 1px solid #e9ecef;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    min-height: 100px;
}

.contact-info-item.h-100 {
    height: 100%;
}

.contact-info-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    position: relative;
}

.contact-info-icon.big {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    border-radius: 16px;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.contact-info-text {
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Reduce spacing between right column contact items */
.contact-info-container .col-md-6:last-child .contact-info-item {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 0.2rem;
}

.contact-info-container .col-md-6:last-child .contact-info-item + .contact-info-item {
    margin-top: 0.2rem;
}

@media (max-width: 991.98px) {
    .contact-info-container .row.align-items-stretch {
        flex-direction: column;
    }
    
    .border-end-md {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .contact-info-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-container .col-md-6:last-child .contact-info-item {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-container {
        border-radius: 12px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .contact-info-icon, .contact-info-icon.big {
        align-self: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-title {
        font-size: 1.05rem;
    }
    
    .contact-info-text {
        font-size: 0.97rem;
    }
}

/* Enhanced Contact Cards */
.contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

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

.contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-icon::after {
    opacity: 0.6;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.contact-card:hover .contact-title::after {
    width: 50px;
}

.contact-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-text a:hover::after {
    width: 100%;
}

/* Special styling for different contact types */
.contact-card[data-type="address"] .contact-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.contact-card[data-type="phone"] .contact-icon {
    background: linear-gradient(135deg, #007bff, #6610f2);
}

.contact-card[data-type="email"] .contact-icon {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.contact-card[data-type="hours"] .contact-icon {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} 