/*
Theme Name: Morocco All Theme
Theme URI: https://morocco-all.com
Author: PixelPower Team
Description: A custom tourism theme for Morocco All.
Version: 3.0
Text Domain: morocco-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #d98d4f;
    /* Logo Orange/Gold */
    --secondary-color: #0f3046;
    /* Logo Dark Blue */
    --accent-color: #e6b800;
    /* Bright Gold */
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --bg-color: #fdfcf8;
    --white: #ffffff;
    --font-heading: 'Cinzel Decorative', cursive;
    /* More ornamental/Moroccan feel */
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(15, 48, 70, 0.15);
    --radius-arch: 200px 200px 0 0;
    /* Moroccan Arch Shape */
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('assets/images/pattern.webp');
    background-size: 600px;
    background-blend-mode: overlay;
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

ul {
    list-style: none;
}

/* Creative Header */
/* Creative Header */
header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-top: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    margin-top: 20px;
    transition: all 0.3s ease;
}

nav:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.current-lang img {
    width: 28px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.lang-switcher:hover .current-lang img {
    transform: scale(1.1);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown a img {
    width: 28px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.2s;
}

.lang-dropdown a:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a::before {
    display: none;
    /* Remove old diamond */
}

.cta-btn {
    background: linear-gradient(45deg, var(--secondary-color), #1a4b6e);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(15, 48, 70, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 48, 70, 0.4);
    background: linear-gradient(45deg, #1a4b6e, var(--secondary-color));
}

.cta-btn::after {
    display: none;
    /* Remove old slide effect for cleaner look */
}

/* ===== MODERN MOBILE MENU ===== */

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 999;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 252, 248, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(217, 141, 79, 0.2);
}

.mobile-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mobile-close-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.mobile-close-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.mobile-close-btn svg {
    stroke-width: 2.5;
}

/* Mobile Navigation Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(217, 141, 79, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 141, 79, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    left: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: linear-gradient(135deg, rgba(217, 141, 79, 0.15), rgba(217, 141, 79, 0.05));
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(217, 141, 79, 0.2);
}

.mobile-nav-link svg {
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover svg,
.mobile-nav-link:active svg {
    transform: scale(1.2);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(217, 141, 79, 0.2);
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    color: white;
    text-align: center;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(217, 141, 79, 0.35);
    transition: all 0.3s ease;
    border: none;
}

.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 141, 79, 0.5);
    background: linear-gradient(135deg, #e67e22, var(--primary-color));
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.lang-opt {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(217, 141, 79, 0.2);
    border-radius: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-opt:hover,
.lang-opt:active {
    background: rgba(217, 141, 79, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.lang-opt.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(217, 141, 79, 0.3);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Show mobile menu button on tablet and mobile */
@media (max-width: 1024px) {
    .nav-menu-container {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    nav {
        padding: 10px 20px;
    }

    .logo img {
        height: 50px;
    }

    .nav-actions {
        gap: 15px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 10px;
    }

    nav {
        margin-top: 10px;
        padding: 8px 15px;
    }

    .logo img {
        height: 45px;
    }

    .nav-actions {
        gap: 10px;
    }

    .cta-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .nav-actions .cta-btn {
        display: none;
    }

    .lang-switcher .current-lang img {
        width: 24px;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

/* Creative Hero Section */
.hero {
    min-height: 110vh;
    background: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 15s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: scale(1.1);
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
    margin-left: 5%;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    backdrop-filter: blur(5px);
}

.hero-content .cta-btn {
    background: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), #e67e22);
    box-shadow: 0 4px 15px rgba(217, 141, 79, 0.4);
}

.hero-content .cta-btn:hover {
    background: linear-gradient(45deg, #e67e22, var(--primary-color));
    box-shadow: 0 6px 20px rgba(217, 141, 79, 0.6);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: 80vh;
        padding-top: 120px;
    }

    .hero-bg-slider {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 80px;
    color: var(--secondary-color);
}

.section-title span {
    color: var(--primary-color);
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-body);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Tours Slider */
.tours-slider-container {
    position: relative;
    padding: 0 20px;
    /* Reduced padding */
    overflow: hidden;
}

@media (min-width: 768px) {
    .tours-slider-container {
        padding: 0 50px;
    }
}

.tours-slider {
    display: flex;
    gap: 20px;
    /* Reduced gap */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
}

@media (min-width: 768px) {
    .tours-slider {
        gap: 40px;
    }
}

.tour-card {
    min-width: 280px;
    /* Smaller min-width for mobile */
    width: 80vw;
    /* Responsive width */
    max-width: 350px;
    /* Max width for desktop */
    flex: 0 0 auto;
    background: transparent;
    transition: transform 0.4s;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.tour-card:hover {
    transform: translateY(-15px);
}

.tour-image-wrapper {
    height: 400px;
    border-radius: var(--radius-arch);
    /* THE ARCH */
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.tour-info {
    background: var(--white);
    padding: 30px;
    margin-top: -50px;
    /* Overlap */
    position: relative;
    z-index: 2;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    min-height: 4.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}

/* Destinations - Mosaic Style */
/* Destinations - Mosaic Style */
.destinations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.destination-item {
    display: block;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: center;
    border: none;
    padding: 0;
    clip-path: none;
}

.destination-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    color: inherit;
    clip-path: none;
}

.destination-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-item:hover .destination-image img {
    transform: scale(1.1);
}

.destination-name {
    display: block;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    background: #f9f9f9;
}

/* Reviews Scroll Container */
/* Reviews Scroll Container (Vertical) */
.reviews-scroll-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-height: 600px;
    /* Height for approx 2 rows */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    scroll-behavior: smooth;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ccc #f9f9f9;
}

.reviews-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: #f9f9f9;
    border-radius: 4px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.review-card {
    height: auto;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}



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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.ta-logo {
    height: 25px;
    width: auto;
}

.stars {
    color: #00aa6c;
    /* TripAdvisor Green */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.verified-badge {
    font-size: 0.8rem;
    color: #333;
    margin-left: 10px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.verified-badge i {
    color: #333;
}

.review-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.review-author {
    font-weight: 700;
    color: var(--secondary-color);
    text-align: right;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* About - Split Layout */
.about-section {
    background: var(--secondary-color);
    color: var(--white);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    /* Angled edges */
    padding: 150px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2;
}

.about-content::before {
    content: '❝';
    display: block;
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    margin: 0;
    opacity: 0.9;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
}

.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    background: #f9f9f9;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(217, 141, 79, 0.1);
}

.modern-form textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-form .submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    font-size: 1.1rem;
}

/* Contact Messages */
.contact-message {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-message .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-message h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.contact-message p {
    margin: 0;
    font-size: 1rem;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Tours Archive Page Styles */
.tours-archive-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4b6e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tours-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.webp');
    opacity: 0.1;
    background-size: 400px;
}

.tours-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding-top: 120px;
}

.tours-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tours-main-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin: 20px 0;
    color: var(--white);
}

.tours-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 50px;
}

.tours-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Filter Section */
.tours-filter-section {
    background: #f9f9f9;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.filter-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.destination-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-tag {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tag:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-tag.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.tag-count {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
}

/* Tours Grid */
.tours-archive-grid {
    padding: 80px 0;
}

.tours-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .tours-masonry-grid {
        grid-template-columns: 1fr;
    }
}

.tour-grid-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.tour-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-grid-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-grid-card:hover .tour-card-overlay {
    opacity: 1;
}

.tour-view-btn {
    background: var(--white);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.tour-view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.tour-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-card-content {
    padding: 25px;
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

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

.tour-card-excerpt {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.meta-icon {
    font-size: 1.2rem;
}

/* Pagination */
.tours-pagination {
    margin-top: 60px;
    text-align: center;
}

.tours-pagination ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.tours-pagination li a,
.tours-pagination li span {
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
}

.tours-pagination li a:hover,
.tours-pagination li span.current {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* No Tours Found */
.no-tours-found {
    text-align: center;
    padding: 80px 20px;
}

.no-tours-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.no-tours-found h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.no-tours-found p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.tours-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.tours-cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.tours-cta-content .cta-btn {
    background: var(--white);
    color: var(--primary-color);
}

.tours-cta-content .cta-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

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

    .tours-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .tours-cta-content h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background: #0a2130;
    padding: 80px 0 30px;
    color: var(--white);
}

/* Single Tour Page Styles */
.single-tour-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.tour-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 200px;
}

.tour-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.tour-meta-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.meta-item svg {
    flex-shrink: 0;
}

/* Tour Content Layout */
.single-tour-content {
    padding: 80px 0;
    background: #f9f9f9;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

@media (max-width: 968px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        order: -1;
    }
}

.tour-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.content-card p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.highlights-content {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* Tour Sidebar */
.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.sidebar-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.booking-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4b6e 100%);
    color: var(--white);
}

.booking-card h3,
.booking-card p {
    color: var(--white);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.destination-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Related Tours */
.related-tours {
    padding: 80px 0;
    background: var(--white);
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.related-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-tour-image {
    height: 200px;
    overflow: hidden;
}

.related-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-tour-card:hover .related-tour-image img {
    transform: scale(1.1);
}

.related-tour-content {
    padding: 25px;
}

.related-tour-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.related-tour-content h3 a {
    color: var(--secondary-color);
    transition: color 0.3s;
}

.related-tour-content h3 a:hover {
    color: var(--primary-color);
}

.related-tour-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-tour-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.view-tour-link:hover {
    color: var(--secondary-color);
}

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

    .tour-hero-content {
        padding-top: 150px;
    }

    .content-card {
        padding: 25px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Increased min-width */
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
    /* Align to top */
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 33, 48, 0.85) 0%, rgba(26, 75, 110, 0.75) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding-top: 180px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6b800 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4b6e 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: scale(1.05);
}

.value-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--white);
    opacity: 0.95;
    line-height: 1.7;
}

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

.about-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
}

.about-cta-content .cta-btn {
    background: var(--white);
    color: var(--primary-color);
}

.about-cta-content .cta-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4b6e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.webp');
    opacity: 0.1;
    background-size: 400px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Contact Page Section */
.contact-page-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.enhanced-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.enhanced-contact-form .form-group {
    margin-bottom: 25px;
}

.enhanced-contact-form label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.enhanced-contact-form input,
.enhanced-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.enhanced-contact-form input:focus,
.enhanced-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.enhanced-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.enhanced-contact-form .cta-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 0;
    background: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quick-contact-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.quick-contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.quick-contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.quick-contact-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.quick-contact-card .cta-btn {
    width: 100%;
    justify-content: center;
}

.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 968px) {

    .about-title,
    .contact-title {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-stats {
        margin-top: 40px;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .enhanced-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: #ccc;
    list-style: none;
    /* Ensure no bullets */
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--white);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Logo Fix */
.logo img {
    height: 90px;
    /* Ensure height is set */
    width: auto;
    /* Maintain aspect ratio */
    display: block;
}

/* Plan Your Tour Page Styles */
.plan-tour-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4b6e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.plan-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.webp');
    opacity: 0.1;
    background-size: 400px;
}

.plan-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.plan-tour-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.plan-tour-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Plan Tour Section */
.plan-tour-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.funnel-page-wrapper {
    background: var(--white);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .plan-tour-title {
        font-size: 2.5rem;
    }

    .plan-tour-subtitle {
        font-size: 1.1rem;
    }

    .funnel-page-wrapper {
        padding: 30px 20px;
    }
}

/* Funnel Progress Bar */
.funnel-header {
    text-align: center;
    margin-bottom: 30px;
}

.funnel-header h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.progress-step.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(224, 169, 109, 0.2);
}

.progress-line {
    width: 40px;
    height: 2px;
    background: #eee;
    margin: 0 5px;
}

/* .progress-step.active+.progress-line,
.progress-step.active~.progress-line {
} */

/* Funnel Steps */
.funnel-step {
    display: none;
    animation: fadeIn 0.4s;
}

.funnel-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.funnel-step h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.option-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-card:hover {
    border-color: var(--primary-color);
    background: #fff9f2;
}

.option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* .option-card input:checked+.option-icon+.option-label {
} */

.option-card:has(input:checked) {
    border-color: var(--primary-color);
    background: #fff9f2;
    box-shadow: 0 4px 12px rgba(224, 169, 109, 0.2);
}

.option-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.option-label {
    font-weight: 600;
    color: #555;
}

/* Form Elements */
.funnel-form .form-group {
    margin-bottom: 20px;
}

.funnel-form input,
.funnel-form select,
.funnel-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.funnel-form input:focus,
.funnel-form select:focus,
.funnel-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Navigation Buttons */
.step-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.cta-btn.secondary {
    background: #eee;
    color: #555;
}

.cta-btn.secondary:hover {
    background: #ddd;
    transform: none;
}

.cta-btn {
    width: 100%;
    justify-content: center;
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-title span {
        font-size: 1rem;
    }

    .tour-card {
        min-width: 260px;
    }

    .tour-image-wrapper {
        height: 300px;
    }

    .tour-info {
        padding: 20px;
    }

    .tour-info h3 {
        font-size: 1.4rem;
    }

    .funnel-content {
        padding: 30px 20px;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}