:root {
    --primary: #ffffff;
    --secondary: #000000;
    --accent: #eee;
    --text: #333333;
    --text-light: #666666;
    --bg: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius-lg: 32px;
    --radius-md: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

.section {
    padding: 80px 0;
}

/* Header & Nav */
header {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switch {
    font-size: 12px;
    font-weight: 600;
}

.lang-switch span {
    padding: 4px 8px;
    cursor: pointer;
}

.lang-switch .active {
    background: #000;
    color: #fff;
    border-radius: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-secondary {
    background: #000;
    color: #fff;
}

/* Hero Section */
.hero-container {
    padding-top: 120px;
    margin-bottom: 40px;
}

.hero {
    height: 600px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass-light {
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: var(--shadow);
}

.search-bar {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    display: flex;
    padding: 12px;
    border-radius: 50px;
    z-index: 10;
    color: #000;
}

.search-item {
    flex: 1;
    padding: 10px 24px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.search-item:last-of-type {
    border-right: none;
}

.search-item .label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.search-item .value {
    font-weight: 600;
    font-size: 14px;
}

.btn-search {
    background: #000;
    color: #fff;
    padding: 0 40px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

/* Stats */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.stat-card {
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-card.active {
    background: #fff;
    border: 1px solid #000;
}

.stat-card h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.subtitle {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

h2 {
    font-size: 40px;
}

.section-desc {
    max-width: 500px;
    color: var(--text-light);
    font-size: 16px;
}

/* Destination Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.dest-card {
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: transform 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-card::after {
    content: '';
    position: absolute;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-md);
}

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

.dest-info {
    position: relative;
    z-index: 2;
}

.dest-info p {
    font-size: 12px;
    opacity: 0.8;
}

.dest-info h4 {
    font-size: 20px;
}

/* Features Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    height: 600px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-list .icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.feature-list h4 {
    margin-bottom: 4px;
    font-size: 18px;
}

.feature-list p {
    font-size: 14px;
    color: var(--text-light);
}

/* Packages */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    height: 450px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.package-card::after {
    content: '';
    position: absolute;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-md);
}

.badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 2;
}

.rating {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 2;
}

.package-details {
    position: relative;
    z-index: 2;
}

.package-details p {
    font-size: 10px;
    opacity: 0.8;
}

.package-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.package-details .price {
    font-size: 24px;
    font-weight: 700;
}

.center-btn {
    text-align: center;
    margin-top: 48px;
}

/* Content Text Section */
.content-text-section {
    max-width: 1000px;
}

.informative-guide {
    padding: 60px;
    border-radius: var(--radius-lg);
}

.informative-guide h1 {
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.scrollable-content p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #444;
}

.scrollable-content h2 {
    margin-top: 60px;
    margin-bottom: 24px;
    font-size: 32px;
}

.scrollable-content h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 24px;
}

.scrollable-content h4 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 20px;
}

/* Footer */
.footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius-md);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.author-meta h4 {
    font-size: 18px;
}

.author-meta p {
    font-size: 12px;
    color: var(--text-light);
}

.author-quote {
    max-width: 500px;
    font-style: italic;
    font-size: 16px;
    text-align: right;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 { font-size: 48px; }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .destination-grid { grid-template-columns: repeat(2, 1fr); }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 767px) {
    .hero h1 { font-size: 36px; }
    .search-bar { flex-direction: column; border-radius: 20px; bottom: -100px; }
    .search-item { border-right: none; border-bottom: 1px solid #ddd; }
    .btn-search { padding: 16px; }
    .hero-container { padding-bottom: 120px; }
    .package-grid { grid-template-columns: 1fr; }
    .destination-grid { grid-template-columns: 1fr; }
    .dest-card.large { grid-column: span 1; }
    .footer-card { flex-direction: column; gap: 20px; text-align: center; }
    .author-quote { text-align: center; }
    .informative-guide { padding: 30px; }
    .informative-guide h1 { font-size: 32px; }
}
