:root {
    --primary-deep: #0a1628;
    --primary-dark: #122a4a;
    --primary-medium: #1e4976;
    --accent-gold: #c9a962;
    --accent-gold-light: #e4d4a5;
    --accent-copper: #b87333;
    --text-light: #f5f5f5;
    --text-muted: #a8b2c1;
    --text-dark: #1a1a1a;
    --surface-dark: #0d1e33;
    --surface-medium: #162a45;
    --surface-light: #f8f6f3;
    --gradient-ocean: linear-gradient(135deg, #0a1628 0%, #1e4976 50%, #2d6a9f 100%);
    --gradient-sunset: linear-gradient(135deg, #1e4976 0%, #c9a962 100%);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #b87333 100%);
    --shadow-soft: 0 4px 20px rgba(10, 22, 40, 0.15);
    --shadow-medium: 0 8px 40px rgba(10, 22, 40, 0.2);
    --shadow-strong: 0 16px 60px rgba(10, 22, 40, 0.3);
    --font-display: 'Cormorant Garamond', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--surface-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

img {
    max-width: 100%;
    height: auto;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar-brand:hover {
    color: var(--accent-gold);
}

.brand-icon {
    display: flex;
    align-items: center;
    color: var(--accent-gold);
}

.brand-text {
    display: none;
}

@media (min-width: 768px) {
    .brand-text {
        display: inline;
    }
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.toggler-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar-toggler:hover .toggler-line {
    background: var(--accent-gold);
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-nav {
    display: none;
    list-style: none;
    gap: 8px;
}

@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
    }
}

.nav-link {
    display: block;
    padding: 8px 16px;
    color: var(--text-light);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.1);
}

.offcanvas {
    background: var(--primary-deep);
    color: var(--text-light);
    border-left: 1px solid rgba(201, 169, 98, 0.2);
}

.offcanvas-header {
    padding: 24px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.offcanvas-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.btn-close {
    filter: invert(1);
}

.offcanvas-body {
    padding: 24px;
}

.offcanvas-body .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offcanvas-body .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-hotels {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.offcanvas-section-title {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.offcanvas-hotel-list {
    list-style: none;
}

.offcanvas-hotel-list li {
    margin-bottom: 8px;
}

.offcanvas-hotel-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.offcanvas-hotel-list a:hover {
    color: var(--text-light);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-ocean);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.pixabay.com/photo/2017/01/28/19/31/landscape-2016308_1280.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--primary-deep);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
    color: var(--primary-deep);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.1);
}

.btn-light-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--text-light);
    color: var(--primary-deep);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-light-custom:hover {
    background: var(--accent-gold);
    color: var(--primary-deep);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-copper);
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--accent-gold-light);
}

.intro-section {
    padding: 120px 0;
    background: var(--surface-light);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-deep) 0%, transparent 100%);
    opacity: 0.03;
}

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

@media (min-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary-deep);
    margin-bottom: 24px;
}

.intro-content p {
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-quote {
    padding: 24px 32px;
    margin: 32px 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.intro-image-stack {
    position: relative;
    height: 500px;
}

.intro-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.intro-image.primary {
    width: 70%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.intro-image.secondary {
    width: 55%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 4px solid var(--surface-light);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-hotels {
    padding: 120px 0;
    background: var(--primary-deep);
    position: relative;
    overflow: hidden;
}

.featured-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(30, 73, 118, 0.1) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.hotels-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hotels-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hotels-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hotel-card {
    background: var(--surface-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hotel-card.featured {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .hotel-card.featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hotel-card.featured {
        grid-column: span 1;
        display: block;
    }
}

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

.hotel-card.featured .hotel-card-image {
    height: 240px;
}

@media (min-width: 768px) {
    .hotel-card.featured .hotel-card-image {
        height: 100%;
        min-height: 300px;
    }
}

@media (min-width: 1024px) {
    .hotel-card.featured .hotel-card-image {
        height: 240px;
        min-height: auto;
    }
}

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

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

.hotel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.9) 100%);
}

.hotel-location {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

.hotel-card-content {
    padding: 24px;
}

.hotel-rating {
    margin-bottom: 12px;
}

.star {
    color: var(--accent-gold);
    font-size: 1rem;
}

.hotel-card-content h3 {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.hotel-card-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-range {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.read-more {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more::after {
    content: '\2192';
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--accent-gold);
}

.read-more:hover::after {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.experience-section {
    padding: 100px 0;
    background: var(--surface-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.experience-card {
    padding: 40px 32px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

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

.experience-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.experience-card h3 {
    font-size: 1.25rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.experience-card p {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.tips-preview {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.tips-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.pixabay.com/photo/2016/10/18/09/02/hotel-1749602_1280.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tips-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(30, 73, 118, 0.88) 100%);
}

.tips-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.tips-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-light);
    margin-bottom: 40px;
}

.tips-list {
    margin-bottom: 40px;
}

.tip-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tip-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.6;
}

.tip-text h4 {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.tip-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
    background: var(--surface-light);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

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

.site-footer {
    background: var(--primary-deep);
    color: var(--text-muted);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    color: var(--surface-light);
}

.footer-content {
    padding: 100px 0 40px;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    color: var(--accent-gold);
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 0.9375rem;
}

.footer-title {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.last-updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .copyright,
    .last-updated {
        margin-bottom: 0;
    }
}

.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--gradient-ocean);
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.pixabay.com/photo/2019/08/19/13/56/bali-4416060_1280.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.6) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.small-hero {
    padding: 120px 0 60px;
}

.breadcrumb-nav {
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-muted);
    opacity: 0.5;
}

.hotels-listing {
    padding: 80px 0;
}

.listing-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 16px;
}

.results-count {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.filter-info {
    font-size: 0.875rem;
    color: #666;
}

.hotels-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hotel-list-card {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .hotel-list-card {
        grid-template-columns: 300px 1fr;
    }
}

@media (min-width: 1024px) {
    .hotel-list-card {
        grid-template-columns: 380px 1fr;
    }
}

.hotel-list-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.hotel-list-image {
    position: relative;
    height: 240px;
}

@media (min-width: 768px) {
    .hotel-list-image {
        height: 100%;
        min-height: 280px;
    }
}

.hotel-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary-deep);
    color: var(--accent-gold);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.hotel-list-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.hotel-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hotel-location-tag {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-copper);
}

.hotel-rating-small .star {
    font-size: 0.875rem;
}

.hotel-list-content h2 {
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.hotel-list-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hotel-list-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    padding: 4px 12px;
    background: rgba(30, 73, 118, 0.1);
    color: var(--primary-medium);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

.hotel-list-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.booking-advice {
    padding: 0 0 80px;
}

.advice-card {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 48px;
}

.advice-content h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
}

.advice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .advice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advice-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advice-item h4 {
    font-size: 1.0625rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.advice-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.hotel-hero {
    position: relative;
    padding: 0;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.hotel-hero-image {
    position: absolute;
    inset: 0;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.9) 100%);
}

.hotel-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
}

.hotel-hero .breadcrumb-nav {
    position: absolute;
    top: 100px;
    left: 24px;
}

.hotel-hero .breadcrumb {
    justify-content: flex-start;
}

.hotel-hero-content {
    text-align: left;
}

.hotel-location-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.hotel-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 16px;
}

.hotel-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hotel-rating-large .star {
    font-size: 1.25rem;
}

.hotel-price {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.my-rating {
    padding: 6px 16px;
    background: var(--accent-gold);
    color: var(--primary-deep);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 4px;
}

.hotel-content-section {
    padding: 80px 0;
}

.hotel-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .hotel-content-grid {
        grid-template-columns: 1fr 360px;
    }
}

.hotel-main-content {
    order: 2;
}

@media (min-width: 992px) {
    .hotel-main-content {
        order: 1;
    }
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 24px;
}

.content-block p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.pros,
.cons {
    padding: 24px;
    border-radius: 8px;
}

.pros {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.cons {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.pros h3 {
    color: #2f855a;
    margin-bottom: 16px;
}

.cons h3 {
    color: #b45309;
    margin-bottom: 16px;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #4a5568;
}

.pros li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2f855a;
    font-weight: bold;
}

.cons li::before {
    content: '\2022';
    position: absolute;
    left: 4px;
    color: #b45309;
}

.insider-tip {
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.insider-tip h3 {
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.insider-tip p {
    color: var(--text-light);
    margin-bottom: 0;
}

.hotel-sidebar {
    order: 1;
}

@media (min-width: 992px) {
    .hotel-sidebar {
        order: 2;
    }
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
    font-size: 1.125rem;
    color: var(--primary-deep);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
}

.info-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 4px;
}

.info-value {
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.rating-highlight {
    color: var(--accent-copper);
    font-weight: 600;
}

.external-links ul {
    list-style: none;
}

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

.external-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(30, 73, 118, 0.05);
    border-radius: 6px;
    color: var(--primary-medium);
    font-weight: 500;
    transition: var(--transition-fast);
}

.external-links a:hover {
    background: var(--primary-deep);
    color: var(--text-light);
}

.external-links a svg {
    opacity: 0.5;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9375rem;
    color: #4a5568;
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts li strong {
    color: var(--text-dark);
}

.related-hotels {
    padding: 80px 0;
    background: var(--surface-light);
}

.related-hotels h2 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 40px;
}

.related-hotels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .related-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .related-hotels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.related-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.related-hotel-image {
    height: 180px;
    overflow: hidden;
}

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

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

.related-hotel-content {
    padding: 20px;
}

.related-location {
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-copper);
}

.related-hotel-content h3 {
    font-size: 1.125rem;
    color: var(--primary-deep);
    margin: 8px 0 12px;
}

.tips-content {
    padding: 80px 0;
}

.tips-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.lead-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.tip-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.category-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.5;
    line-height: 1;
}

.category-header h2 {
    font-size: 1.75rem;
    color: var(--primary-deep);
}

.category-content {
    padding-left: 0;
}

@media (min-width: 768px) {
    .category-content {
        padding-left: 80px;
    }
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.tip-card.highlight {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.tip-card.highlight h3 {
    color: var(--accent-gold);
}

.tip-card.highlight p,
.tip-card.highlight li {
    color: var(--text-muted);
}

.tip-card h3 {
    font-size: 1.25rem;
    color: var(--primary-deep);
    margin-bottom: 16px;
}

.tip-card p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.tip-card p:last-child {
    margin-bottom: 0;
}

.tip-card ul {
    margin: 0;
    padding-left: 20px;
}

.tip-card li {
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.month-list {
    list-style: none;
    padding: 0;
}

.month-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.month-list li:last-child {
    border-bottom: none;
}

.tips-conclusion {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 48px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.tips-conclusion h2 {
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 20px;
}

.tips-conclusion p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.tips-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.about-hero {
    background-image: url('https://cdn.pixabay.com/photo/2020/10/18/09/16/bedroom-5664221_1280.jpg');
    background-size: cover;
    background-position: center;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 380px;
    }
}

.about-story h2 {
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 24px;
}

.about-story h3 {
    font-size: 1.375rem;
    color: var(--primary-deep);
    margin: 40px 0 16px;
}

.about-story p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-sidebar .sidebar-card {
    margin-bottom: 24px;
}

.about-stats .stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.about-stats .stat-label {
    font-size: 0.8125rem;
    color: #666;
}

.about-values ul {
    list-style: none;
}

.about-values li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.about-values li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-values li strong {
    display: block;
    color: var(--primary-deep);
    margin-bottom: 4px;
}

.about-values li p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.about-philosophy {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.philosophy-content blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-gold-light);
    line-height: 1.6;
    margin-bottom: 32px;
    padding: 0 20px;
}

.philosophy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-resources {
    padding: 80px 0;
    background: var(--surface-light);
}

.about-resources h2 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 16px;
}

.about-resources > .container > p {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

@media (min-width: 576px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .resources-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.resource-card {
    display: block;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.resource-card h4 {
    font-size: 1.0625rem;
    color: var(--primary-deep);
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 16px;
}

.contact-info > p {
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 8px;
    color: var(--primary-deep);
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 1rem;
    color: var(--primary-deep);
    margin-bottom: 4px;
}

.method-details p {
    margin: 0 0 4px;
}

.method-details a {
    color: var(--primary-medium);
    font-weight: 500;
}

.response-time {
    font-size: 0.8125rem;
    color: #666;
}

.faq-section h3 {
    font-size: 1.25rem;
    color: var(--primary-deep);
    margin-bottom: 24px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1rem;
    color: var(--primary-deep);
    margin-bottom: 8px;
}

.faq-item p {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-size: 1.375rem;
    color: var(--primary-deep);
    margin-bottom: 24px;
}

.form-error-message {
    padding: 16px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    margin-bottom: 24px;
}

.form-error-message p {
    color: #991b1b;
    margin: 0;
    font-size: 0.9375rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(30, 73, 118, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-text {
    font-size: 0.9375rem;
    color: #4a5568;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.form-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: #666;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    color: #2f855a;
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.form-success p {
    color: #4a5568;
    margin-bottom: 24px;
}

.contact-additional {
    padding: 0 0 80px;
}

.additional-content {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.additional-content h2 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.additional-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
}

.additional-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.privacy-content {
    padding: 80px 0;
}

.privacy-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .privacy-wrapper {
        grid-template-columns: 280px 1fr;
    }
}

.privacy-toc {
    order: 2;
}

@media (min-width: 992px) {
    .privacy-toc {
        order: 1;
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.privacy-toc h3 {
    font-size: 1.125rem;
    color: var(--primary-deep);
    margin-bottom: 16px;
}

.privacy-toc ul {
    list-style: none;
}

.privacy-toc li {
    margin-bottom: 8px;
}

.privacy-toc a {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    font-size: 0.9375rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.privacy-toc a:hover {
    background: rgba(30, 73, 118, 0.1);
    color: var(--primary-medium);
}

.privacy-body {
    order: 1;
}

@media (min-width: 992px) {
    .privacy-body {
        order: 2;
    }
}

.privacy-body section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.privacy-body h2 {
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
}

.privacy-body h3 {
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin: 28px 0 12px;
}

.privacy-body p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.privacy-body ul {
    margin: 0 0 20px;
    padding-left: 20px;
}

.privacy-body li {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary-deep);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 24px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text h4 {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-gold);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-accept {
    background: var(--accent-gold);
    color: var(--primary-deep);
}

.cookie-accept:hover {
    background: var(--accent-gold-light);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: var(--text-light);
}

.cookie-settings {
    background: transparent;
    color: var(--text-muted);
    border: none;
    text-decoration: underline;
}

.cookie-settings:hover {
    color: var(--text-light);
}

.cookie-customize {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.cookie-option {
    margin-bottom: 16px;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-checkbox input {
    margin-top: 4px;
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-text strong {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.option-text small {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 32px;
    }
    
    .intro-image-stack {
        height: 400px;
    }
    
    .intro-image.primary {
        width: 85%;
        height: 70%;
    }
    
    .intro-image.secondary {
        width: 65%;
        height: 45%;
    }
}
