/* ============================================
   Travel Blog - Custom Styles
   ============================================ */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    
    /* Custom Travel Colors */
    --travel-blue: #1e88e5;
    --travel-teal: #00acc1;
    --travel-orange: #ff6f00;
    --travel-coral: #ff5252;
    --travel-green: #43a047;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    padding-top: 76px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   NAVIGATION - Simple & Professional
   ============================================ */

.navbar-simple {
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-simple.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.navbar-simple .navbar-nav {
    gap: 0;
}

.navbar-simple .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
    position: relative;
}

.navbar-simple .nav-link:hover {
    color: var(--travel-blue) !important;
}

.navbar-simple .nav-link.active {
    color: var(--travel-blue) !important;
}

.navbar-simple .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--travel-blue);
}

.navbar-simple .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-simple .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-simple .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-simple .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-simple .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-simple .nav-link.active::after {
        display: none;
    }
}

/* ============================================
   HERO SECTION - Improved Professional Design
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.4;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--font-heading);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    background: var(--travel-blue);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: var(--travel-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}


.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        background-attachment: scroll;
    }
}

/* ============================================
   SHOP TRAVEL DEALS SECTION - Enhanced Design
   ============================================ */

.deals-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--travel-blue), transparent);
}

/* Filter Buttons */
.deals-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid transparent;
    color: #6c757d;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-btn:hover {
    background: rgba(30, 136, 229, 0.1);
    color: var(--travel-blue);
    border-color: rgba(30, 136, 229, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--travel-blue) 0%, var(--travel-teal) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.deals-sort .form-select {
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.deals-sort .form-select:focus {
    border-color: var(--travel-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.1);
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--travel-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Deal Card */
.featured-deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.featured-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-deal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-deal-card:hover .featured-deal-image img {
    transform: scale(1.05);
}

.deal-urgency {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.featured-deal-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.deal-category {
    color: var(--travel-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.deal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.deal-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.deal-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--travel-blue);
    font-size: 1.1rem;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.deal-price {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--travel-blue);
    line-height: 1;
}

.price-unit {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.price-savings {
    font-size: 0.8rem;
    color: #43a047;
    font-weight: 600;
    margin-top: 0.25rem;
}

.btn-deal-primary {
    background: linear-gradient(135deg, var(--travel-blue) 0%, var(--travel-teal) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-deal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: white;
}

/* Modern Deal Cards */
.deal-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.deal-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.deal-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.deal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-card-modern:hover .deal-image-wrapper img {
    transform: scale(1.1);
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--travel-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.featured-badge {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    font-size: 0.875rem;
    padding: 8px 16px;
}

.badge-popular {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
}

.badge-discount {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
}

.deal-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
}

.deal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 0.5rem;
}

.deal-card-modern:hover .deal-overlay {
    opacity: 1;
}

.deal-overlay .btn {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.deal-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.deal-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--travel-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-culture {
    background: rgba(255, 193, 7, 0.1);
    color: #f57c00;
}

.badge-spiritual {
    background: rgba(233, 30, 99, 0.1);
    color: #c2185b;
}

.badge-beach {
    background: rgba(0, 172, 193, 0.1);
    color: #00838f;
}

/* Deal Item Filter Animation */
.deal-item {
    transition: all 0.4s ease;
}

.deal-item.hidden {
    display: none;
}

.deal-item.fade-in {
    animation: fadeInDeal 0.5s ease;
}

@keyframes fadeInDeal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffa726;
    font-weight: 600;
    font-size: 0.875rem;
}

.deal-rating small {
    color: #6c757d;
    font-weight: 400;
    margin-left: 2px;
}

.deal-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.deal-card-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.deal-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.deal-card-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--travel-blue);
    line-height: 1;
}

.price-old-inline {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 2px;
}

.btn-deal-secondary {
    background: var(--travel-blue);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.3);
}

.btn-deal-secondary:hover {
    background: var(--travel-teal);
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.btn-view-all {
    background: white;
    color: var(--travel-blue);
    border: 2px solid var(--travel-blue);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--travel-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

/* ============================================
   TRAVEL STORIES SECTION - Enhanced Design
   ============================================ */

.stories-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

/* Featured Story Card */
.featured-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.featured-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-story-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-story-card:hover .featured-story-image img {
    transform: scale(1.05);
}

.story-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.story-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    display: flex;
    align-items: center;
}

.featured-story-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.story-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.story-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--travel-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-category {
    background: rgba(30, 136, 229, 0.15);
    font-size: 0.875rem;
}

.story-date-featured {
    color: #6c757d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.featured-story-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-story-excerpt {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--travel-blue);
    font-size: 1rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: #6c757d;
}

.btn-story-primary {
    background: linear-gradient(135deg, var(--travel-blue) 0%, var(--travel-teal) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    width: 100%;
    text-align: center;
}

.btn-story-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: white;
}

/* Modern Story Cards */
.story-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.story-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card-modern:hover .story-image-wrapper img {
    transform: scale(1.1);
}

.story-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--travel-blue);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card-modern:hover .story-overlay {
    opacity: 1;
}

.story-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.story-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--travel-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-europe {
    background: rgba(67, 160, 71, 0.1);
    color: #2e7d32;
}

.badge-africa {
    background: rgba(233, 30, 99, 0.1);
    color: #c2185b;
}

.badge-beach {
    background: rgba(0, 172, 193, 0.1);
    color: #00838f;
}

.story-reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6c757d;
    font-size: 0.8rem;
}

.story-reading-time i {
    font-size: 0.875rem;
}

.story-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.story-author-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-mini {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-color);
}

.story-read-link {
    color: var(--travel-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.story-read-link:hover {
    color: var(--travel-teal);
    transform: translateX(5px);
}

.btn-view-stories {
    background: white;
    color: var(--travel-blue);
    border: 2px solid var(--travel-blue);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-view-stories:hover {
    background: var(--travel-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

/* ============================================
   TRAVEL EXPERIENCES SECTION - Enhanced Design
   ============================================ */

.experiences-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Modern Experience Cards */
.experience-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.experience-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.experience-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card-modern:hover .experience-image img {
    transform: scale(1.15);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: all 0.4s ease;
}

.experience-card-modern:hover .experience-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.experience-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.experience-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--travel-blue);
    transition: all 0.4s ease;
}

.experience-card-modern:hover .experience-icon-wrapper {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 6px 30px rgba(30, 136, 229, 0.4);
}

.experience-card-modern:hover .experience-icon-wrapper i {
    color: var(--travel-teal);
    transform: rotate(5deg);
}

.experience-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.experience-card-modern:hover .experience-title {
    color: var(--travel-blue);
}

.experience-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.experience-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--travel-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.875rem;
    background: rgba(30, 136, 229, 0.1);
    color: var(--travel-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-experience {
    background: linear-gradient(135deg, var(--travel-blue) 0%, var(--travel-teal) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.2);
}

.btn-experience:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
    color: white;
}

.btn-view-experiences {
    background: white;
    color: var(--travel-blue);
    border: 2px solid var(--travel-blue);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-view-experiences:hover {
    background: var(--travel-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

/* CTA Banner - Enhanced */
.cta-banner {
    background: linear-gradient(135deg, var(--travel-blue) 0%, var(--travel-teal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-icon {
    font-size: 3rem;
    opacity: 0.9;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn-cta {
    background: white;
    color: var(--travel-blue);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: var(--travel-teal);
}

/* ============================================
   SUBSCRIPTION SECTION - Enhanced Design
   ============================================ */

/* ============================================
   SUBSCRIPTION SECTION - Simple & Professional
   ============================================ */

.subscription-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.subscription-simple {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.subscription-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.subscription-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form .input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.subscription-form .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.subscription-form .form-control:focus {
    border-color: var(--travel-blue);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.1);
}

.btn-subscribe {
    background: var(--travel-blue);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: var(--travel-teal);
    color: white;
}

.subscription-privacy {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 1rem;
    margin-bottom: 0;
}

.subscription-success {
    margin-top: 1rem;
    padding: 1rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

@media (max-width: 768px) {
    .subscription-simple {
        padding: 2rem 1.5rem;
    }
    
    .subscription-title {
        font-size: 1.5rem;
    }
    
    .subscription-form .input-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
    }
}

/* Buttons */
.btn {
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-primary {
    background: var(--travel-blue);
    border: none;
}

.btn-primary:hover {
    background: var(--travel-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.btn-outline-primary {
    border-color: var(--travel-blue);
    color: var(--travel-blue);
}

.btn-outline-primary:hover {
    background: var(--travel-blue);
    border-color: var(--travel-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 500;
    border-radius: 6px;
}

/* Newsletter Form */
.form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--travel-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
}

/* ============================================
   FOOTER - Enhanced Modern Design
   ============================================ */

footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.footer-modern {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 0.75rem;
}

.footer-main ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-main ul li a:hover {
    color: var(--travel-blue);
    transform: translateX(5px);
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--travel-blue);
    border-color: var(--travel-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
}

.footer-newsletter-form .form-control::placeholder {
    color: #888;
}

.footer-newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--travel-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.2);
    color: white;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.5), transparent);
}

/* Footer Top */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--travel-blue);
    border-color: var(--travel-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--travel-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--travel-blue);
}

.footer-links a:hover {
    color: var(--travel-blue);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter-text {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    margin-bottom: 1.5rem;
}

.footer-newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    flex: 1;
}

.footer-newsletter-form .form-control::placeholder {
    color: #888;
}

.footer-newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--travel-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.2);
    color: white;
    outline: none;
}

.btn-footer-subscribe {
    background: var(--travel-blue);
    border: none;
    color: white;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-footer-subscribe:hover {
    background: var(--travel-teal);
    transform: translateX(3px);
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--travel-blue);
    font-size: 1rem;
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--travel-blue);
}

/* Footer Middle */
.footer-middle {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #888;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    color: var(--travel-blue);
    transform: scale(1.1);
}

.trust-badges-footer {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.trust-badge-item i {
    color: var(--travel-blue);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--travel-blue);
}

.separator {
    color: #555;
    font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--travel-blue) 0%, var(--travel-teal) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(30, 136, 229, 0.6);
}

@media (max-width: 992px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .trust-badges-footer {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Responsive Design - Enhanced */
@media (max-width: 992px) {
    .featured-deal-image {
        min-height: 300px;
    }
    
    .featured-deal-content {
        padding: 2rem;
    }
    
    .deal-title {
        font-size: 1.5rem;
    }
    
    .price-new {
        font-size: 2rem;
    }
    
    .featured-story-image {
        min-height: 300px;
    }
    
    .featured-story-content {
        padding: 2rem;
    }
    
    .featured-story-title {
        font-size: 1.5rem;
    }
    
    .story-stats {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .navbar-simple .nav-link {
        margin: 0.25rem 0;
    }
    
    .featured-deal-content {
        padding: 1.5rem;
    }
    
    .deal-title {
        font-size: 1.25rem;
    }
    
    .deal-features {
        gap: 1rem;
    }
    
    .deal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn-deal-primary {
        width: 100%;
        justify-content: center;
    }
    
    .deal-image-wrapper {
        height: 200px;
    }
    
    .featured-story-content {
        padding: 1.5rem;
    }
    
    .featured-story-title {
        font-size: 1.25rem;
    }
    
    .story-meta-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .story-image-wrapper {
        height: 200px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .deals-filters {
        padding: 1rem;
    }
    
    .deal-overlay {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .deal-overlay .btn {
        width: 100%;
    }
    
    .experience-image {
        height: 220px;
    }
    
    .experience-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .experience-icon-wrapper i {
        font-size: 2rem;
    }
    
    .experience-content {
        padding: 1.5rem;
    }
    
    .experience-stats {
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Additional Utility Classes */
.text-travel-blue {
    color: var(--travel-blue) !important;
}

.bg-travel-blue {
    background-color: var(--travel-blue) !important;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
