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

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --accent-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ========== HEADER ========== */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.nav-link .fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

/* Header Search */
.header-search {
    flex: 0 0 auto;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 8px 15px;
    gap: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
    min-width: 300px;
}

.search-form:focus-within {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.search-form i {
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    min-width: 0;
}

.search-form input:focus {
    outline: none;
}

.search-form input::placeholder {
    color: var(--text-light);
}

.search-submit {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile-only elements - hidden on desktop */
.mobile-menu-brand,
.mobile-search-wrapper {
    display: none;
}

/* ========== HERO SECTION (Split Layout) ========== */
.hero {
    position: relative;
    min-height: 650px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(139, 92, 246, 0.85));
}

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

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

.hero-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-badge-wrapper i {
    font-size: 1.2rem;
}

.hero-badge {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-stats-inline {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-hero-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-right {
    animation: fadeInRight 1s ease;
}

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

.hero-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.hero-img-1 {
    grid-row: span 2;
}

.hero-img-1 img {
    height: 100%;
}

.hero-img-2,
.hero-img-3,
.hero-img-4 {
    height: 150px;
}

.hero-img-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

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

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

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

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

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 10px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========== ARTICLE CARDS (Unified Design) ========== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.article-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.article-content>p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.article-link:hover {
    gap: 12px;
    color: var(--accent-color);
}

.article-link i {
    transition: var(--transition);
}

/* ========== FEATURED CATEGORIES ========== */
.featured-categories {
    background: var(--bg-light);
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

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

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-count {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========== CITY GUIDES ========== */
.city-guides {
    background: var(--white);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

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

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

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

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.btn-explore {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.city-content {
    padding: 25px;
}

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

.city-header h3 {
    font-size: 1.5rem;
}

.city-country {
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.city-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.city-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========== THINGS TO DO (Masonry Grid Layout) ========== */
.things-to-do {
    background: var(--bg-light);
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 200px;
}

.thing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

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

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

.thing-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

.thing-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: var(--white);
}

.thing-location {
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.thing-location i {
    margin-right: 5px;
}

.thing-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.thing-card-large .thing-content h3 {
    font-size: 1.8rem;
}

.thing-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.thing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.thing-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ========== ITINERARIES (Horizontal Timeline) ========== */
.itineraries {
    background: var(--white);
}

.itinerary-wrapper {
    position: relative;
    padding: 0 60px;
}

.itinerary-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.itinerary-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.itinerary-nav-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.itinerary-nav-btn:hover i {
    color: var(--white);
}

.itinerary-nav-left {
    left: 0;
}

.itinerary-nav-right {
    right: 0;
}

.itinerary-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.itinerary-timeline {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.itinerary-timeline::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.itinerary-item {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    scroll-snap-align: start;
    position: relative;
}

.itinerary-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.itinerary-duration-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.itinerary-item:hover .itinerary-image img {
    transform: scale(1.1);
}

.itinerary-info {
    padding: 25px;
}

.itinerary-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.itinerary-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.itinerary-location i {
    color: var(--primary-color);
}

.itinerary-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.itinerary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.itinerary-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    gap: 12px;
}

/* ========== TRAVEL TIPS (Numbered List with Images) ========== */
.travel-tips {
    background: var(--bg-light);
}

.tips-list {
    max-width: 900px;
    margin: 0 auto;
}

.tip-item {
    display: grid;
    grid-template-columns: 100px 120px 1fr;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tip-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.tip-number {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

/* Different colors for each number */
.tip-number-1 {
    color: #3b82f6;
    /* Blue */
}

.tip-number-2 {
    color: #8b5cf6;
    /* Purple */
}

.tip-number-3 {
    color: #ec4899;
    /* Pink */
}

.tip-number-4 {
    color: #f59e0b;
    /* Orange */
}

.tip-number-5 {
    color: #10b981;
    /* Green */
}

.tip-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

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

.tip-item:hover .tip-image img {
    transform: scale(1.1);
}

.tip-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tip-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tip-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.tip-read-link:hover {
    gap: 12px;
    color: var(--accent-color);
}

/* ========== INSPIRATION SECTION ========== */
.inspiration {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.inspiration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.inspiration-text>p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.inspiration-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.inspiration-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: var(--white);
}

/* Footer Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 2rem;
    color: var(--white);
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 1rem;
    opacity: 0.95;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

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

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-tagline {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.footer-desc {
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

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

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background: #0f0f1e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #9ca3af;
    margin: 0;
}

.copyright i {
    color: #ef4444;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 2rem;
    }

    .search-form {
        min-width: 250px;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .things-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Mobile-only elements - show on mobile */
    .mobile-menu-brand,
    .mobile-search-wrapper {
        display: block;
    }

    /* Header */
    .header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    .header .container {
        padding: 1rem 20px;
        position: relative;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    /* Search - Hidden on mobile header */
    .header-search {
        display: none;
    }
    
    /* Menu Toggle Button */
    .menu-toggle {
        display: flex;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        padding: 0;
        position: relative;
        z-index: 1001;
    }
    
    .menu-toggle span {
        position: absolute;
        width: 22px;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .menu-toggle span:nth-child(1) {
        top: 14px;
    }
    
    .menu-toggle span:nth-child(2) {
        top: 21px;
    }
    
    .menu-toggle span:nth-child(3) {
        top: 28px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        background: var(--white);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
    }

    .nav.active {
        right: 0;
    }

    /* Mobile Menu Header Background */
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 220px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        z-index: 1;
    }

    /* Close Button */
    .nav::after {
        content: '×';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        animation: fadeIn 0.5s ease 0.3s backwards;
    }

    .nav::after:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    /* Mobile Menu Brand */
    .mobile-menu-brand {
        position: relative;
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 30px 25px 20px;
        animation: fadeInLeft 0.5s ease 0.1s backwards;
    }

    .mobile-menu-brand .logo-icon {
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.6rem;
    }

    .mobile-menu-brand .logo-content {
        color: white;
    }

    .mobile-menu-brand .logo-name {
        font-size: 1.4rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        display: block;
    }

    .mobile-menu-brand .logo-tagline {
        opacity: 0.9;
        font-size: 0.8rem;
        display: block;
    }

    /* Mobile Search */
    .mobile-search-wrapper {
        padding-top: 150px;
        position: relative;
        z-index: 5;
        margin: 0 25px 30px;
        animation: fadeInUp 0.5s ease 0.2s backwards;
    }

    .mobile-search-form {
        display: flex;
        align-items: center;
        background: white;
        border-radius: 16px;
        padding: 14px 20px;
        gap: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .mobile-search-form:focus-within {
        border-color: var(--primary-color);
        box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
        transform: translateY(-2px);
    }

    .mobile-search-form i {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .mobile-search-form input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0;
        font-size: 1rem;
        color: var(--text-dark);
    }

    .mobile-search-form input:focus {
        outline: none;
    }

    .mobile-search-form input::placeholder {
        color: var(--text-light);
    }

    /* Navigation List */
    .nav-list {
        position: relative;
        z-index: 5;
        flex-direction: column;
        padding: 0 25px 40px;
        gap: 10px;
        align-items: stretch;
        flex: 1;
        list-style: none;
        margin: 0;
    }

    .nav-list li {
        animation: slideInRight 0.4s ease forwards;
        opacity: 0;
    }

    .nav.active .nav-list li:nth-child(1) {
        animation-delay: 0.3s;
    }

    .nav.active .nav-list li:nth-child(2) {
        animation-delay: 0.35s;
    }

    .nav.active .nav-list li:nth-child(3) {
        animation-delay: 0.4s;
    }

    .nav.active .nav-list li:nth-child(4) {
        animation-delay: 0.45s;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        font-size: 1.05rem;
        font-weight: 600;
        border-radius: 16px;
        margin: 0;
        transition: all 0.3s ease;
        background: #f8fafc;
        gap: 18px;
        text-decoration: none;
        color: var(--text-dark);
        border: 2px solid transparent;
    }

    .nav-link i {
        font-size: 1.3rem;
        width: 24px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
        transform: translateX(8px);
        color: var(--primary-color);
        border-color: rgba(37, 99, 235, 0.2);
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
    }

    .nav-link:hover i {
        transform: scale(1.1);
    }

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

    /* Mobile Menu Overlay */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    /* Menu Brand in Header */
    .mobile-menu-brand {
        position: absolute;
        top: 0px;
        left: 0px;
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 10;
        animation: fadeIn 0.5s ease 0.1s backwards;
    }

    .mobile-menu-brand .logo-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .mobile-menu-brand .logo-content {
        color: white;
    }

    .mobile-menu-brand .logo-name {
        font-size: 1.3rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-brand .logo-tagline {
        opacity: 0.9;
        color: #fff;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

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

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

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

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .hero-stats-inline {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

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

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

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

    /* Grids */
    .categories-grid,
    .city-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .things-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

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

    .itinerary-wrapper {
        padding: 0 50px;
    }

    .itinerary-nav-btn {
        width: 45px;
        height: 45px;
    }

    .itinerary-nav-btn i {
        font-size: 1rem;
    }

    .itinerary-timeline {
        gap: 15px;
    }

    .itinerary-item {
        flex: 0 0 280px;
    }

    .tip-item {
        grid-template-columns: 80px 100px 1fr;
        gap: 20px;
        padding: 25px;
    }

    .tip-number {
        font-size: 3rem;
    }

    .tip-image {
        width: 100px;
        height: 100px;
    }

    .tip-text h3 {
        font-size: 1.2rem;
    }

    /* Inspiration */
    .inspiration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-left {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .logo-name {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

    .hero-stats-inline {
        flex-direction: column;
        gap: 20px;
    }

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

    .search-form {
        padding: 6px 12px;
    }

    .search-form input {
        font-size: 0.9rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-image {
        height: 200px;
    }

    .things-grid {
        grid-auto-rows: 200px;
    }

    .itinerary-wrapper {
        padding: 0;
    }

    .itinerary-nav-btn {
        display: none;
    }

    .itinerary-timeline {
        scrollbar-width: thin;
        -ms-overflow-style: auto;
    }

    .itinerary-timeline::-webkit-scrollbar {
        display: block;
        height: 6px;
    }

    .itinerary-timeline::-webkit-scrollbar-track {
        background: var(--bg-light);
        border-radius: 10px;
    }

    .itinerary-timeline::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .tip-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .tip-number {
        font-size: 3.5rem;
    }

    .tip-image {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Menu Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

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

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border-top: 2px solid #667eea;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #667eea;
    color: white;
}

.cookie-btn.accept:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn.decline:hover {
    background: #333;
    color: white;
}

.cookie-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* Newsletter Success Modal */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.newsletter-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
}

.newsletter-modal-header {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    text-align: center;
    color: white;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successPulse 0.6s ease;
}

.success-icon i {
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

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

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.newsletter-modal-body {
    padding: 2rem;
    text-align: center;
}

.newsletter-modal-body h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-modal-body p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.modal-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

.modal-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.modal-feature i {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.modal-feature span {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    text-align: center;
}

.modal-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.modal-btn i {
    font-size: 1rem;
}

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-modal-content {
        margin: 1rem;
        border-radius: 16px;
    }
    
    .newsletter-modal-header {
        padding: 1.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .newsletter-modal-body {
        padding: 1.5rem;
    }
    
    .newsletter-modal-body h3 {
        font-size: 1.5rem;
    }
    
    .modal-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .modal-feature i {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}