.animated-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(125deg, rgba(11,16,32,0.95) 0%, rgba(37,99,235,0.4) 50%, rgba(255,58,166,0.4) 100%);
    overflow: hidden;
    text-align: center;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.animated-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.animated-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    display: inline-block;
    animation: bounce 1.5s infinite ease-in-out;
}

.animated-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Contact Form Section */
/* Enhanced Contact Section Styles */
.contact-section {
    position: relative;
    z-index: 3;
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: cardAppear 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0,212,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
    z-index: 0;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.contact-form-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    transform: translateY(-5px);
}

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

.form-title {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    animation: titleAppear 0.8s 0.2s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: subtitleAppear 0.8s 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes subtitleAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom input container to replace form-floating */
.input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c0c7ce;
    padding: 1.5rem 1rem 1.5rem;
    height: auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 100%;
}

.form-control:focus, .form-select:focus {
    background: rgba(15, 23, 42, 0.7);
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
    color: var(--text-primary);
    transform: translateY(-2px);
    outline: none;
}

.form-control::placeholder {
    color: transparent;
}

.input-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.form-control:focus + .input-label,
.form-control:not(:placeholder-shown) + .input-label,
.form-select:focus + .input-label,
.form-select:not([value=""]):valid + .input-label {
    top: 0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 0.3rem;
}

textarea.form-control {
    padding-top: 1.8rem;
}

textarea.form-control + .input-label {
    top: 1.2rem;
}

textarea.form-control:focus + .input-label,
textarea.form-control:not(:placeholder-shown) + .input-label {
    top: 0.4rem;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    transition: width 0.4s ease;
    z-index: 2;
}

.form-control:focus ~ .input-highlight,
.form-select:focus ~ .input-highlight {
    width: 100%;
}

.form-check-input {
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    border-color: transparent;
    transform: scale(1.1);
}

.form-check-input:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
}

.text-gradient {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    position: relative;
}

.text-gradient:hover {
    text-decoration: underline;
}

/* Enhanced Button Styles */
.btn-primary {
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    z-index: -1;
    border-radius: 50px;
    transition: transform 0.5s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover .button-background {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: cardAppear 0.8s 0.3s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.contact-info-card:hover {
    border-color: rgba(255, 58, 166, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    transform: translateY(-5px);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    animation: itemAppear 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-10px);
}

.contact-info-item:nth-child(1) { animation-delay: 0.4s; }
.contact-info-item:nth-child(2) { animation-delay: 0.5s; }
.contact-info-item:nth-child(3) { animation-delay: 0.6s; }
.contact-info-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes itemAppear {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-details h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.social-links {
    animation: socialAppear 0.8s 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes socialAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    position: relative;
    z-index: 1;
    animation: socialIconAppear 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

.social-link:nth-child(1) { animation-delay: 0.9s; }
.social-link:nth-child(2) { animation-delay: 1.0s; }
.social-link:nth-child(3) { animation-delay: 1.1s; }
.social-link:nth-child(4) { animation-delay: 1.2s; }
.social-link:nth-child(5) { animation-delay: 1.3s; }

@keyframes socialIconAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-link:hover {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    color: #fff;
    transform: translateY(-3px) rotate(5deg);
}

/* Form validation animations */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #ff3860;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75% { transform: translateX(-10px); }
    30%, 60%, 90% { transform: translateX(10px); }
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #23d160;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }
}


/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.accordion {
    --bs-accordion-bg: rgba(30, 41, 59, 0.7);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-border-radius: 12px;
    --bs-accordion-border-width: 1px;
    --bs-accordion-btn-color: #f8fafc;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-focus-border-color: #00d4ff;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
    gap: 1rem;
}

.accordion-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    background: transparent !important;
    color: #f8fafc !important;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem;
    border: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #f8fafc !important;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2360a5fa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: transparent;
    color: #94a3b8;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4);
    color: white;
}

.text-center p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .accordion-body {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .accordion-button {
        padding: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }
}


/* Map Section */
/* Enhanced Map Section Styles */
.map-section {
    overflow: hidden;
    position: relative;
}

.map-container {
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: mapSlideIn 0.8s ease-out forwards;
}

@keyframes mapSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 16, 32, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    z-index: 2;
    max-width: 300px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: overlayAppear 0.6s 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes overlayAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.map-overlay h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.map-overlay p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-close-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-secondary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-overlay:hover {
    background: rgba(255,255,255,0.2);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.map-info {
    padding: 3rem;
    background: var(--card-bg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: infoSlideIn 0.8s 0.3s ease-out forwards;
}

@keyframes infoSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-info:hover {
    border-color: rgba(255, 58, 166, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    transform: translateY(-5px);
}

.map-info h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.map-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.visit-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.3);
}

.detail-item:hover {
    transform: translateX(5px);
    background: rgba(15, 23, 42, 0.5);
}

.detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
    transform: rotate(10deg) scale(1.1);
}

.detail-item h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Directions Panel */
.directions-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}

.directions-panel.active {
    right: 0;
}

.directions-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.directions-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.btn-close-directions {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-secondary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-directions:hover {
    background: rgba(255,255,255,0.2);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.directions-content {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.transport-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
}

.transport-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transport-option.active {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.transport-option:hover:not(.active) {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}

.transport-option i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.transport-option span {
    font-size: 0.8rem;
    font-weight: 500;
}

.route-info {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.route-summary {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.route-summary i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin-right: 1rem;
}

.route-summary h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.route-details {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.step-by-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.direction-step p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Map marker animation */
.custom-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.7));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.9));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.7));
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .map-container {
        height: 400px;
    }

    .map-info {
        padding: 2rem;
    }

    .directions-panel {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .map-overlay {
        max-width: 250px;
        padding: 1rem;
    }

    .transport-options {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .transport-option {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .directions-panel {
        width: 100%;
        right: -100%;
    }
}

/* Dark mode for map tiles */
.map-tiles {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }

    .map-info {
        padding: 2rem;
    }

    .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-card, .contact-info-card {
        padding: 1.5rem;
    }

    .animated-header {
        padding: 100px 0 60px;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-item i {
        align-self: center;
    }

    .map-overlay {
        max-width: 250px;
        padding: 1rem;
        bottom: 10px;
        left: 10px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-item {
        text-align: left;
    }

    .contact-icon {
        align-self: flex-start;
    }

    .main-title {
        font-size: 2.2rem;
    }
}
.btn-primary{
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}