/* ========== HOME PAGE SPECIFIC STYLES ========== */
/* Header styles moved to style.css for global use */

#nav-menu-close {
    display: none !important;
}



/* ========== HERO BANNER REDESIGN ========== */

.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(118, 75, 162, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(102, 126, 234, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(118, 75, 162, 0.2), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% {
        background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    }

    100% {
        background-position: 200px 200px, 240px 260px, 330px 470px, 270px 300px;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-5px);
    }
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

.hero-badge span {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-icon i {
    font-size: 1.3rem;
    color: #667eea;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.2rem;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-card {
    position: absolute;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

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

.hero-card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-card-2 {
    top: 100px;
    right: 50px;
    z-index: 2;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-card-3 {
    bottom: 0;
    left: 100px;
    z-index: 1;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-location {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-rating {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-rating i {
    color: #ffd700;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #667eea, transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* ========== DESTINATIONS SECTION ========== */
.destinations-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.featured-card {
    grid-column: span 2;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.category-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.meta-item i {
    color: #667eea;
}

/* ========== TRAVEL TIPS SECTION ========== */
.tips-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tip-card-large {
    grid-row: span 2;
}

.tip-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.tip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tip-highlights {
    list-style: none;
    margin: 1.5rem 0;
}

.tip-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.tip-highlights i {
    color: #4caf50;
    font-size: 0.9rem;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.tip-link:hover {
    gap: 1rem;
}

/* ========== CULTURE SECTION ========== */
.culture-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    padding: 5rem 0;
}

.culture-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(255,255,255,0.05)" fill="none"/></svg>');
    opacity: 0.3;
}



.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.culture-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.culture-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.culture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.culture-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.culture-content {
    padding: 1.5rem;
}

.culture-location {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.culture-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.culture-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.culture-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.culture-date {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.culture-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.culture-link:hover {
    gap: 1rem;
}

/* ========== SEASONS SECTION ========== */
.seasons-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 5rem 0;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.season-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.season-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.season-header {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.season-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.season-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

.season-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    backdrop-filter: blur(10px);
}

.season-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.season-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.season-content {
    padding: 1.5rem;
}

.season-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.season-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.season-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.season-temp {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

.season-months {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.season-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.season-link:hover {
    gap: 1rem;
}

/* ========== SUSTAINABLE SECTION ========== */
.sustainable-section {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sustainable-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.eco-pattern {
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.eco-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.sustainable-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.sustainable-featured {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #efefef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.eco-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.eco-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.eco-stat i {
    font-size: 1.5rem;
    color: #4caf50;
}

.eco-stat span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.eco-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.eco-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.featured-image {
    height: 100%;
    overflow: hidden;
}

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

.sustainable-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eco-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.eco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.eco-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.eco-card-icon i {
    font-size: 1.3rem;
    color: white;
}

.eco-card h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.eco-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.eco-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.eco-link:hover {
    color: #66bb6a;
}

/* ========== DEALS SECTION ========== */
.deals-section {
    background: linear-gradient(135deg, #fff5f5, #ffe5e5);
    padding: 0;
}

.deals-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.banner-icon i {
    font-size: 2.5rem;
    color: white;
}

.banner-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
}

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hot-deal {
    grid-row: span 2;
    background: linear-gradient(135deg, #fff, #fff5f5);
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.deal-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.deal-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.deal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.deal-icon i {
    font-size: 1.8rem;
    color: white;
}

.deal-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.deal-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.deal-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.feature-tag i {
    color: #4caf50;
}

.deal-savings {
    margin-bottom: 1.5rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.deal-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.deal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.deal-link:hover {
    gap: 1rem;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-content h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-content p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Navigation for Home - Desktop Only */
@media (min-width: 769px) {
    .nav-list {
        display: flex;
        list-style: none;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .nav-link i {
        font-size: 0.9rem;
    }
}

/* Section Styling */
.content-section {
    padding: 4rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.content-section:nth-child(odd) {
    background: #ffffff;
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Enhanced Article Cards */
.articles-grid {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.article-card {
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.article-card:hover::before {
    left: 100%;
}

.article-image {
    transition: transform 0.5s ease;
}

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

.article-content {
    position: relative;
    z-index: 2;
}

.article-content h3 {
    transition: color 0.3s ease;
}

.article-card:hover .article-content h3 {
    color: #667eea;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced CTA Button */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Read More Button Enhancement */
.read-more {
    position: relative;
    overflow: hidden;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.read-more:hover::after {
    opacity: 1;
    right: 10px;
}

.read-more:hover {
    padding-right: 35px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

@keyframes bounce {

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

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

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

/* Loading Animation for Images */
.article-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

    100% {
        background-position: -200% 0;
    }
}

.article-image[src] {
    animation: none;
    background: none;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #667eea, transparent);
    margin: 2rem 0;
}

/* Enhanced Footer for Home */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

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

    100% {
        background-position: 200% 0%;
    }
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }

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

    .hero-image {
        height: 500px;
    }

    .hero-card {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 0.3rem;
    }

    .nav-link {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .nav-icon {
        font-size: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        height: 400px;
        margin: 0 auto;
        max-width: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    /* Tablet Optimizations for Six Modules */
    .destinations-layout {
        gap: 2rem;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tips-list .tip-list-item {
        padding: 2rem 10px;
    }

    .culture-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .seasons-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .eco-small-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .deals-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .tip-card-large {
        grid-row: span 1;
    }

    .featured-card {
        grid-column: span 1;
    }

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

    .sustainable-featured {
        grid-template-columns: 1fr;
    }

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

    .hot-deal {
        grid-row: span 1;
    }
}

/* ========== MODERN MOBILE DESIGN FOR SIX MODULES ========== */

/* Mobile-First Approach - Base styles for mobile */
@media (max-width: 768px) {

    /* 隐藏PC端导航，显示移动端导航 */
    .nav-menu-desktop {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
    }

    /* Body scroll lock when nav is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* ========== CLEAN WHITE MOBILE NAVIGATION REDESIGN ========== */

    /* Header Mobile Styles */
    .header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    /* Brand Optimization */
    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .brand-icon i {
        font-size: 1.1rem;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    /* Clean White Mobile Menu Design */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        overflow: hidden;
        padding: 4rem 2rem;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }

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

    /* Remove animated background */
    .nav-menu::before {
        display: none;
    }

    /* Navigation List Redesign */
    .nav-menu .nav-list {
        flex-direction: column !important;
        gap: 0 !important;
        text-align: left;
        position: relative;
        z-index: 2;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .nav-menu .nav-item {

        animation: slideInNavClean 0.5s ease forwards;
        width: 100% !important;
        flex: none !important;
        position: relative !important;
    }



    .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-item:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-item:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-item:nth-child(6) {
        animation-delay: 0.35s;
    }

    .nav-item:nth-child(7) {
        animation-delay: 0.4s;
    }

    @keyframes slideInNavClean {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Clean Navigation Links - One per row - Mobile Only */
    .nav-menu .nav-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.6rem !important;
        color: #1a202c !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        padding: 0rem 1.5rem !important;
        margin: 0.4rem 0 !important;
        border-radius: 12px !important;
        background: rgba(248, 250, 252, 0.8) !important;
        border: 2px solid rgba(226, 232, 240, 0.5) !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        width: 100% !important;
        min-height: 60px !important;
        box-sizing: border-box !important;
        position: relative !important;
        overflow: hidden !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        transform: none !important;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.08), transparent);
        transition: left 0.4s ease;
    }

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

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus {
        background: rgba(76, 81, 191, 0.1) !important;
        border-color: rgba(76, 81, 191, 0.3) !important;
        transform: translateX(8px) !important;
        color: #4c51bf !important;
        box-shadow: 0 4px 12px rgba(76, 81, 191, 0.15) !important;
    }

    .nav-link:active {
        transform: translateX(4px) scale(0.98);
    }

    /* Icon Styles - Purple circular background - Mobile Only */
    .nav-menu .nav-icon {
        width: 40px !important;
        height: 40px !important;
        background: rgba(76, 81, 191, 0.15) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
        border: 1px solid rgba(76, 81, 191, 0.2) !important;
    }

    .nav-menu .nav-icon i {
        font-size: 1rem !important;
        color: #4c51bf !important;
        transition: all 0.3s ease !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #4c51bf !important;
        background-clip: unset !important;
    }

    .nav-menu .nav-link:hover .nav-icon {
        background: rgba(76, 81, 191, 0.25) !important;
        transform: scale(1.1) !important;
        border-color: rgba(76, 81, 191, 0.3) !important;
    }

    .nav-menu .nav-link:hover .nav-icon i {
        color: #3730a3 !important;
        transform: scale(1.1) !important;
    }

    /* Text Styles - Mobile Only */
    .nav-menu .nav-text {
        font-size: 1rem !important;
        font-weight: 400 !important;
        letter-spacing: 0.3px !important;
        flex: 1 !important;
        text-align: left !important;
        color: #1a202c !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }

    .nav-menu .nav-link:hover .nav-text {
        color: #4c51bf !important;
    }

    /* Remove search button from menu */
    .nav-actions {
        display: none;
    }

    /* Clean Close Button - Top Right - ONLY BUTTON */
    .nav-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: rgba(76, 81, 191, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4c51bf;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 3;
        opacity: 0;
        transform: scale(0);
        border: 2px solid rgba(76, 81, 191, 0.2);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active .nav-menu-close {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.2s;
    }

    .nav-menu-close:hover {
        background: rgba(76, 81, 191, 0.25);
        transform: scale(1.1);
        border-color: rgba(76, 81, 191, 0.3);
        color: #3730a3;
    }

    .nav-menu-close:active {
        transform: scale(0.95);
    }

    /* Simplified Footer */
    .nav-menu-footer {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: #667eea;
        font-size: 1rem;
        z-index: 2;
        opacity: 0;
        animation: fadeInFooterClean 0.5s ease 0.6s forwards;
    }

    .nav-footer-text {
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #999;
        font-size: 0.85rem;
    }

    .nav-menu-footer::before {
        content: 'skinjolt';
        display: block;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: #667eea;
    }

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

    /* Modern Hamburger Menu */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1000;
        position: relative;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
    }

    .bar {
        width: 28px;
        height: 3px;
        background: #667eea;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-origin: center;
    }

    /* Animated Hamburger to X */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #667eea;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #667eea;
    }

    /* Performance Optimizations */
    .nav-menu {
        will-change: transform;
        backface-visibility: hidden;
    }

    .nav-link {
        will-change: transform;
    }

    /* Accessibility Improvements */
    .nav-toggle:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    .nav-link:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    .nav-menu-close:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {

        .nav-menu,
        .nav-link,
        .nav-toggle .bar,
        .nav-icon {
            transition: none;
        }

        .nav-item {
            animation: none;
            opacity: 1;
            transform: none;
        }

        .nav-link::before {
            display: none;
        }

        .nav-menu-footer {
            animation: none;
            opacity: 1;
        }
    }

    /* Hero Mobile Optimizations */
    .hero-banner {
        padding: 6rem 1rem 3rem;
        min-height: 70vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

    .hero-stats {
        /* flex-direction: column; */
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        flex-direction: column;

        background: white;
        padding: 1.2rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .hero-image {
        height: 300px;
        position: relative;
        margin: 0 auto;
    }

    .hero-card {
        width: 200px;
        height: 250px;
    }

    .hero-card-1 {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .hero-card-2 {
        top: 50px;
        right: 10px;
        z-index: 2;
    }

    .hero-card-3 {
        bottom: 0;
        left: 10px;
        z-index: 1;
    }

    /* General Mobile Optimizations */
    .content-section {
        padding: 2rem 0;
        overflow: hidden;
    }

    .container {
        padding: 0 1rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 1rem;
        color: #666;
        line-height: 1.5;
    }

    /* ========== 1. DESTINATIONS SECTION - SWIPEABLE CARDS ========== */
    .destinations-layout {
        display: block;
    }

    .destination-featured {
        margin-bottom: 2rem;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .featured-image-wrapper {
        height: 250px;
        position: relative;
    }

    .featured-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 2rem 1.5rem 1.5rem;
        color: white;
    }

    .featured-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.9);
        color: #667eea;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .featured-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .featured-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .featured-meta {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .featured-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: white;
        color: #667eea;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    /* Horizontal Scrollable Grid for Destination Cards */
    .destination-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.5rem 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .destination-grid::-webkit-scrollbar {
        display: none;
    }

    .destination-card {
        flex: 0 0 280px;
        height: 180px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        scroll-snap-align: start;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

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

    .destination-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 2rem 1rem 1rem;
        color: white;
    }

    .destination-tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    .destination-info h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .destination-info a {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* ========== 2. TRAVEL TIPS SECTION - STACKED CARDS ========== */
    .tips-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .tip-list-item {
        background: white;
        border-radius: 20px;
        padding: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
    }

    .tip-list-item:active {
        transform: scale(0.98);
    }

    .tip-number {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        z-index: 10;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        text-align: center;
        line-height: 1;
    }

    .tip-image {
        height: 120px;
        position: relative;
    }

    /* 数字徽章背景遮罩 - 确保数字始终可见 */
    .tip-image::before {
        content: '';
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        width: 50px;
        height: 50px;
        background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 5;
    }

}

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

.tip-details {
    padding: 1.5rem;
}

.tip-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #667eea;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    line-height: 1.3;
}

.tip-details p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tip-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ========== 3. CULTURE SECTION - MASONRY LAYOUT ========== */
.culture-grid-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.culture-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.culture-card-new:nth-child(even) {
    margin-top: 1rem;
}

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

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

.culture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.culture-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
}

.culture-card-content {
    padding: 1.5rem;
}

.culture-location-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.culture-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    line-height: 1.3;
}

.culture-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.culture-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* ========== 4. SEASONS SECTION - GRID WITH ANIMATIONS ========== */
.seasons-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.season-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.season-box:active {
    transform: translateY(-5px);
}

.season-icon-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    z-index: 2;
}

.season-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.season-box-content {
    padding: 1.5rem;
}

.season-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.season-box-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.3;
}

.season-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.season-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.season-box-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

/* ========== 5. SUSTAINABLE SECTION - FEATURED + GRID ========== */
.sustainable-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eco-featured-large {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.eco-featured-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eco-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 1.5rem 1.5rem;
    color: white;
}

.eco-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eco-featured-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.eco-featured-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.eco-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #28a745;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.eco-small-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.eco-small-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.eco-small-card:active {
    transform: scale(0.98);
}

.eco-small-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
}

.eco-small-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.eco-small-card h4 {
    padding: 1rem;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.eco-small-card a {
    display: block;
    padding: 0 1rem 1rem;
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* ========== 6. DEALS SECTION - CARD STACK ========== */
/* .deals-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    margin: 0 1rem 2rem;
} */

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.banner-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.deals-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.deal-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.deal-card-modern:active {
    transform: scale(0.98);
}

.deal-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.deal-icon-wrapper {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    z-index: 2;
}

.deal-card-modern img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.deal-card-body {
    padding: 1.5rem;
}

.deal-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    line-height: 1.3;
}

.deal-card-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.deal-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.deal-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.deal-highlights i {
    color: #28a745;
    font-size: 0.8rem;
}

.deal-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}


/* ========== ENHANCED MOBILE DESIGN FOR SMALLER SCREENS ========== */
@media (max-width: 480px) {

    /* ========== CLEAN WHITE NAVIGATION - SMALL SCREENS ========== */

    /* Navigation Smaller Screens */
    .nav-container {
        padding: 0 1rem;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
    }

    .brand-icon i {
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    /* Compact Navigation Links - Small Screens */
    .nav-menu .nav-link {
        font-size: 1rem !important;
        padding: 0.8rem 1.2rem !important;
        margin: 0.2rem 0 !important;
        gap: 0.8rem !important;
        color: #1a202c !important;
        font-weight: 700 !important;
        min-height: 60px !important;
        box-sizing: border-box !important;
    }

    /* Smaller Icons */
    .nav-icon {
        width: 40px;
        height: 40px;
    }

    .nav-menu .nav-icon i {
        font-size: 1.1rem !important;
        color: #4c51bf !important;
    }

    /* Compact Text - Small Screens */
    .nav-menu .nav-text {
        font-size: 1rem !important;
        letter-spacing: 0.2px !important;
        color: #1a202c !important;
        font-weight: 700 !important;
    }

    /* Smaller Close Button */
    .nav-menu-close {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    /* Compact Hamburger */
    .nav-toggle {
        padding: 6px;
    }

    .bar {
        width: 24px;
        height: 2.5px;
    }

    /* Adjust animations for smaller screens */
    .nav-link:hover,
    .nav-link:focus {
        transform: translateX(6px);
    }

    .nav-link:hover .nav-icon {
        transform: scale(1.05);
    }

    /* Compact menu padding */
    .nav-menu {
        padding: 3rem 1.5rem;
    }

    .nav-list {
        max-width: 350px;
    }

    /* Footer adjustments */
    .nav-menu-footer {
        bottom: 2rem;
    }

    .nav-menu-footer::before {
        font-size: 1.1rem;
    }

    /* Hero Smaller Screens */
    .hero-banner {
        padding: 5rem 1rem 2rem;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .hero-image {
        height: 250px;
    }

    .hero-card {
        width: 160px;
        height: 200px;
    }

    /* Section Headers Smaller */
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .section-icon {
        width: 50px;
        height: 50px;
    }

    .section-icon i {
        font-size: 1.2rem;
    }

    /* ========== 1. DESTINATIONS SECTION - ENHANCED MOBILE ========== */
    .featured-image-wrapper {
        height: 220px;
    }

    .featured-content {
        padding: 1.5rem 1rem 1rem;
    }

    .featured-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .featured-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .featured-meta {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        gap: 0.8rem;
    }

    .featured-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .destination-card {
        flex: 0 0 250px;
        height: 160px;
    }

    .destination-info {
        padding: 1.5rem 0.8rem 0.8rem;
    }

    .destination-info h4 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .destination-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    /* ========== 2. TRAVEL TIPS SECTION - ENHANCED MOBILE ========== */
    .tips-list {
        gap: 1.2rem;
    }

    .tip-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        top: 0.8rem;
        left: 0.8rem;
        z-index: 10;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        text-align: center;
        line-height: 1;
        font-weight: 700;
    }

    .tip-image {
        height: 100px;
        position: relative;
    }

    /* 数字徽章背景遮罩 - 确保数字始终可见 */
    .tip-image::before {
        content: '';
        position: absolute;
        top: 0.3rem;
        left: 0.3rem;
        width: 45px;
        height: 45px;
        background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 5;
    }

    .tip-details {
        padding: 1.2rem;
    }

    .tip-category {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }

    .tip-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .tip-details p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tip-arrow {
        width: 35px;
        height: 35px;
        bottom: 0.8rem;
        right: 0.8rem;
        font-size: 0.9rem;
    }

    /* ========== 3. CULTURE SECTION - ENHANCED MOBILE ========== */
    .culture-grid-new {
        gap: 1.2rem;
    }

    .culture-card-bg {
        height: 160px;
    }

    .culture-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        top: 0.8rem;
        left: 0.8rem;
    }

    .culture-card-content {
        padding: 1.2rem;
    }

    .culture-location-new {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .culture-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .culture-card-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .culture-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    /* ========== 4. SEASONS SECTION - ENHANCED MOBILE ========== */
    .seasons-grid-layout {
        gap: 1.2rem;
    }

    .season-icon-large {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .season-box img {
        height: 120px;
    }

    .season-box-content {
        padding: 1.2rem;
    }

    .season-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }

    .season-box-content h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .season-details {
        font-size: 0.75rem;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .season-box-content a {
        font-size: 0.85rem;
    }

    /* ========== 5. SUSTAINABLE SECTION - ENHANCED MOBILE ========== */
    .sustainable-layout {
        gap: 1.5rem;
    }

    .eco-featured-large {
        height: 240px;
    }

    .eco-featured-overlay {
        padding: 2rem 1.2rem 1.2rem;
    }

    .eco-featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        top: 0.8rem;
        left: 0.8rem;
    }

    .eco-featured-overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .eco-featured-overlay p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .eco-featured-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .eco-small-grid {
        gap: 0.8rem;
    }

    .eco-small-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 0.8rem;
        left: 0.8rem;
    }

    .eco-small-card img {
        height: 100px;
    }

    .eco-small-card h4 {
        padding: 0.8rem;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }

    .eco-small-card a {
        padding: 0 0.8rem 0.8rem;
        font-size: 0.85rem;
    }

    /* ========== 6. DEALS SECTION - ENHANCED MOBILE ========== */
    .deals-banner {
        padding: 1.5rem 0;
        margin: 0 0.5rem 1.5rem;
    }

    .banner-content {
        gap: 0.8rem;
    }

    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .banner-text h2 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .deals-cards-grid {
        gap: 1.2rem;
    }

    .deal-ribbon {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .deal-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 0.8rem;
        left: 0.8rem;
    }

    .deal-card-modern img {
        height: 120px;
    }

    .deal-card-body {
        padding: 1.2rem;
    }

    .deal-card-body h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .deal-card-body p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .deal-highlights {
        margin-bottom: 1rem;
    }

    .deal-highlights li {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .deal-highlights i {
        font-size: 0.7rem;
    }

    .deal-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Touch-Friendly Interactions */
    .destination-card,
    .tip-list-item,
    .culture-card-new,
    .season-box,
    .eco-small-card,
    .deal-card-modern {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .destination-card:active,
    .tip-list-item:active,
    .culture-card-new:active,
    .season-box:active,
    .eco-small-card:active,
    .deal-card-modern:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Smooth Scrolling for Horizontal Lists */
    .destination-grid {
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .destination-grid::-webkit-scrollbar {
        display: none;
    }

    /* Loading States */
    .destination-card img,
    .tip-image img,
    .culture-card-bg img,
    .season-box img,
    .eco-small-card img,
    .deal-card-modern img {
        transition: opacity 0.3s ease;
    }

    .destination-card img[src=""],
    .tip-image img[src=""],
    .culture-card-bg img[src=""],
    .season-box img[src=""],
    .eco-small-card img[src=""],
    .deal-card-modern img[src=""] {
        opacity: 0;
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }

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

        100% {
            background-position: 200% 0;
        }
    }

    /* Accessibility Improvements */
    .featured-btn:focus,
    .tip-arrow:focus,
    .culture-btn:focus,
    .season-box-content a:focus,
    .eco-featured-btn:focus,
    .eco-small-card a:focus,
    .deal-btn:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {

        .destination-card,
        .tip-list-item,
        .culture-card-new,
        .season-box,
        .eco-small-card,
        .deal-card-modern {
            transition: none;
        }

        .destination-card:active,
        .tip-list-item:active,
        .culture-card-new:active,
        .season-box:active,
        .eco-small-card:active,
        .deal-card-modern:active {
            transform: none;
        }

        .hero-particles,
        .shimmer {
            animation: none;
        }
    }
}

.nav-list {

    padding: 1rem 0;
}

.nav-link {
    font-size: 1rem;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-link i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.hero {
    height: 80vh;
}

.hero-content h1 {
    font-size: 2rem;
}

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

.article-card {
    margin-bottom: 1rem;
}

.scroll-indicator {
    display: none;
}

.culture-grid,
.seasons-grid {
    grid-template-columns: 1fr;
}

.card-image-wrapper {
    height: 220px;
}

.banner-content {
    flex-direction: column;
    text-align: center;
}

.banner-text h2 {
    font-size: 2rem;
}

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

.section-icon {
    width: 60px;
    height: 60px;
}

.section-icon i {
    font-size: 1.5rem;
}


@media (max-width: 480px) {
    .hero-badge {
        margin-left: 159px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

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

    .article-content h3 {
        font-size: 1.1rem;
    }

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

    .featured-overlay {
        top: 12%;
        padding: 0 !important;
    }

    .featured-content h3 {
        font-size: 1.5rem !important;
    }

    .banner-text h2 {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 0.95rem;
    }

    .tip-card,
    .eco-card,
    .deal-card {
        padding: 1.5rem;
    }

    .featured-content {
        padding: 2rem;
    }

    /* Small Screen Specific Adjustments */
    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Destinations Section Small Screen */
    .featured-image-wrapper {
        height: 200px;
    }

    .featured-content {
        padding: 1rem;
    }

    .featured-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem;
    }

    .featured-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .featured-meta {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .destination-card {
        height: 180px;
    }

    .destination-info {
        padding: 1rem;
    }

    .destination-info h4 {
        font-size: 1rem;
        line-height: 1.3;
    }

    /* Travel Tips Section Small Screen */
    .tip-list-item {
        padding: 1rem;
    }

    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .tip-image {
        height: 150px;
    }

    .tip-details h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .tip-details p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Culture Section Small Screen */
    .culture-card-new {
        height: 250px;
    }

    .culture-card-content {
        padding: 1rem;
    }

    .culture-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .culture-card-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Seasons Section Small Screen */
    .season-card {
        height: 200px;
    }

    .season-content {
        padding: 1rem;
    }

    .season-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .season-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Sustainable Section Small Screen */
    .eco-card {
        padding: 1rem;
    }

    .eco-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .eco-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .eco-stat {
        padding: 1rem;
    }

    .eco-stat-number {
        font-size: 1.5rem;
    }

    .eco-stat-label {
        font-size: 0.8rem;
    }

    /* Deals Section Small Screen */
    .deal-card-modern {
        min-height: 300px;
    }

    .deal-card-body {
        padding: 1rem;
    }

    .deal-card-body h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .deal-card-body p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .deal-highlights {
        margin-bottom: 1rem;
    }

    .deal-highlights li {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .deal-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Hover Effects for Desktop */
@media (min-width: 769px) {
    .content-section {
        transition: background 0.3s ease;
    }

    .articles-grid {
        perspective: 1000px;
    }

    .article-card {
        transition: all 0.3s ease;
    }

    .article-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
}

/* Print Styles */
@media print {

    .header,
    .hero,
    .footer,
    .nav-toggle,
    .cta-button,
    .read-more,
    .scroll-indicator {
        display: none;
    }

    .content-section {
        page-break-inside: avoid;
    }

    .article-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .brand-icon i {
        font-size: 1.2rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

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

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

    .hero-image {
        height: 300px;
    }

    .hero-card {
        width: 160px;
        height: 200px;
    }

    .hero-card-2 {
        right: 10px;
        top: 80px;
    }

    .hero-card-3 {
        left: 5px;
    }

    .container {
        padding: 0 15px;
    }

    .article-main {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .page-content {
        padding: 1.5rem;
    }
}

/* Hover Effects for Desktop */
@media (min-width: 769px) {
    .content-section {
        transition: background 0.3s ease;
    }

    .articles-grid {
        perspective: 1000px;
    }

    .article-card {
        transition: all 0.3s ease;
    }

    .article-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
}

/* Print Styles */
@media print {

    .header,
    .hero-banner,
    .footer,
    .nav-toggle,
    .hero-btn,
    .hero-scroll {
        display: none;
    }

    .content-section {
        page-break-inside: avoid;
    }

    .article-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {

    /* Increase touch targets */
    .nav-link,
    .hero-btn,
    .featured-btn,
    .tip-arrow,
    .culture-btn,
    .season-btn,
    .eco-btn,
    .deal-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve button spacing */
    .hero-actions {
        gap: 1rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
    }

    /* Better card interactions */
    .destination-card,
    .culture-card-new,
    .season-box,
    .eco-small-card,
    .deal-card-modern {
        transition: transform 0.2s ease;
    }

    .destination-card:active,
    .culture-card-new:active,
    .season-box:active,
    .eco-small-card:active,
    .deal-card-modern:active {
        transform: scale(0.98);
    }

    /* Improve text readability */
    .section-title {
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    /* Better spacing for content */
    .content-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
}

/* Extra small devices optimization */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

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

    .featured-content h3 {
        font-size: 1.2rem !important;
    }

    .tip-details h3,
    .culture-card-content h3,
    .season-content h3,
    .eco-card h3,
    .deal-card-body h3 {
        font-size: 1rem;
    }

    .featured-content,
    .tip-list-item,
    .culture-card-content,
    .season-content,
    .eco-card,
    .deal-card-body {
        padding: 0.75rem;
    }
}