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

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Navigation */
nav {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    position: absolute;
    left: 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

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

.search-container {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 10px 40px 10px 20px;
    color: #fff;
    font-size: 0.9rem;
    width: 280px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.search-btn {
    position: absolute;
    right: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: scale(1.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    align-items: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    .search-container {
        width: 90%;
        max-width: 300px;
        position: relative;
        right: auto;
    }
    
    .search-input {
        width: 100%;
    }
    
    nav .container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .logo {
        position: relative;
        left: auto;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.search-result-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: rgba(139, 92, 246, 0.2);
}

.search-result-item:last-child {
    border-bottom: none;
}

.result-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.result-snippet {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('images/option.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(168, 85, 247, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    color: #fff;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin: 0 auto 3rem auto;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
}

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

.cta-button {
    display: inline-block;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section {
    padding: 80px 0;
    min-height: auto;
}

.section:nth-child(even) {
    background: rgba(15, 15, 35, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -2px;
}

/* Digital Items Section */
.digital-items {
    margin-top: 4rem;
}

.category-section {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.2rem;
    color: #8b5cf6;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.item-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.item-card:hover .item-image-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.item-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.item-card:hover .item-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-button {
    padding: 1rem 2rem;
    background: rgba(15, 15, 35, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-button:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: #8b5cf6;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.main-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.item-card {
    background: rgba(15, 15, 35, 0.6);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.item-card h3,
.item-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.item-card p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.item-link {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

/* Affiliate Links Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.deal-card {
    background: rgba(15, 15, 35, 0.6);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.deal-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.deal-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 1.5rem 0;
}

.deal-title {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Affiliate Partnership Section */
#affiliate-links.section {
    background: rgba(15, 15, 35, 0.4);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.affiliate-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.affiliate-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.affiliate-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.affiliate-cta {
    background: linear-gradient(135deg, #4CAF50, #45a049, #66BB6A);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.affiliate-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.affiliate-cta:hover::before {
    left: 100%;
}

.affiliate-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, #45a049, #4CAF50, #66BB6A);
}

.affiliate-cta:active {
    transform: translateY(-1px) scale(1.02);
}

/* Featured Blog Section */
.featured-blog {
    padding: 120px 0;
    background: rgba(15, 15, 35, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.blog-text h3 {
    font-size: 2.2rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.blog-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.blog-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.highlight-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.rv-icon::before {
    width: 14px;
    height: 8px;
    border-radius: 3px;
}

.camera-icon::before {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 2px #8b5cf6;
    background: transparent;
}

.pet-icon::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 4px 0 0 white, -4px 0 0 white, 0 6px 0 white;
}

.map-icon::before {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%),
                linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}

.budget-icon::before {
    width: 14px;
    height: 10px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 2px;
}

.formula-icon::before {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-radius: 2px;
}

.family-icon::before {
    width: 14px;
    height: 10px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50% 50% 0 0;
}

.confidence-icon::before {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #8BC34A, #689F38);
    border-radius: 50%;
}

.blog-cta {
    display: block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem auto 0 auto;
    text-align: center;
    width: fit-content;
}

.blog-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.blog-card {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(26, 26, 46, 0.6));
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.card-header h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.adventure-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(168, 85, 247, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.adventure-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 0 2px 2px 0;
}

.adventure-item:hover {
    transform: translateX(5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

.adventure-location {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    position: relative;
    padding-left: 1rem;
}

.adventure-location::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

.adventure-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 1rem;
}

/* Travel Tips Section */
#travel-tips.section {
    padding: 0;
    margin: 0;
}

.travel-tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 500px;
}

.travel-tips-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.travel-tips-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.travel-tips-header .tips-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: left;
    max-width: 500px;
    margin: 0;
}

.travel-tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 500px;
}

.tips-text {
    max-width: 100%;
    padding: 80px 4rem 80px 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.tip-item {
    padding: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.tip-item:hover {
    opacity: 0.8;
}

.tip-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.route-tip { background: linear-gradient(135deg, #667eea, #764ba2); }
.car-check-tip { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pack-tip { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.breaks-tip { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.safety-tip { background: linear-gradient(135deg, #fa709a, #fee140); }

.tip-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

.tip-item p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.tips-cta {
    margin-top: 1.5rem;
}

.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tips-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 0;
    background: rgba(15, 15, 35, 0.2);
}

.tips-video {
    width: 80%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.tips-video:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .travel-tips-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .travel-tips-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tips-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
    
    .tips-video {
        max-width: 250px;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text {
    text-align: left;
}

.contact-text h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .travel-tips-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }

    .tips-text {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .tips-media {
        padding: 0 1.5rem 1.5rem;
        text-align: center;
    }

    .tips-video {
        max-width: 350px;
        width: 100%;
    }

    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .tip-item {
        padding: 1.5rem;
        text-align: center;
    }

    .tip-icon {
        font-size: 2rem;
        margin: 0 auto 1rem auto;
        display: block;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .contact-video {
        max-width: 300px;
    }
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .social-link {
        padding: 15px 25px;
        font-size: 0.9rem;
        min-width: 140px;
        justify-content: center;
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(15, 15, 35, 0.6);
    padding: 20px 35px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: rgba(139, 92, 246, 0.6);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #0f0f23, #1a1a3a);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.made-by {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.made-by a {
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.made-by a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transform: translateY(-3px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.footer-logo img {
    border-radius: 8px;
}

.footer-logo span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-section a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-section a:hover {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .item-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .item-card {
        padding: 2.5rem;
    }

    .item-image {
        width: 180px;
        height: 180px;
    }

    .travel-tips-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .tips-text {
        padding: 3rem 2rem;
        order: 1;
    }

    .tips-media {
        order: 2;
        padding: 0 2rem 2rem;
    }

    .tips-video {
        max-width: 400px;
        width: 100%;
    }

    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social-section {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section h2 {
        font-size: 2.8rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .social-link {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .digital-items,
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .item-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tab-navigation {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .blog-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-highlights {
        grid-template-columns: 1fr;
    }

    .blog-text h2 {
        font-size: 2.5rem;
    }

    .blog-text h3 {
        font-size: 1.8rem;
    }

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

    .item-card h3,
    .item-card h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .item-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .item-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    .item-link {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .main-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .affiliate-container {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .affiliate-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .affiliate-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .affiliate-cta {
        padding: 12px 28px;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .travel-tips-content {
        gap: 1rem;
    }

    .tips-text {
        padding: 1.5rem 1rem;
    }

    .travel-tips-header {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .tips-media {
        padding: 0 1rem 1rem;
    }

    .tips-video {
        max-width: 280px;
        width: 100%;
    }

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

    .tip-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .tip-icon {
        font-size: 1.8rem;
        margin: 0 auto 0.8rem auto;
        display: block;
    }

    .item-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .item-card h3,
    .item-card h4 {
        font-size: 1.2rem;
    }

    .item-card p {
        font-size: 0.9rem;
    }

    .item-image {
        width: 120px;
        height: 120px;
    }

    .item-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tab-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .main-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .category-section {
        margin-bottom: 3rem;
    }

    .section-cta {
        margin-top: 2rem;
    }

    .affiliate-container {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }
    
    .affiliate-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }
    
    .affiliate-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }
    
    .affiliate-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 180px;
        width: auto;
    }

    .contact-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-video {
        max-width: 250px;
    }

    .social-links {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .social-link {
        padding: 12px 20px;
        font-size: 0.85rem;
        min-width: 120px;
        gap: 0.6rem;
    }

    footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

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

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-social-section a {
        width: 35px;
        height: 35px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo span {
        font-size: 1.2rem;
    }
}