/* Root Variables */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --error-color: #e53e3e;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --white-color: #ffffff;
    --text-dark: #1a202c;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --shadow-light: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-medium: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    --gradient-secondary: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
}

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

/* Header Styles */
.header-top {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.contact-info span {
    margin-right: 2rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #ffffff;
}

.social-links .social-link {
    color: white;
    margin-left: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links .social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.brand-text {
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(44, 82, 130, 0.75) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-top: 15vh;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--light-color);
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
}

.service-item {
    margin-bottom: 2rem;
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-content h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Why Choose Us */
.why-choose-us {
    background: var(--gradient-primary);
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffffff;
}

.feature-box h5 {
    color: white;
    margin-bottom: 1rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-stars {
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author img {
    object-fit: cover;
}

/* Consultation Form */
.consultation-form {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.consultation-form-card {
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    padding: 5rem 0 3rem 0;
    background: var(--gradient-primary);
}

/* Service Cards */
.service-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-title {
    color: var(--text-dark);
    font-weight: 600;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Process Steps */
.process-section {
    background-color: var(--light-color);
}

.process-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.step-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--success-color);
    color: #ffffff;
    padding: 0.5rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
    z-index: 1;
}

.package-price {
    margin: 1rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

/* Destination Styles */
.destination-section {
    padding: 4rem 0;
}

.destination-flag {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.flag-icon {
    font-size: 3rem;
    margin-right: 1rem;
}

.destination-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.destination-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.destination-highlights h5 {
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.destination-stats {
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Comparison Table */
.comparison-section table {
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1.5rem 1rem;
}

.table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
}

/* Contact Styles */
.contact-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hours-card,
.consultation-card {
    border: 1px solid var(--border-color);
}

.hours-list {
    font-size: 1rem;
}

.consultation-types {
    font-size: 1rem;
}

.consultation-types i {
    color: #ffffff;
}

/* Team Styles */
.team-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

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

.team-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .card-img-top {
    transform: scale(1.05);
}

.team-social .social-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.team-social .social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Achievement Styles */
.achievement-item {
    padding: 2rem 1rem;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-item h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-muted);
    margin: 0;
}

/* FAQ Styles */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 500;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a5f'%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 {
    padding: 1.5rem;
    background-color: var(--light-color);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color) !important;
    color: white;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand h5 {
    color: white;
    font-weight: 600;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider,
    .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding-top: 10vh;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-item {
        padding: 1.5rem 0.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .service-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .destination-flag {
        text-align: center;
        flex-direction: column;
    }
    
    .flag-icon {
        margin: 0 0 1rem 0;
    }
    
    .destination-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .contact-info span {
        display: block;
        margin: 0.25rem 0;
    }
    
    .pricing-card.popular {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .consultation-form-card {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider,
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .destination-stats .col-6 {
        margin-bottom: 1rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

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

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: var(--error-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    display: block;
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success Message */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    padding: 10px;
    transition: var(--transition);
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.theme-options {
    position: absolute;
    right: 70px;
    top: 0;
    background: white;
    border-radius: 25px;
    padding: 15px;
    box-shadow: var(--shadow-medium);
    display: none;
    min-width: 280px;
}

.theme-options.show {
    display: block;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.theme-option {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.theme-option:hover {
    background-color: #f8f9fa;
}

.theme-option.active {
    border-color: var(--primary-color);
    background-color: rgba(30, 58, 95, 0.1);
}

.theme-colors {
    display: flex;
    margin-right: 12px;
}

.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 3px;
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.theme-name {
    font-weight: 500;
    color: var(--text-dark);
}

.theme-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Theme Variations */
[data-theme="default"] {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --error-color: #e53e3e;
}

[data-theme="corporate"] {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #718096;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --error-color: #e53e3e;
}

[data-theme="modern"] {
    --primary-color: #2b6cb0;
    --secondary-color: #3182ce;
    --accent-color: #4299e1;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --error-color: #f56565;
}

[data-theme="elegant"] {
    --primary-color: #553c9a;
    --secondary-color: #6b46c1;
    --accent-color: #8b5cf6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

[data-theme="professional"] {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --error-color: #e53e3e;
}

[data-theme="ocean"] {
    --primary-color: #0c4a6e;
    --secondary-color: #0369a1;
    --accent-color: #0284c7;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
}

/* Mobile Responsive for Theme Switcher */
@media (max-width: 768px) {
    .theme-switcher {
        right: 15px;
    }
    
    .theme-options {
        right: 60px;
        min-width: 250px;
    }
    
    .theme-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
/* Map Section Styles */
.map-section {
    background-color: var(--light-color);
}

.map-container {
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-info .info-item {
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.map-info .info-item:hover {
    background-color: white;
    box-shadow: var(--shadow-light);
}

.map-info .info-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    color: var(--primary-color);
}

.map-info .info-item h6 {
    color: var(--text-dark);
    font-weight: 600;
}

.map-info .info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}