.ektravel-nav-menu .active {
    color: var(--primary-color);
    position: relative;
}

.ektravel-nav-menu .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.ektravel-contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    padding: 5rem 0;
}

.ektravel-text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ektravel-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ektravel-mr-1 { margin-right: 0.5rem; }
.ektravel-mr-2 { margin-right: 1rem; }
.ektravel-ml-1 { margin-left: 0.5rem; }

.ektravel-hero-visual {
    width: 100%;
}


.ektravel-contact-info-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.ektravel-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ektravel-contact-method {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.ektravel-contact-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.ektravel-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

.ektravel-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.ektravel-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.ektravel-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
    color: var(--text-secondary);
}

.ektravel-contact-hours {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.ektravel-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ektravel-contact-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ektravel-contact-option {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.ektravel-contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.ektravel-option-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-light);
}

.ektravel-form-visual {
    position: relative;
}

.ektravel-form-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.ektravel-map-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ektravel-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ektravel-map-visual {
    position: relative;
}

.ektravel-map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.ektravel-office-info {
    color: white;
}

.ektravel-office-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.ektravel-office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ektravel-office-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ektravel-office-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ektravel-office-item strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.ektravel-office-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.ektravel-legal-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.ektravel-legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ektravel-legal-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.ektravel-legal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.ektravel-legal-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-light);
}

.ektravel-cta-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.ektravel-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ektravel-w-full {
    width: 100%;
}

.ektravel-footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.ektravel-footer-links {
    list-style: none;
}

.ektravel-footer-links li {
    margin-bottom: 0.5rem;
}

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

.ektravel-footer-links a:hover {
    color: var(--accent-color);
}

.ektravel-contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.ektravel-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

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

.ektravel-contact-item a:hover {
    color: var(--accent-color);
}

.ektravel-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

.ektravel-footer-bottom a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .ektravel-contact-hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }
    
    .ektravel-contact-hero-image {
        border-radius: 12px;
    }
    
    .ektravel-form-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ektravel-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ektravel-contact-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .ektravel-contact-hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .ektravel-hero-actions {
        justify-content: center;
    }
    
    .ektravel-contact-methods {
        grid-template-columns: 1fr;
    }
    
    .ektravel-contact-options {
        gap: 1.5rem;
    }
    
    .ektravel-legal-grid {
        grid-template-columns: 1fr;
    }
    
    .ektravel-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ektravel-office-details {
        gap: 1rem;
    }
    
    .ektravel-office-item {
        flex-direction: column;
        text-align: center;
    }
}

