/* Contact Page Specific Styles */

.contact-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-card .info-icon {
    font-size: 40px;
    color: #00a8e6;
    margin-bottom: 20px;
}

.info-card h5 {
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-card p, .info-card a {
    color: #6c757d;
    text-decoration: none;
    line-height: 1.6;
}

.info-card a:hover {
    color: #007bff;
}

.form__field {
    border-radius: 8px;
}

.form__message {
    min-height: 150px;
}

.button--filled {
    width: 100%;
}

.map-section {
    padding: 80px 0;
}

/* Map Tabs */
.map-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 30px;
}
.map-tabs .nav-link {
    display: flex;
    align-items: center;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.map-tabs .nav-link.active {
    color: #007bff;
    border-bottom-color: #007bff;
}
.map-tabs .nav-link:hover {
    color: #0056b3;
}
.map-tabs .nav-link img {
    width: 20px;
    height: auto;
    margin-right: 8px;
    border-radius: 3px;
}
.map-tabs .nav-link .fa-map-marker-alt {
    margin-right: 8px;
}

.tab-content .tab-pane {
    padding: 20px;
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.map-info {
    margin-top: 20px;
}
.map-info h5 {
    font-weight: 700;
    color: #2c3e50;
}
.map-info p {
    color: #6c757d;
}

.hero-section {
    padding: 140px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 15px auto 0;
}

.gradient-text {
	background: linear-gradient(135deg, #008ccc 0%, #00afff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px;
    }
}
