/* assets/css/style.css */
:root {
    --primary-color: #0A2540;
    --secondary-color: #F6A820;
    --accent-color: #635BFF;

    /* Light Theme Colors */
    --bg-main: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-main: #2A2F45;
    --text-muted: #6B7280;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
    /* Dark Theme Colors */
    --bg-main: #0B1120;
    --bg-light: #111827;
    --bg-card: #1F2937;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --nav-bg: rgba(11, 17, 32, 0.95);
    --border-color: rgba(255, 255, 255, 0.05);

    /* Slightly adjust brand colors for dark mode */
    --primary-color: #1A3C63;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
}

/* Bootstrap Overrides for Dark Mode */
.text-muted {
    color: var(--text-muted) !important;
}

/* Navbar */
.navbar {
    background-color: var(--nav-bg) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 60px;
    /* Increased from 45px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Removes white background in light mode */
    transition: transform 0.3s ease, filter 0.3s ease;
}

[data-theme="dark"] .navbar-brand img {
    filter: grayscale(1) invert(1) brightness(1.2);
    mix-blend-mode: screen;
    /* Removes inverted black background in dark mode */
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 60px;
        /* Responsive size for mobile */
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

.theme-btn {
    color: var(--text-main);
    background: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #d99119;
    border-color: #d99119;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(246, 168, 32, 0.3);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #F3F4F6;
}

/* Services Section */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h4 {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

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

/* Why Choose Us */
.bg-light-custom {
    background-color: var(--bg-light);
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(99, 91, 255, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.feature-content h5 {
    font-weight: 700;
    color: var(--text-main);
}

.feature-content p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3c63 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

/* Footer */
.footer {
    background-color: #051626;
    /* Always dark */
    color: #9CA3AF;
    padding: 80px 0 30px;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-brand-logo {
    height: 50px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: grayscale(1) invert(1);
    mix-blend-mode: screen;
}

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

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.footer .contact-info i {
    color: var(--secondary-color);
    width: 25px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

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

.back-to-top:hover {
    background-color: #d99119;
    color: #fff;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3c63 100%);
    position: relative;
    z-index: 10;
}

/* Destinations Section */
.destination-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card:hover .destination-img-wrapper {
    box-shadow: 0 15px 30px rgba(246, 168, 32, 0.4) !important;
    border-color: var(--secondary-color) !important;
}

.destination-img-wrapper {
    transition: all 0.3s ease;
}

/* Process Section */
.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: dashed 2px #E5E7EB;
    z-index: 0;
}

.process-icon {
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-color: transparent !important;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(246, 168, 32, 0.3);
}

/* Utility classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-step {
        margin-bottom: 30px;
    }
}