/* Variables */
:root {
    --primary-color: #122741; /* Logo Navy Blue */
    --primary-hover: #0b1828; /* Darker shade for hover */
    --primary-light: rgba(18, 39, 65, 0.1);
    --secondary-color: #0c2340; /* Dark Navy Al-Mairaj */
    --dark-color: #0b1d36;
    --light-bg: #f8f9fa;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

/* Global Setup */
body {
    font-family: var(--body-font);
    color: var(--secondary-color);
    background-color: #ffffff;
    overflow-x: hidden;
}
html {
    scroll-padding-top: 100px;
}

.text-primary { color: var(--primary-color) !important; }
.hover-primary { transition: color 0.3s ease; }
.hover-primary:hover { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.btn-primary { 
    background-color: var(--primary-color); 
    border-color: var(--primary-color); 
    box-shadow: 0 4px 10px rgba(18, 39, 65, 0.2);
    transition: all 0.3s ease;
}
.btn-primary:hover { 
    background-color: var(--primary-hover); 
    border-color: var(--primary-hover); 
    box-shadow: 0 6px 15px rgba(18, 39, 65, 0.3);
    transform: translateY(-2px);
}
.btn-outline-primary { 
    color: var(--primary-color); 
    border-color: var(--primary-color); 
}
.btn-outline-primary:hover { 
    background-color: var(--primary-color); 
    color: #fff; 
}

.tracking-wide { letter-spacing: 1.5px; }
.transition-all { transition: all 0.3s ease; }
.max-w-600 { max-width: 600px; }

.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* Navbar Settings */
.main-header {
    background: #ffffff;
    padding: 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-header.scrolled {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 700; /* Bold as requested */
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}
.heroSwiper {
    width: 100%;
    height: 100%;
}
.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Counter Section */
.mt-negative {
    margin-top: -60px;
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.counter-box:hover .icon-wrapper {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* About Section */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border: 5px solid #fff;
}

/* Packages Cards */
.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.package-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .card-img-top {
    transform: scale(1.05);
}
.price-tag {
    bottom: -15px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    z-index: 2;
}

/* Services Cards */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.service-card:hover .service-icon {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.service-icon {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

/* Footer Links */
.footer-links a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Media Queries */
@media (max-width: 991px) {
    .main-header {
        background: var(--dark-color) !important;
        padding: 10px 0;
    }
    .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    .navbar-toggler {
        border-color: rgba(255,255,255,0.5) !important;
    }
    /* SVG icon for white hamburger */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 10px;
    }
}
