
/* Modern Travel Explorer Style */
:root {
    --primary-color: #2563eb;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.05);
    --shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    --shadow-lg: 0 12px 32px rgba(37, 99, 235, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #2563eb, #1d4ed8);
    --gradient-secondary: linear-gradient(135deg, #059669, #047857);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #d97706);
    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    --world-pattern: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%232563eb" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%232563eb" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%232563eb" opacity="0.1"/></svg>');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    background-image: var(--world-pattern);
    background-size: 60px 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header в современном стиле */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 L100,50 M50,0 L50,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1.125rem 2.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
    border-color: white;
    background: #fbbf24;
}

/* Navigation */
.nav {
    background: var(--bg-white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.nav-logo::before {
    content: '🌍';
    font-size: 1.5em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

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

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

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

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

.nav-separator {
    color: var(--border-color);
    margin: 0 0.5rem;
}

.nav-current {
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--border-radius);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.nav-stats {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(5, 150, 105, 0.08);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

/* Quick Navigation */
.quick-nav {
    background: var(--bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 74px;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.quick-nav-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.quick-nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.quick-nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* Welcome page styles */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.welcome-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.welcome-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.welcome-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.welcome-card:hover .welcome-card-image img {
    transform: scale(1.08);
}

.welcome-card-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.welcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.welcome-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.welcome-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.welcome-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 20px;
    color: var(--secondary-color);
    border: 1px solid rgba(5, 150, 105, 0.15);
    font-weight: 600;
}

/* Items Grid */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

.item-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.item-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.item-card:hover .item-image {
    transform: scale(1.08);
}

.item-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 1;
    border: 1px solid white;
}

.item-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 1;
}

.item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

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

.item-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.item-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.item-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-price-type {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 0.5rem;
}

.item-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

.item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.item-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.item-link:hover::after {
    width: 300px;
    height: 300px;
}

.item-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: white;
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: rgba(255,255,255,0.85);
    padding: 5rem 0 3rem;
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.75rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 1.5px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* Detail pages */
.detail-header {
    background: var(--bg-white);
    padding: 3rem 0;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.detail-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-image {
    width: 100%;
    height: 360px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

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

.detail-image:hover img {
    transform: scale(1.03);
}

.detail-info {
    padding: 0;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-price-type {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 0.75rem;
}

.detail-content {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.booking-section {
    background: var(--gradient-primary);
    color: white;
    padding: 3.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.book-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1.5rem 3.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    margin-top: 2rem;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    text-decoration: none;
    border: 2px solid transparent;
    overflow: hidden;
}

.book-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.book-button:hover::after {
    width: 300px;
    height: 300px;
}

.book-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: white;
    background: #fbbf24;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.author-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 180px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.97);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.5);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

/* Include list */
.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
}

.included-list li:before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .detail-container {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    
    .detail-container {
        grid-template-columns: 300px 1fr;
        gap: 2.5rem;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .features-grid,
    .welcome-grid,
    .items-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .detail-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .detail-image {
        height: 300px;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .item-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
        gap: 1.75rem;
        padding: 2rem;
    }
    
    .detail-content {
        padding: 2.5rem;
    }
    
    .booking-section {
        padding: 2.5rem;
    }
    
    .nav-stats {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
    
    .quick-nav-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .quick-nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 80%;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .feature-card,
    .welcome-card,
    .item-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .detail-title {
        font-size: 1.75rem;
    }
    
    .detail-price {
        font-size: 2rem;
    }
    
    .book-button {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid white;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px) rotate(360deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--gradient-accent);
}

/* Global decorative elements */
.global-decoration {
    position: absolute;
    font-size: 2rem;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.global-decoration.top-left {
    top: 1.5rem;
    left: 1.5rem;
}

.global-decoration.top-right {
    top: 1.5rem;
    right: 1.5rem;
}

.global-decoration.bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
}

.global-decoration.bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
}

/* Special classes for global icons */
.global-icon {
    font-size: 1.3em;
    margin-right: 0.4rem;
}

/* Animation for global patterns */
@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating {
    animation: floating 5s ease-in-out infinite;
}

/* Modern shadows */
.modern-shadow {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1), 
                0 0 30px rgba(37, 99, 235, 0.05);
}

.modern-shadow-hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15), 
                0 0 50px rgba(37, 99, 235, 0.1);
}

/* Text styles */
.travel-text {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
}

/* Accent styles */
.travel-accent {
    color: var(--primary-color);
    position: relative;
}

.travel-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1.5px;
}

/* Animation for route */
@keyframes routeGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.route-animation {
    animation: routeGrow 1.5s ease-out forwards;
}

/* Button styles with modern ornament */
.ornament-button {
    position: relative;
    overflow: hidden;
}

.ornament-button::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.7s ease;
}

.ornament-button:hover::before {
    left: 100%;
}

/* Travel compass style */
.travel-compass {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.travel-compass::before,
.travel-compass::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 1px;
}

.travel-compass::before {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.travel-compass::after {
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Stats counter */
.stats-counter {
    display: inline-block;
    font-weight: 800;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Category tags */
.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(5, 150, 105, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(5, 150, 105, 0.2);
    margin: 0.25rem;
}

/* Price badge */
.price-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}
