﻿/* =============================================
   CONDE.TRAVEL CLONE - EXACT STYLES
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary-green: #1bbc9b;
    --primary-green-hover: #18a88a;
    --dark-grey: #434a54;
    --dark-grey-light: #4e5661;
    --dark-grey-dark: #3a3f48;
    --text-dark: #222222;
    --text-grey: #6e6e6e;
    --text-light: #999999;
    --border-light: #f1f1f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-card: 0 0 10px rgba(0,0,0,0.15);
    --shadow-card-hover: 0 10px 30px rgba(0,0,0,0.2);
    --radius-card: 15px;
    --radius-btn: 5px;
    --transition: all 0.3s ease;
    --font-primary: 'Manrope', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --font-script: 'Reenie Beanie', cursive;
    --container-max: 1200px;
    --header-height: 90px;
    --navbar-height: 50px;
    --topbar-height: 40px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body p {
    margin-block-end: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

.e-con-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.bg-light { background-color: var(--bg-light); }

.section-padding {
    padding: 80px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-btn);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-green {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

.btn-green:hover {
    background: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27,188,155,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark-grey);
    border-color: var(--dark-grey);
}

.btn-outline:hover {
    background: var(--dark-grey);
    color: #fff;
}

/* ---------- TOP HEADER BAR ---------- */
.top-header-bar {
    background: var(--dark-grey);
    position: relative;
    z-index: 100;
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.top-header-logo {
    flex-shrink: 0;
}

.top-header-logo img {
    height: 50px;
    width: auto;
}

.top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.top-header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header-cta {
    padding: 8px 20px;
    font-size: 12px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    font-family: var(--font-accent);
    font-weight: 700;
    text-transform: uppercase;
}

.btn-header-cta:hover {
    background: var(--primary-green-hover);
    transform: translateY(-1px);
}

.header-text-link {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-primary);
}

.header-text-link:hover {
    color: var(--primary-green);
}

.top-header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    font-family: var(--font-primary);
}

.contact-item i {
    font-size: 14px;
    color: var(--primary-green);
}

.contact-item:hover {
    color: var(--primary-green);
}

.contact-landline {
    /* Tablet hidden by default */
}

@media (max-width: 1024px) {
    .contact-landline {
        display: none;
    }
    .header-text-link {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header-contact {
        display: none;
    }
    .top-header-inner {
        justify-content: center;
    }
}

/* ---------- MAIN HEADER / NAVBAR ---------- */
.main-navbar {
    background: var(--dark-grey);
    position: sticky;
    top: 0;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main-navbar .e-con-inner {
    padding: 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Nav Menu */
.nav-menu-wrapper {
    width: 100%;
}

.e-n-menu-heading {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.e-n-menu-item {
    position: relative;
}

.e-n-menu-title-container {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.e-n-menu-title-container:hover {
    color: var(--primary-green);
    background: rgba(27,188,155,0.1);
}

.e-n-menu-title-container .e-n-menu-icon {
    font-size: 16px;
}

.e-n-menu-title-container .e-n-menu-title-text {
    font-size: 14px;
}

.e-n-menu-dropdown-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    padding: 0 4px;
    transition: var(--transition);
}

.e-n-menu-dropdown-icon:hover {
    color: var(--primary-green);
}

/* Mega Menu */
.mega-menu-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 700px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary-green);
    z-index: 200;
    padding: 30px;
}

.e-n-menu-item:hover .mega-menu-content,
.e-n-menu-item:hover > .mega-menu-content {
    display: block;
}

.e-n-menu-item:hover > .e-n-menu-title-container {
    color: var(--primary-green);
    background: rgba(27,188,155,0.1);
}

.mega-menu-inner {
    display: flex;
    gap: 30px;
}

.mega-menu-col {
    flex: 1;
}

.mega-menu-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.mega-menu-divider {
    height: 3px;
    background: var(--primary-green);
    width: 40px;
    margin-bottom: 15px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 10px;
}

.mega-menu-list li a {
    display: block;
    padding: 8px 10px;
    color: var(--text-dark);
    font-size: 13px;
    font-family: var(--font-primary);
    border-radius: 4px;
    transition: var(--transition);
}

.mega-menu-list li a:hover {
    background: var(--bg-light);
    color: var(--primary-green);
    padding-left: 15px;
}

.label {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: middle;
}

.label.best-seller {
    background: var(--primary-green);
    color: #fff;
}

.label.offers {
    background: #e74c3c;
    color: #fff;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rll-youtube-player {
    position: relative;
    padding-bottom: 56.23%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.rll-youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: 0 0;
}

.rll-youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

.rll-youtube-player img:hover {
    -webkit-filter: brightness(75%);
}

.rll-youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url('https://conde.travel/wp-content/plugins/wp-rocket/assets/img/youtube.png') no-repeat;
    cursor: pointer;
    z-index: 101;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
}

/* ---------- PAGE HEADER (Inner Pages) ---------- */
.page-header {
    background: var(--dark-grey);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: #fff;
    font-family: var(--font-heading);
}

.breadcrumb {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

/* ---------- AWARDS SECTION ---------- */
.awards-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
}

.awards-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.award-item:hover {
    opacity: 1;
}

.award-item img {
    height: 50px;
    width: auto;
}

.award-item span {
    font-size: 12px;
    color: var(--text-grey);
    font-weight: 600;
}

/* ---------- TOUR CARDS ---------- */
.tours-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle-script {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    margin: 15px auto 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.tour-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--primary-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-card-title a {
    color: var(--text-dark);
}

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

.tour-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-grey);
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-meta i {
    color: var(--primary-green);
}

.tour-card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.tour-card-price .from {
    font-size: 12px;
    color: var(--text-grey);
}

.tour-card-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.tour-card-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--dark-grey);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.tour-card-btn:hover {
    background: var(--primary-green);
    color: #fff;
}

/* ---------- DESTINATIONS SECTION ---------- */
.destinations-section {
    padding: 80px 0;
    background: #fff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.destination-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* Flip Card Effect */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: var(--dark-grey);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.flip-card-back h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.flip-card-back p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
    padding: 80px 0;
    background: var(--dark-grey);
    color: #fff;
}

.why-section .section-title h2 {
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-card);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.why-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 50px;
}

.testimonial-content {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 80px;
    color: var(--primary-green);
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-stars {
    color: #f1c40f;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-grey);
    font-size: 16px;
}

.testimonial-source {
    font-size: 12px;
    color: var(--text-grey);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-nav button.active {
    background: var(--primary-green);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 80px 0;
    background: var(--primary-green);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.btn-cta {
    padding: 15px 40px;
    font-size: 16px;
    background: #fff;
    color: var(--primary-green);
    border: none;
    font-weight: 700;
}

.btn-cta:hover {
    background: var(--dark-grey);
    color: #fff;
}

/* ---------- BLOG SECTION ---------- */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card-body {
    padding: 20px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: var(--text-dark);
}

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

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-card);
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #2b2b2b;
    color: #fff;
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- FOOTER CERTIFICATIONS ---------- */
.footer-certifications {
    background: #f5f5f5;
    padding: 30px 0;
    text-align: center;
}

.footer-certifications h4 {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.cert-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(20%);
}

.cert-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ---------- FOOTER MAIN ---------- */
.footer-main {
    padding: 60px 0 50px;
    background: #2b2b2b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer Column Titles */
.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    position: relative;
}

.footer-col-divider {
    width: 50px;
    height: 3px;
    background: #f58a1f;
    margin-bottom: 25px;
    transition: width 0.3s ease;
}

.footer-col:hover .footer-col-divider {
    width: 80px;
}

/* Footer About Column */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-about-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social a:hover {
    background: #72b52b;
    border-color: #72b52b;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(114,181,43,0.4);
}

/* Footer Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: #72b52b;
    font-size: 18px;
    margin-top: 2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.contact-value {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.footer-contact-item a.contact-value {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

.footer-contact-item a.contact-value:hover {
    color: #72b52b;
}

.contact-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* Footer Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-list li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #72b52b;
    transition: width 0.3s ease;
}

.footer-links-list li a:hover {
    color: #72b52b;
    padding-left: 5px;
}

.footer-links-list li a:hover::before {
    width: 100%;
}

/* Footer Payment */
.footer-payment {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-title {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons i {
    font-size: 36px;
    color: rgba(255,255,255,0.45);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
    background: #222;
    padding: 25px 0;
}

.footer-bottom-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #72b52b;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--dark-grey);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-green);
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-logo {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

.mobile-nav-list li a:hover {
    color: var(--primary-green);
}

.mobile-nav-contact {
    padding: 20px;
    border-top: 1px solid var(--border-light);
}

.btn-whatsapp-mobile,
.btn-phone-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 14px;
}

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.search-form {
    display: flex;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-primary);
}

.search-submit {
    padding: 15px 25px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
    cursor: pointer;
}

.search-submit:hover {
    background: var(--primary-green-hover);
}

/* ---------- LOADING ANIMATION ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .tours-grid,
    .destinations-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .top-header-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-header-right {
        flex-direction: column;
        gap: 10px;
    }

    .top-header-cta {
        flex-direction: column;
        gap: 10px;
    }

    .e-n-menu-heading {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .tours-grid,
    .destinations-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-title {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-section {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
    }

    .testimonial-item {
        padding: 0 10px;
    }

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