:root {
    --primary: #c9a962;
    --primary-dark: #a88b4a;
    --secondary: #1a1a1a;
    --light: #f8f8f8;
    --dark: #0a0a0a;
    --text-muted: #666;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--secondary);
    background: var(--light);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

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

section {
    position: relative;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.logo-animation {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.logo-animation span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterReveal 0.5s forwards;
}

.logo-animation span:nth-child(1) {
    animation-delay: 0.1s;
}

.logo-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.logo-animation span:nth-child(3) {
    animation-delay: 0.3s;
}

.logo-animation span:nth-child(4) {
    animation-delay: 0.4s;
}

.logo-animation span:nth-child(5) {
    animation-delay: 0.5s;
}

.logo-animation .logo-sub {
    display: block;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0;
    animation: fadeIn 0.5s 0.8s forwards;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: var(--primary);
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    width: 0;
    z-index: 1001;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

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

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: #fff;
    margin-top: -2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 15px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

/* Custom Toggler */
.navbar-toggler {
    border: none;
    padding: 10px;
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: var(--transition);
    position: relative;
}

.navbar-toggler.active .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section - Ultra Premium */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, -1%);
    }

    100% {
        transform: scale(1.15) translate(1%, 2%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.8s ease-out 0.8s forwards;
}

@keyframes lineReveal {
    to {
        transform: scaleX(1);
    }
}

.hero-title {
    font-size: 5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 0.8s ease-out forwards;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 1.1s;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

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

.hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 35px;
    opacity: 0;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.7s forwards;
}

.hero-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

.scroll-down-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-down-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(60px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
    }
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.scroll-down i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Section Styles */
.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Destinations */
.destinations-section {
    background: var(--light);
}

.destination-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

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

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

.destination-card:hover .destination-info {
    transform: translateY(0);
}

.destination-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.destination-info p {
    color: var(--primary);
    font-size: 0.9rem;
}

.destination-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: translate(-20px, 20px);
    transition: var(--transition);
}

.destination-card:hover .destination-link {
    opacity: 1;
    transform: translate(0, 0);
}

/* Why Choose Us */
.why-section {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.why-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #e6c87a);
    transform: scaleX(0);
    transition: all 0.5s ease;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: all 0.5s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover::after {
    transform: scale(1);
}

.why-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.why-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    color: #fff;
}

.why-card h4 {
    font-size: 1.35rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.why-card:hover h4 {
    color: var(--primary);
}

.why-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials-section {
    background: var(--light);
}

.testimonial-slider {
    position: relative;
}

.testimonial-card {
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    padding: 18px 50px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #fff;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    color: var(--dark);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.footer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 75px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

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

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 3px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i {
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.page-header-bg {
    position: absolute;
    inset: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.75) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
}

.breadcrumb {
    margin-top: 20px;
    justify-content: center;
    background: none;
}

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

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

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

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

    .hero-title .word {
        display: block;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    }

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

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 30%;
        min-width: 100px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .scroll-down {
        bottom: 25px;
    }

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

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

    .section-desc {
        font-size: 0.95rem;
    }

    .page-header {
        min-height: 50vh;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .destination-card {
        height: 280px;
    }

    .destination-full-card {
        height: 280px;
    }

    .destination-full-card.small {
        height: 180px;
    }

    .destination-full-content h3 {
        font-size: 1.4rem;
    }

    .destination-full-content p {
        font-size: 0.85rem;
    }

    .destination-features {
        flex-wrap: wrap;
        gap: 10px;
    }

    .destination-features li {
        font-size: 0.75rem;
    }

    .tour-card {
        margin-bottom: 20px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-content h3 {
        font-size: 1.2rem;
    }

    .tour-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-icon {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .category-card {
        padding: 25px 15px;
    }

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

    .footer-content {
        padding: 50px 0 30px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .gallery-filter {
        gap: 10px;
        flex-wrap: wrap;
    }

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

    .lightbox-modal {
        padding: 30px 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 1.5rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .team-card {
        margin-bottom: 20px;
    }

    .about-stats {
        flex-direction: column;
    }
}

/* Additional Page Styles - About */
.about-image {
    position: relative;
}

.about-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary);
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.mission-card {
    background: #fff;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.value-card {
    background: var(--dark);
    color: #fff;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-number {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    color: #fff;
    font-size: 1.1rem;
}

.team-social a:hover {
    color: var(--primary);
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Destination Page */
.destination-full-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.destination-full-card.small {
    height: 200px;
}

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

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

.destination-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
}

.destination-full-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

.destination-full-card:hover .destination-full-content {
    transform: translateY(0);
}

.destination-full-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.destination-full-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.destination-features {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-features li {
    color: var(--primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tours Page */
.tour-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

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

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

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

.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.tour-btn {
    padding: 15px 30px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 1px;
}

.tour-btn:hover {
    background: var(--primary-dark);
}

.tour-content {
    padding: 30px;
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.tour-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tour-meta {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tour-meta span {
    color: var(--primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-categories {
    background: var(--light);
}

.category-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.category-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery Page */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: none;
    color: var(--secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 50px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
    display: block;
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    padding: 20px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

/* Contact Page */
.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp-icon {
    background: #25D366;
}

.contact-text a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

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

.contact-social a {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.alert {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 0;
}

.alert-success {
    background: #d4edda;
    border: none;
}

.alert-success i {
    color: #28a745;
    font-size: 1.5rem;
}

.alert-success h4 {
    color: #155724;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.alert-success p {
    color: #155724;
    margin: 0;
}

.alert-error {
    background: #f8d7da;
    border: none;
}

.alert-error i {
    color: #dc3545;
    font-size: 1.5rem;
}

.alert-error h4 {
    color: #721c24;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.alert-error p {
    color: #721c24;
    margin: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

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

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.submit-btn i {
    transition: var(--transition);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.map-section iframe {
    display: block;
}

/* Page Header Enhanced */
.page-header-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-header-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Destination Section */
.destination-section {
    background: var(--light);
}

.beach-section {
    background: #f0f7f7;
}

.mountain-section {
    background: #f5f0eb;
}

.destination-full-card.large {
    height: 500px;
}

.destination-full-card .destination-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.destination-full-card .destination-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.destination-full-card .destination-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.destination-link-btn {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.destination-link-btn:hover {
    color: #fff;
    gap: 12px;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.destination-features li {
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-features li i {
    color: var(--primary);
}

/* Why Explore Cards */
.why-explore {
    background: var(--dark);
    color: #fff;
}

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

.explore-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.explore-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark);
}

.explore-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.explore-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px;
    }

    .destination-full-card.large {
        height: 400px;
    }

    .page-header-btns {
        gap: 10px;
    }

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

@media (max-width: 767px) {
    .page-header {
        height: 60vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .destination-full-card.large {
        height: 300px;
    }

    .destination-full-card.small {
        height: 200px;
    }

    .destination-full-content h3 {
        font-size: 1.3rem;
    }

    .destination-features {
        gap: 10px;
    }

    .explore-card {
        padding: 25px 20px;
    }

    .story-stats {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 30%;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    padding-right: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--dark);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    border-color: #fff;
}

@media (max-width: 767px) {
    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .cookie-content {
        padding-right: 0;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    /* Responsive floating buttons */
    .scroll-to-top {
        width: 38px;
        height: 38px;
        bottom: 68px;
        right: 20px;
    }

    .scroll-to-top i {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 38px;
        height: 38px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1rem;
    }
}

/* =============================================
   COMPREHENSIVE MOBILE STYLES
   ============================================= */

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar {
        padding: 12px 0;
        background: rgba(10, 10, 10, 0.98);
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .brand-text {
        font-size: 1rem !important;
    }

    .brand-sub {
        font-size: 0.65rem !important;
    }

    .navbar-toggler {
        padding: 8px;
        border: none;
    }

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

    .navbar-toggler-icon {
        width: 22px;
        height: 16px;
        background: none;
        position: relative;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
    }

    .nav-item {
        margin: 8px 0;
    }

    .nav-link {
        padding: 12px 15px !important;
        font-size: 0.95rem;
    }

    .dropdown-menu {
        background: rgba(30, 30, 30, 0.95);
        border: none;
        padding: 10px;
        margin-top: 8px;
    }

    .dropdown-item {
        color: #fff;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        background: rgba(201, 169, 98, 0.2);
        color: var(--primary);
    }
}

@media (max-width: 767px) {

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .scroll-down {
        bottom: 25px;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

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

    .section-desc {
        font-size: 0.9rem;
    }

    /* Page Header */
    .page-header {
        height: 50vh;
        min-height: 300px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Grid & Cards */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.g-4,
    .row.g-5 {
        --bs-gutter-x: 15px;
    }

    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Destination Cards */
    .destination-card {
        height: 280px;
    }

    .destination-info {
        padding: 15px;
    }

    .destination-info h3 {
        font-size: 1.1rem;
    }

    .destination-info p {
        font-size: 0.8rem;
    }

    .destination-link {
        width: 35px;
        height: 35px;
    }

    /* Why Section */
    .why-card {
        padding: 25px 20px;
    }

    .why-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .why-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-nav {
        margin-top: 20px;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
    }

    /* CTA Section */
    .cta-section {
        height: auto;
        min-height: 300px;
        padding: 60px 20px;
    }

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

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Gallery */
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-filter {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 25px;
    }

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

    .gallery-grid .col-lg-4 {
        margin-bottom: 15px;
    }

    .gallery-item-inner {
        height: 250px;
    }

    /* About Page */
    .story-section,
    .values-section,
    .mission-section,
    .team-section {
        padding: 50px 0;
    }

    .story-content .section-title {
        font-size: 1.6rem;
    }

    .story-content p {
        font-size: 0.9rem;
    }

    .story-images {
        height: 300px;
        margin-top: 30px;
    }

    .story-img-main {
        height: 220px;
    }

    .story-img-side {
        height: 150px;
    }

    .story-stats {
        gap: 15px;
    }

    .stat-box {
        padding: 12px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .value-card,
    .mission-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .team-card {
        margin-bottom: 20px;
    }

    .team-image {
        height: 220px;
    }

    .team-info {
        padding: 20px;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.85rem;
    }

    .stats-banner {
        padding: 40px 0;
    }

    .stats-num {
        font-size: 2rem;
    }

    .stats-label {
        font-size: 0.8rem;
    }

    /* Contact Page */
    .contact-section {
        padding: 50px 0;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .contact-info .section-title {
        font-size: 1.6rem;
    }

    .contact-info .contact-desc {
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 15px;
        gap: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-text h4 {
        font-size: 0.9rem;
    }

    .contact-text p {
        font-size: 0.8rem;
    }

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

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group .form-control {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .alert {
        padding: 15px;
    }

    .map-section {
        height: 280px;
    }

    /* Preloader */
    .preloader {
        padding: 20px;
    }

    .logo-animation {
        font-size: 2rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    /* Floating Buttons */
    .scroll-to-top,
    .whatsapp-float {
        width: 45px;
        height: 45px;
    }

    .whatsapp-float i,
    .scroll-to-top i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    /* Extra small devices */
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

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

    .destination-card {
        height: 240px;
    }

    .value-card,
    .mission-card {
        padding: 20px 15px;
    }

    .stat-box {
        flex: 1 1 45%;
    }
}