:root {
    --color-gold: #C9A962;
    --color-gold-light: #E8D5A3;
    --color-gold-dark: #9A7B3C;
    --color-navy: #1A2332;
    --color-navy-light: #2A3544;
    --color-charcoal: #1E1E1E;
    --color-cream: #F5F2EB;
    --color-cream-dark: #E8E3D9;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-accent-teal: #2D6A6A;
    --color-accent-burgundy: #8B2942;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, var(--color-cream) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.98) 0%, rgba(26, 35, 50, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.site-logo {
    width: 50px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    color: var(--color-cream);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

.nav-list li a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cream);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-list li a:hover {
    color: var(--color-gold);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
}

.close-menu {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.close-menu span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    top: 50%;
    left: 50%;
    border-radius: 2px;
}

.close-menu span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.mobile-nav-list > li > a,
.mobile-nav-list > li > .submenu-trigger {
    display: block;
    padding: 1rem 2rem;
    color: var(--color-cream);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > .submenu-trigger:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-gold);
    padding-left: 2.5rem;
}

.submenu {
    list-style: none;
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.has-submenu.active .submenu {
    max-height: 600px;
}

.submenu li a {
    display: block;
    padding: 0.8rem 2rem 0.8rem 3rem;
    color: var(--color-cream-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.submenu li a:hover {
    color: var(--color-gold);
    background: rgba(201, 169, 98, 0.05);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(26, 35, 50, 0.6) 50%, rgba(26, 35, 50, 0.85) 100%);
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    border-radius: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--color-gold);
    display: block;
    font-style: italic;
}

.hero-description {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    color: var(--color-cream);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--color-navy);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hotels-showcase {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-cream) 100%);
}

.hotels-grid {
    display: grid;
    gap: 2.5rem;
}

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

.hotel-card:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.hotel-card:nth-child(even) .hotel-card-image {
    order: 2;
}

.hotel-card:nth-child(even) .hotel-card-content {
    order: 1;
}

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

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

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hotel-rank {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    box-shadow: var(--shadow-soft);
}

.hotel-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-location {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hotel-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hotel-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

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

.hotel-excerpt {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 0.8rem;
    background: var(--color-cream);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
}

.hotel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.hotel-link:hover {
    color: var(--color-navy);
    gap: 1rem;
}

.hotel-link::after {
    content: '\2192';
    font-size: 1.2rem;
}

.intro-section {
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.intro-content {
    position: relative;
    z-index: 2;
}

.intro-content .section-badge {
    background: rgba(201, 169, 98, 0.2);
}

.intro-content .section-title {
    color: var(--color-white);
}

.intro-text {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    color: var(--color-cream-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    z-index: -1;
}

.tips-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tip-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-accent-teal) 100%);
}

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

.tip-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-cream-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.tip-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.tip-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.site-footer {
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-charcoal) 100%);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.4rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-about p {
    font-size: 0.95rem;
    color: var(--color-cream-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: var(--color-cream-dark);
    margin-bottom: 0.5rem;
}

.footer-contact-info a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-info a:hover {
    color: var(--color-gold-light);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--color-cream-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--color-gold);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-cream-dark);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-cream-dark);
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-btn-accept {
    background: var(--color-gold);
    color: var(--color-navy);
}

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

.cookie-btn-reject {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid var(--color-cream);
}

.cookie-btn-reject:hover {
    background: var(--color-cream);
    color: var(--color-navy);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.cookie-btn-settings:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.page-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C9A962" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    background-size: 100px;
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--color-cream-dark);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

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

.breadcrumb span {
    color: var(--color-cream-dark);
    font-size: 0.85rem;
}

.content-section {
    padding: 4rem 2rem;
    background: var(--color-white);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-navy);
    margin: 2rem 0 1rem;
}

.content-container h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-navy);
    margin: 1.5rem 0 0.8rem;
}

.content-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.content-container ul,
.content-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-container a {
    color: var(--color-accent-teal);
    text-decoration: underline;
}

.content-container a:hover {
    color: var(--color-navy);
}

.hotel-detail-header {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hotel-detail-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-detail-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 50, 0.9) 100%);
}

.hotel-detail-info {
    position: relative;
    z-index: 2;
    padding: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-detail-info .hotel-location {
    color: var(--color-gold);
}

.hotel-detail-info .hotel-name {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hotel-detail-info .hotel-rating {
    margin-bottom: 0;
}

.hotel-overview {
    background: var(--color-cream);
}

.hotel-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.hotel-description h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.hotel-description p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hotel-sidebar {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gold);
}

.sidebar-info {
    margin-bottom: 1.5rem;
}

.sidebar-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

.sidebar-info-label {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.9rem;
}

.sidebar-info-value {
    color: var(--color-text-light);
    font-size: 0.9rem;
    text-align: right;
}

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

.sidebar-cta .btn {
    width: 100%;
    text-align: center;
}

.contact-form-section {
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-details {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-navy);
}

.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-navy);
    margin-bottom: 0.3rem;
}

.contact-detail-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-detail-text a {
    color: var(--color-accent-teal);
    text-decoration: none;
}

.contact-detail-text a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-cream-dark);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

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

.form-submit {
    margin-top: 2rem;
}

.image-source {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.update-date {
    display: inline-block;
    background: var(--color-cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hotel-card {
        grid-template-columns: 1fr !important;
    }
    
    .hotel-card:nth-child(even) .hotel-card-image,
    .hotel-card:nth-child(even) .hotel-card-content {
        order: unset;
    }
    
    .hotel-card-image {
        min-height: 280px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image::before {
        display: none;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hotel-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .site-logo {
        width: 40px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hotel-card-content {
        padding: 1.5rem;
    }
    
    .hotel-name {
        font-size: 1.4rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .hotel-detail-info .hotel-name {
        font-size: 2rem;
    }
    
    .hotel-detail-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .hotel-features {
        justify-content: center;
    }
}
