@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Kalam:wght@300;400;700&display=swap");

:root {
    --primary-color: #d2691e;
    --secondary-color: #8b4513;
    --accent-color: #ffd700;
    --dark-green: #d2691e;
    --light-green: #d2691e;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --header-color: #d2691e;
    --text-light2: rgba(255, 255, 255, 0.9);
    --card-border: 1px solid rgba(210, 105, 30, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Museo Sans", sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.handwritten {
    font-family: "Kalam", cursive;
    font-weight: 600;
}

.script-font {
    font-family: "Kalam", cursive;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.top-bar {
    background: linear-gradient(135deg, #1a2a3a 0%, #3a4a5a 100%);
    padding: -10px 0;
    font-size: 12px;
    color: #fff;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    margin-left: 15px;
    color: #fff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #c19d56;
}

@media (max-width: 576px) {
    .top-bar-content {
        flex-direction: column;
        padding-bottom: 23rem;
        gap: 8px;
        text-align: center;
    }

    .social-icons {
        display: none;
    }
}

.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn i {
    margin-left: 5px;
    font-size: 12px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    min-width: 150px;
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-dropdown a:hover {
    background: #f5f5f5;
}

/* Adjust header styles for language switcher */


@media (max-width: 992px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 8px;
    }

    .lang-btn {
        color: #333;
        border-color: #ddd;
    }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: -9.96em;
}

header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logos {
    display: flex;
    align-items: center;
}

.logos img {
    height: 49px;
    margin-right: 1px;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    font-family: "Kalam", cursive;
    margin-left: -5rem;
    color: #e67e22;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 12px;
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: "Segoe UI", sans-serif;
}

.nav-links a:hover {
    color: #e67e22;
}

.quotes {
    background-color: #e67e22;
    color: white;
    padding: 8px 18px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-left: 8rem;
}

.quotes:hover {
    background-color: #d35400;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
}



/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
}

.lang-dropdown-content a {
    color: var(--black);
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.lang-dropdown-content a:hover {
    background-color: var(--light-gray);
}

.language-dropdown:hover .lang-dropdown-content {
    display: block;
}

.language-dropdown.active .lang-dropdown-content {
    display: block;
}

.language-dropdown:hover .lang-dropdown-content,
.language-dropdown.active .lang-dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content h1 {
    font-size: 3.9rem;
    margin-bottom: 1rem;
    font-family: "Kalam", cursive;
    font-weight: 600;
    line-height: 3rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, background 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.welcome-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.welcome-text-content {
    flex: 1;
}

.welcome-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Kalam", cursive;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.section-title2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-family: "Kalam", cursive;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.section-title2 p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 3rem;
    /* font-family: "Kalam", cursive; */
    color: var(--gray);
    font-weight: 500;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.welcome-text-content h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: "Kalam", cursive;
}

.welcome-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.founder-section {
    padding: 5rem 0;
    background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    ;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.founder-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.founder-card:before {
    content: " ";
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 5rem;
    color: rgba(210, 105, 30, 0.1);
    font-family: Georgia, serif;
}

.founder-content {
    position: relative;
    z-index: 1;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.founder-signature {
    font-family: "Dancing Script", cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: right;
    margin-top: 2rem;
}


/* Popular Tours */
.popular-tours {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: "Kalam", cursive;
    color: var(--primary-color);
    font-weight: 700;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.2rem;
}

.tour-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rating {
    color: var(--accent-color);
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-description {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tour-btn {
    width: 100%;
    padding: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.tour-btn:hover {
    background: var(--secondary-color);
}

.container2 {
    max-width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 4rem;
}

.hero-section {
    display: flex;
    height: 90vh;
    position: relative;
}

.hero-content {
    flex: 2;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    z-index: 2;
}

.hero-image-container2 {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slider-container21 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 25px 0 0 25px;
    margin-left: 20px;
    overflow: hidden;
}

.pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.pagination-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #d2691e;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d2691e;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: "Kalam", cursive;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #2a5c7a;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 5px;
    background-color: #d2691e;
    border-radius: 5px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
}

.text-block {
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 16px;
    background-color: #d2691e;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    /* Slightly smaller font */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    width: 21rem;
    height: 21rem;
    text-align: center;
    margin-left: 2rem;
    margin-bottom: 3rem;
}

.btn-primary:hover {
    background-color: #b85c1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.4);
}

/* sticky */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: translateY(-5px);
}

.sticky-btn.whatsapp {
    background-color: var(--primary-color);
}

.sticky-btn.phone {
    background-color: var(--primary-color);
}


/* Destinations Section */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    min-height: 994px;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
}

/* Section Styling */
.destinations-section {
    position: relative;
    padding: 80px 0;
    color: var(--text-light2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.video-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(100, 100, 100, 0.3),
            rgba(50, 50, 50, 0.6));
    mix-blend-mode: multiply;
    z-index: 1;
}


/* Title Styling */
.section-title {
    font-family: 'Kalam', cursive;
    color: var(--header-color);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Destinations Container */
.destinations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Destination Category Cards */
.destination-category {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: var(--card-border);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.destination-category:hover {
    transform: translateY(-5px);
}

.destination-category h3 {
    font-family: 'Kalam', cursive;
    color: var(--header-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-category h3 i {
    font-size: 1.3rem;
}

/* Destination List */
.destination-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.destination-list li i {
    color: var(--header-color);
    width: 20px;
    text-align: center;
}

/* Responsive Adjustments */
@media (min-width: 480px) {

    /* Small tablets and large phones */
    .destinations-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {

    /* Tablets */
    .destinations-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .destinations-container {
        gap: 25px;
    }

    .destination-card {
        padding: 25px;
    }
}

@media (min-width: 1024px) {

    /* Desktops */
    .destinations-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {

    /* Large desktops */
    .destinations-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .video-background {
        height: auto;
        /* More reasonable for mobile */
    }
}

@media (max-width: 768px) {
    .video-background {
        height: 60vh;
        /* More reasonable for mobile */
    }
}

.video-background.fallback {
    background-image: url('https://www.pexels.com/photo/scenic-view-of-sunset-2340626/');
    background-size: cover;
    background-position: center;
}

.video-background.fallback video {
    display: none;
}



/* Activities Section */
.activities-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.activities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: "Kalam", cursive;
    display: flex;
    align-items: center;
}

.activity-category h3 i {
    margin-right: 10px;
}

.activity-list {
    list-style: none;
}

.activity-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}


@media (max-width: 992px) {

    .welcome-container,
    .map-container {
        flex-direction: column;
    }

    /* .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    } */

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }


}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .hero-content {
        padding: 60px 40px;
        order: 2;
    }

    .hero-image-container2 {
        height: 50vh;
    }

    .slide {
        border-radius: 0;
        /* Remove rounding on mobile */
        margin-left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}


@media (max-width: 576px) {
    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 1.6s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1.2s ease-out;
}

.slide-in-right {
    animation: slideInRight 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Why Choose Us */
.why-choose-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-family: "Kalam", cursive;
}

.feature-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* planner */
.section-header {
    max-width: 1800px;
    margin: 0 auto;
    color: var(--primary-color);
    text-align: center;
}

.planner-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: "Kalam", cursive;
}

.planner-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.planner-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: left;
    color: var(--black);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    width: calc(33.333% - 1rem);
}

.checkbox-item input {
    margin-right: 8px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 2rem auto 0;
}

.submit-btn:hover {
    background: var(--secondary-color);
}


/* Testimonials */
.testimonials {
    padding: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 0.9rem;
}

.swiper-slide .testimonial-location {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Tanzania Map Section */
.map-info-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.map-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.map-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-info {
    flex: 1;
}

.map-info h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: "Kalam", cursive;
}

.map-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #3a4a5a 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #d2691e;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--savanna-gold);
}

.footer-column p,
.footer-column a {
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d2691e;
}

.social-icons2 {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons2 a:hover {
    background: #3a4a5a;
    transform: translateY(-3px);
}

/* Blog Preview */
.blog-preview {
    padding: 3rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 1.2rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 998px) {
    .nav-links {
        position: fixed;
        top: 7rem;
        left: 0;
        right: 0;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        transition: var(--transition);
        box-shadow: 0 10px 10px var(--header-color);
        display: none;
    }
    header .logos img{
        height: 5rem;
        width: 5rem;
        border-radius: 50%;
    }
    header {
        padding-bottom: 1rem;
    }
    .logo{
        font-size: 1.6rem;
    }


    .destination-category {
        color: var(--secondary-color);
        font-weight: 500;

    }

    .btn-primary {
        margin-top: -2rem;
        height: 30px;
        width: 290px;
        padding-bottom: 2rem;
        border-radius: 2px;
        border-radius: 50px;
        margin-left: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .mobile-menu {
        display: block;
        color: var(--header-color);
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
        margin-left: 1.3rem;
    }

}
@media (max-width: 414px) {
    .logo{
        font-size: 1.3rem;
    }
    
}
@media (max-width: 430px) {
    .logo{
        font-size: 1.3rem;
    }
}
@media (max-width: 576px) {
    .logo {
        font-size: 1.1rem;
        margin-left: 1.3rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (width: 390px) {
    html {
        font-size: 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        height: 55vh;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .planner-form {
        padding: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .activities-container {
        grid-gap: 0.8rem;
    }

    .activity-category h3 {
        font-size: 1.1rem;
    }

    .sticky-cta {
        bottom: 70px;
        right: 12px;
    }

    .sticky-btn {
        width: 44px;
        height: 44px;
    }

    .video-background video {
        display: none;
    }

    .video-background {
        background-image: url('mobile-fallback.jpg');
        background-size: cover;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    label {
        font-size: 0.9rem;
    }

    a,
    button,
    .checkbox-item label {
        min-height: 44px;
        min-width: 44px;
        padding: 12px;
    }

    input,
    select,
    textarea {
        padding: 12px;
        font-size: 16px;
    }
}

.exact-390 .hero-cta {
    padding: 12px 18px;
}

.exact-390 .mobile-menu {
    padding: 12px;
}
