/* ===== CSS Variables ===== */
:root {
    --primary-color: #E86A33;
    --primary-dark: #C85A28;
    --secondary-color: #1A1A2E;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-color: #FDFBF7;
    --bg-light: #F5F3EF;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes planeMove {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(50px) translateY(-20px) rotate(-10deg);
    }
    50% {
        transform: translateX(100px) translateY(0) rotate(0deg);
    }
    75% {
        transform: translateX(150px) translateY(20px) rotate(10deg);
    }
    100% {
        transform: translateX(200px) translateY(0) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

.animate-fade-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* ===== Header Styles ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

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

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

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

.search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--bg-light);
}

.signin-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.signin-btn:hover {
    background: #2a2a4a;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: var(--transition);
    padding: 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu {
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav-actions {
    margin-top: 40px;
}

.mobile-nav-actions .signin-btn {
    display: inline-block;
}

/* ===== Search Modal ===== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.search-modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(-30px);
    transition: var(--transition);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.close-search {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-search:hover {
    color: var(--text-color);
}

.search-modal h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.search-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-form button {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.popular-searches h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tags a {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
    padding: 120px 0 80px;
    background: var(--bg-color);
    overflow: hidden;
}

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

.hero-text {
    opacity: 0;
    animation: fadeInLeft 0.8s ease 0.3s forwards;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-text h1 .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232, 106, 51, 0.3);
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 106, 51, 0.4);
}

.hero-images {
    position: relative;
    opacity: 0;
    animation: fadeInRight 0.8s ease 0.5s forwards;
}

.hero-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.hero-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

.hero-img.img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 280px;
}

.hero-img.img-2 {
    grid-column: 2;
    grid-row: 1;
    height: 130px;
}

.hero-img.img-3 {
    grid-column: 3;
    grid-row: 1;
    height: 130px;
}

.hero-img.img-4 {
    grid-column: 2 / 4;
    grid-row: 2;
    height: 135px;
}

.decorative-elements {
    position: absolute;
    bottom: -40px;
    left: -20px;
    z-index: 2;
}

.plane-path {
    position: relative;
    width: 200px;
    height: 100px;
}

.plane-svg {
    width: 100%;
    height: 100%;
}

.plane-icon {
    position: absolute;
    top: 50%;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: planeMove 4s ease-in-out infinite;
}

/* ===== Destinations Section ===== */
.destinations-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.destination-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.tabs-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid transparent;
}

.tab-btn:hover {
    color: var(--text-color);
    background: var(--bg-light);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.dropdown-btn i {
    margin-left: 4px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-btn.open i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.explore-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    animation: fadeInUp 0.5s ease;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.view-btn {
    background: var(--white);
    color: var(--text-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

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

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

.card-info {
    padding: 16px;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

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

/* ===== Stories Section ===== */
.stories-section {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.read-more-btn {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

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

.story-card {
    transition: var(--transition);
}

.story-card.featured {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.story-card .story-image {
    position: relative;
    overflow: hidden;
}

.story-card.featured .story-image {
    height: 280px;
}

.story-card .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.story-card .category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
}

.category.food { background: #E86A33; }
.category.shopping { background: #5B8FB9; }
.category.hotels { background: #7B68EE; }
.category.budget { background: #2ECC71; }

.story-card .story-content {
    padding: 20px;
}

.story-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.story-card h3 a:hover {
    color: var(--primary-color);
}

.story-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.story-card.featured p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.stories-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-card.horizontal {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 12px;
}

.story-card.horizontal:hover {
    box-shadow: var(--shadow-md);
}

.story-card.horizontal .story-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.story-card.horizontal .story-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-card.horizontal .category {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
}

.story-card.horizontal h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.story-card.horizontal .story-meta {
    margin-bottom: 0;
}

/* ===== Highlights Section ===== */
.highlights-section {
    padding: 80px 0;
    background: var(--white);
}

.highlights-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.rating {
    margin-bottom: 16px;
}

.rating i {
    color: #FFB800;
    font-size: 1rem;
}

.testimonial-card > h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.highlights-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.main {
    height: 280px;
}

.gallery-item.video {
    height: 180px;
    cursor: pointer;
}

.gallery-item.video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 4px;
}

.gallery-item.video:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    width: 24px;
    border-radius: 4px;
}

.see-more-btn {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
    padding: 12px 32px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.see-more-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E86A33 0%, #C85A28 50%, #A04A20 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920&h=600&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}

.newsletter-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input:focus {
    outline: none;
    background: var(--white);
}

.newsletter-form button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #2a2a4a;
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.privacy-note a {
    text-decoration: underline;
}

.privacy-note a:hover {
    opacity: 0.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.social-links p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Video Modal ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.close-video:hover {
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ===== Page Specific Styles ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-light);
}

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

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 106, 51, 0.1);
}

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

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tab-content.active {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .destination-tabs {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tabs-wrapper {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
    }
    
    .tab-content.active {
        grid-template-columns: 1fr;
    }
    
    .story-card.horizontal {
        flex-direction: column;
    }
    
    .story-card.horizontal .story-image {
        width: 100%;
        height: 180px;
    }
    
    .highlights-gallery {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-img-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .hero-img.img-1 {
        grid-column: 1 / 3;
        height: 180px;
    }
    
    .hero-img.img-2,
    .hero-img.img-3 {
        height: 120px;
    }
    
    .hero-img.img-4 {
        grid-column: 1 / 3;
        height: 120px;
    }
    
    .tab-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .card-image {
        height: 160px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-light) 25%, var(--bg-color) 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 5000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: #2ECC71;
}

.toast.error {
    background: #E74C3C;
}

/* ===== Advanced Animation Styles ===== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FF9966);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Character Animation for Text Reveal */
.reveal-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.5s forwards;
}

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

/* Magnetic Button Effect */
.magnetic-btn, .cta-btn, .signin-btn {
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Tilt Card Effect */
.destination-card, .story-card, .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.destination-card:hover, .story-card:hover, .product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Glow Effect on Hover */
.glow-effect:hover {
    box-shadow: 0 0 30px rgba(232, 106, 51, 0.4);
}

/* Pulse Animation for CTAs */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 106, 51, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(232, 106, 51, 0);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left { animation: slideInLeft 0.6s ease forwards; }
.slide-in-right { animation: slideInRight 0.6s ease forwards; }
.slide-in-up { animation: slideInUp 0.6s ease forwards; }
.slide-in-down { animation: slideInDown 0.6s ease forwards; }

/* Scale Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in { animation: scaleIn 0.5s ease forwards; }

/* Rotate Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.rotate-in { animation: rotateIn 0.6s ease forwards; }

/* Flip Animation */
@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0);
    }
}

.flip-in { animation: flipIn 0.6s ease forwards; }

/* Gradient Border Animation */
.gradient-border {
    position: relative;
    background: var(--white);
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), #FF9966, var(--primary-color));
    background-size: 200% 200%;
    z-index: -1;
    border-radius: inherit;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Underline Animation */
.animated-underline {
    position: relative;
    display: inline-block;
}

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

.animated-underline:hover::after {
    width: 100%;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    opacity: 0;
}

.ripple:active::after {
    transform: scale(4);
    opacity: 1;
    transition: 0s;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Blur on Scroll */
.blur-bg {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth image hover zoom */
.img-zoom-container {
    overflow: hidden;
    border-radius: inherit;
}

.img-zoom-container img {
    transition: transform 0.5s ease;
}

.img-zoom-container:hover img {
    transform: scale(1.1);
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-progress,
    .cursor-trail {
        display: none;
    }
}
