/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    /* Primary Colors - CORPORATE ANTHRACITE THEME */
    --primary-color: #121212;
    /* Anthracite / Near Black */
    --secondary-color: #333333;
    /* Charcoal Grey */
    --accent-color: #800020;
    /* Deep Burgundy */
    --accent-hover: #5e0017;
    /* Darker Burgundy for hover */

    /* Neutrals */
    --text-dark: #212121;
    --text-gray: #555555;
    --text-light: #FAFAFA;
    --bg-light: #F4F4F4;
    --white: #FFFFFF;

    /* Shadows - Clean & Subtle, no colored glows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.18);

    /* Radii */
    --radius-sm: 4px;
    /* More square/serious */
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Navigation --- */
.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background-color: transparent;
    box-shadow: none;
}

/* Navbar scrolled state - solid white */
.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Navbar on inner pages - always solid */
.navbar.navbar-solid {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Transparent navbar - white text */
.navbar:not(.scrolled):not(.navbar-solid) .nav-link {
    color: var(--white) !important;
}

.navbar:not(.scrolled):not(.navbar-solid) .navbar-brand {
    color: var(--white) !important;
}

.navbar:not(.scrolled):not(.navbar-solid) .navbar-brand span {
    color: var(--accent-color) !important;
}

.navbar:not(.scrolled):not(.navbar-solid) .btn-premium {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar:not(.scrolled):not(.navbar-solid) .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    margin: 0 12px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 1rem 0;
    margin-top: 15px;
    border-top: 4px solid var(--accent-color);
    /* Added top accent */
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 10px 25px;
    color: var(--text-gray);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding-left: 30px;
    /* Slight slide effect */
    transition: all 0.2s ease;
}

/* --- Hero Section --- */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /* Removed static background to allow Carousel */
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: -76px;
    padding-top: 76px;
    overflow: hidden;
    /* Ensure carousel doesn't spill */
}

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

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    /* Better contrast on dark bg */
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: none;
    /* Removed shadow for cleaner look */
}

.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* --- Buttons --- */
.btn-premium {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 4px;
    /* Less rounded */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
    box-shadow: none;
    /* No colored glow */
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

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

.btn-premium-dark {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-premium-dark:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.section-bg-light {
    background-color: var(--bg-light);
}

.section-label {
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* --- Service Boxes --- */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    /* Neutral light grey bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Tour Cards --- */
.tour-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.tour-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.tour-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-card:hover .tour-img-wrapper::before {
    opacity: 1;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 280px;
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.15);
}

.tour-img-wrapper .badge {
    z-index: 2;
    font-size: 0.75rem;
    padding: 8px 14px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 193, 7, 0.95) !important;
}

.tour-content {
    padding: 28px;
    position: relative;
}

.tour-meta {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-meta i {
    color: var(--accent-color);
}

.tour-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.tour-title a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.tour-title a:hover {
    color: var(--accent-color);
}

.tour-desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-footer {
    padding-top: 18px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tour-footer .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* --- Features / Why Choose Us --- */
.feature-box {
    text-align: left;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    /* Added box shadow */
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-box h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background-color: #0a3d62;
    background-image: linear-gradient(rgba(10, 61, 98, 0.75), rgba(10, 61, 98, 0.85)),
        url('/images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgba(255, 255, 255, 0.95);
    padding-top: 120px;
    padding-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
}

footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

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

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Inner Page Header --- */
.page-header {
    background-color: #121212;
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.75) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(22, 33, 62, 0.75) 100%),
        url('/images/headers/leisure-tours.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 90px;
    color: var(--white);
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

/* Leisure Tours Headers */
.page-header-leisure {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/leisure-tours.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-family {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/family-tours.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-city {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/city-tours.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-special {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/special-interest.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-pilgrimage {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/pilgrimage.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-tailor {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/tailor-made.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-shore {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/shore-excursions.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-combined {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/combined-tours.jpg');
    background-size: cover;
    background-position: center;
}

/* MICE Headers */
.page-header-mice {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/mice.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-meetings {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/meetings.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-events {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/events.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-corporate {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/corporate.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-inleisure {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/in-leisure.jpg');
    background-size: cover;
    background-position: center;
}

/* Health Headers */
.page-header-health {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/health.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-hospitals {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/hospitals.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-aesthetic {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/aesthetic.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-wellness {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/wellness.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-consultancy {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/consultancy.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-packages {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/packages.jpg');
    background-size: cover;
    background-position: center;
}

/* Other Pages Headers */
.page-header-about {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/about.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-mission {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/mission.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-contact {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/contact.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-blog {
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(26, 26, 46, 0.75)), url('/images/headers/blog.jpg');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--accent-color);
}

/* --- Forms --- */
.form-control-premium {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    background-color: #fcfcfc;
    transition: all 0.3s;
}

.form-control-premium:focus {
    background-color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 160, 0, 0.1);
}

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

    .hero-wrapper {
        height: 80vh;
    }

    /* Mobile Navigation Improvements */
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar.scrolled,
    .navbar.navbar-solid {
        background-color: var(--white);
    }

    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 6px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }

    /* Mobile Menu Overlay Style */
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, var(--primary-color) 0%, #0a0a1a 100%);
        padding: 30px 20px;
        z-index: 999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        padding-top: 20px;
    }

    .navbar-nav .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link {
        color: var(--white) !important;
        font-size: 1.1rem;
        padding: 15px 10px !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: var(--accent-color) !important;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        border-radius: 8px;
        margin: 0 0 10px 0;
        padding: 10px;
        position: static;
        width: 100%;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 12px 15px;
        border-radius: 6px;
        font-size: 0.95rem;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white) !important;
        padding-left: 20px;
    }

    /* Mobile Contact Button */
    .btn-premium {
        width: 100%;
        margin-top: 20px;
        padding: 15px;
        font-size: 1rem;
        background: var(--accent-color) !important;
        border-color: var(--accent-color) !important;
        color: var(--white) !important;
    }

    /* Section padding adjustments */
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Expertise section mobile */
    .col-lg-6 .service-card {
        margin-bottom: 15px;
    }

    .custom-content-area {
        margin-top: 30px;
    }

    /* Language switcher mobile */
    .nav-item.dropdown.ms-3.border-start {
        border-left: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
}

/* --- Google Translate Overrides --- */
/* Robustly hide the top frame */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
body>.skiptranslate,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* Hide the hover tooltip */
.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}