/* Contact Page Premium Styles */

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.text-xs {
    font-size: 0.75rem;
    vertical-align: middle;
}

.text-primary {
    color: var(--primary-color);
}

.text-dark {
    color: var(--text-dark);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-lg {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.max-w-800 {
    max-width: 800px;
}

.font-heading {
    font-family: var(--font-heading);
}

.section-padding {
    padding: 6rem 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}

.col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Page Header */
.page-header {
    position: relative;
    padding: 8rem 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596541223130-5d31a73fb6c6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(2, 132, 199, 0.8));
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #e0f2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    color: #cbd5e1;
    font-family: var(--font-heading);
}

.breadcrumb a {
    color: #fff;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Typography */
.sub-heading {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Contact Cards */
.glass-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.glass-card:hover,
.active-card {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.active-card {
    background: linear-gradient(135deg, #ffffff, var(--bg-light));
    border-top: 4px solid var(--primary-color);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #0284c7, #2563eb);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
    transition: transform 0.3s ease;
}

.glass-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-link,
.contact-address {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    font-style: normal;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

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

/* Map Section */
.map-section {
    line-height: 0;
    display: block;
    padding: 0 2rem 4rem;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-section iframe {
    width: 100%;
    margin-bottom: -5px;
    filter: grayscale(10%) contrast(105%) saturate(120%);
}

@media (max-width: 768px) {
    .map-section {
        padding: 0 1rem 3rem;
    }
}