/* Modern Variables */
:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #10b981;
    --dark-color: #111827;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --border-color: #e5e7eb;
    --gradient-start: #4f46e5;
    --gradient-end: #10b981;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hover-transform: translateY(-5px) scale(1.02);
}

/* Global Styles */
body {
    background-color: var(--light-color);
}

/* Contact Header Styles */
.contact-header {
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    padding:  60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff20" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.1;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
   
}

.contact-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Info Section Styles */
.contact-info {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.info-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon::after {
    transform: scale(1.4);
}

.info-icon i {
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-link i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Contact Form Section Styles */
.contact-form-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    opacity: 0.03;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.form-content {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.form-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-content p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    background: #fff;
}

.contact-form .form-control::placeholder {
    color: var(--gray-color);
    opacity: 0.7;
}

.contact-form textarea.form-control {
    resize: none;
    min-height: 150px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-image {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact-image img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: all 0.5s ease;
}

.contact-image:hover img {
    transform: translateY(-10px);
}

.contact-features {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-color);
    transform: translateX(5px);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: rotate(10deg);
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.5rem;
}

.feature-content p {
    color: var(--gray-color);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Map Section Styles */
.map-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    opacity: 0.03;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
}

.map-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-section p {
    color: var(--gray-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
}

.map-wrapper iframe {
    display: block;
}

.address-info {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.address-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.address-item:hover {
    background: var(--light-color);
    transform: translateY(-5px);
}

.address-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.address-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.address-item a {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-header {
        padding: 80px 0 140px;
    }

    .contact-header h1 {
        font-size: 3rem;
    }

    .contact-image {
        margin: 3rem 0;
    }

    .info-card {
        margin-bottom: 2rem;
    }

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

    .map-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .contact-header {
        padding: 60px 0 120px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-header p {
        font-size: 1.1rem;
    }

    .form-content,
    .contact-features {
        padding: 2rem;
    }

    .form-content h2 {
        font-size: 2rem;
    }

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

    .map-section h2 {
        font-size: 2rem;
    }

    .address-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .info-icon {
        width: 70px;
        height: 70px;
    }

    .info-icon i {
        font-size: 2rem;
    }

    .form-content,
    .contact-features {
        padding: 1.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .feature-item i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .map-wrapper {
        margin-bottom: 2rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .address-info {
        padding: 1.5rem;
    }

    .address-item {
        padding: 1rem;
    }
} 

.breadcrumb {
    background: transparent;
    margin-bottom: 2rem;
}

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

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}