/* =====================
   CSS RESET & VARIABLES
===================== */
:root {
    --primary-color: #0b2545;
    --secondary-color: #c9a14a;
    --text-color: #1f2933;
    --light-color: #ffffff;
    --bg-light: #f9fafb;

    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================
   HEADER
===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 40px;
    height: 70px;
}
@media (max-width: 900px){
    header .container{
        justify-content: space-between;
    }
}
.logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

/* Navigation */
.navigation ul {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: var(--secondary-color);
}

/* CTA Button */
.btn-primary {
    background: var(--secondary-color);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =====================
   HERO SECTION
===================== */
.hero {
    height: 100vh;
    background: url('../images/hero_section.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 37, 69, 0.65);
}

.hero-content {
    position: relative;
    max-width: 650px;
    color: var(--light-color);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    font-size: 17px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary {
    border: 2px solid var(--light-color);
    color: var(--light-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color);
}


/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 12px;
    padding: 10px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f9fafb;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f9fafb;
    color: var(--secondary-color);
    padding-left: 25px;
    /* Slide effect */
}

.dropbtn i {
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content .view-all {
    font-weight: 600;
    color: var(--primary-color);
    background-color: #f5f7fa;
    text-align: center;
}

.dropdown-content .view-all:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* =====================
   MOBILE MENU
===================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {

    .navigation {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--light-color);
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation ul {
        flex-direction: column;
        gap: 30px;
    }

    .navigation.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }
}

/* =====================
   WHY US SECTION
===================== */
.why-us {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #555;
}

/* Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.why-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-card .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-us {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   SERVICES SECTION
===================== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Icon */
.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Title */
.service-card h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Text */
.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   DESTINATIONS SECTION
===================== */
.destinations {
    padding: 100px 0;
    background: #ffffff;
}

/* Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 37, 69, 0.8),
            rgba(11, 37, 69, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
    transition: background 0.4s ease;
}

.destination-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Hover Effects */
.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
    background: rgba(11, 37, 69, 0.85);
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destinations {
        padding: 70px 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 220px;
    }
}

/* =====================
   FLEET SECTION
===================== */
.fleet {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.fleet-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Image */
.fleet-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.fleet-content {
    padding: 25px;
}

.fleet-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fleet-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fleet-content li {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fleet {
        padding: 70px 0;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-card img {
        height: 200px;
    }
}

/* =====================
   PROCESS SECTION
===================== */
.process {
    padding: 100px 0;
    background: #ffffff;
}

/* Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Step Card */
.step {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Step Number */
.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    color: #000;
    font-weight: 700;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title */
.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Text */
.step p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process {
        padding: 70px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* =====================
   ABOUT SECTION
===================== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Text */
.about-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

/* =====================
   BOOKING SECTION
===================== */
.booking {
    padding: 100px 0;
    background: #ffffff;
}

.booking-box {
    max-width: 700px;
    margin: auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.booking-box {
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    font-family: sans-serif;
}

.steps-indicator {
    display: flex;
    margin-bottom: 25px;
}

.step {
    flex: 1;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid #eee;
    color: #999;
}

.step.active {
    border-color: #caa24d;
    color: #000;
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    background: #fff6f6;
}

.row {
    display: flex;
    gap: 15px;
}

button {
    margin-top: 25px;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    background: #caa24d;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

.site-footer {
    background: #0a2540;
    color: #ffffff;
    padding: 60px 20px 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cfd8e3;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #cfd8e3;
}

.footer-col ul li a {
    color: #cfd8e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #0d6efd;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #cfd8e3;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }
}

/* a-propos page */
.about-section {
    padding: 100px 20px;
    background: #f8f9fb;
}

.about-section .container {
    max-width: 1200px;
    margin: auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 36px;
    color: #0a2540;
    margin-bottom: 15px;
}

.about-intro p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #555;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0a2540;
}

.about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.value-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0d6efd;
}

.value-box p {
    font-size: 14px;
    color: #555;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.stat strong {
    font-size: 32px;
    color: #0d6efd;
}

.stat span {
    display: block;
    font-size: 14px;
    color: #555;
}

/* CTA */
.about-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-intro h2 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Destinations Page */
.dest-hero {
    background: linear-gradient(135deg, #0a2540, #0d6efd);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.dest-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.dest-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
}

.dest-text {
    padding: 50px 20px;
}

.dest-text p {
    max-width: 900px;
    margin: auto;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.dest-list {
    padding: 80px 20px;
    background: #f8f9fb;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dest-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    text-decoration: none;
    color: #0a2540;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dest-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.dest-card p {
    font-size: 14px;
    color: #555;
}

.dest-cta {
    padding: 80px 20px;
    text-align: center;
}

.dest-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dest-hero h1 {
        font-size: 30px;
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   LANDING PAGE STYLES
===================== */
.hero-landing {
    height: 80vh;
    min-height: 600px;
}

/* FAQ Section Styles */
.faq {
    padding: 100px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-size: 17px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 15px;
    padding: 0 15px;
    color: #555;
    line-height: 1.6;
}

/* Pricing Section Styles */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 15px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: none;
}

.price-features li i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Route Description */
.route-desc {
    background: #fff;
    padding: 80px 0;
}

.route-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.route-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =====================
   BACK TO TOP BUTTON
===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}