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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: hsl(220, 15%, 20%);
    background-color: hsl(0, 0%, 100%);
}

/* CSS Custom Properties */
:root {
    /* Colors */
    --background: 0 0% 100%;
    --foreground: 220 15% 20%;
    --primary: 220 40% 25%;
    --primary-foreground: 0 0% 98%;
    --primary-light: 220 30% 35%;
    --primary-glow: 220 50% 60%;
    --secondary: 45 70% 60%;
    --secondary-foreground: 220 15% 20%;
    --secondary-light: 45 60% 70%;
    --tertiary: 140 40% 35%;
    --tertiary-foreground: 0 0% 98%;
    --tertiary-light: 140 30% 45%;
    --muted: 220 10% 96%;
    --muted-foreground: 220 10% 45%;
    --border: 220 13% 91%;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--tertiary)) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, hsl(var(--primary) / 0.9) 100%);
    --gradient-card: linear-gradient(145deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);

    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px hsl(var(--primary) / 0.2);
    --shadow-glow: 0 0 40px hsl(var(--primary-glow) / 0.3);
    --shadow-card: 0 4px 20px -4px hsl(var(--primary) / 0.1);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border radius */
    --radius: 0.75rem;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
    line-height: 1.25rem;
    position: relative;
    overflow: hidden;
}

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

.btn-hero {
    background: rgb(224, 189, 83);
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-elegant);
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
}

.btn-elegant {
    background: transparent;
    color: #26375a;
    border: 2px solid #26375a;
}


.btn-elegant:hover {
    background: #26375a;
    color: white;
}

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

.btn-gold:hover {
    background: hsl(var(--primary) / 0.9);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Navigation */
.navbar {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-card);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.nav-logo a:not(:has(.logo-image)) .logo-text,
.nav-logo a .logo-image:not([src]) + .logo-text {
    display: inline;
}

@supports (selector(:has(*))) {
    .nav-logo a:has(.logo-image) .logo-text {
        display: none;
    }
}

@supports not (selector(:has(*))) {
    .logo-text {
        display: inline;
    }
    .logo-image {
        display: none;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: hsl(var(--primary));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: hsl(var(--primary));
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-small {
    height: 24rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('assets/thimphu-mayto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-logo-image {
    height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.9s forwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 1.2s forwards;
}

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

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: var(--gradient-card);
}

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

.welcome-content {
    padding-right: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.section-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: hsl(var(--background));
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}

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

.feature-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

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

.feature-icon {
    font-size: 3rem;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.feature-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: rgb(224, 189, 83);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Footer */
.footer {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 3rem 0 1rem;
}

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

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(var(--secondary));
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: hsl(var(--secondary));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-item i {
    color: hsl(var(--secondary));
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* About Page */
.about-content {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.info-card:hover {
    box-shadow: var(--shadow-card);
}

.card-icon {
    font-size: 2rem;
    color: hsl(var(--primary));
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.card-text {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.services-section {
    margin-bottom: 4rem;
}

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

.service-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--shadow-card);
}

.service-icon {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.service-text {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
}

.cta-section {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to { transform: scale(4); opacity: 0; }
}

/* Rooms Page */
.rooms-content {
    padding: 8rem 0 5rem 0;
    background: hsl(var(--background));
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.room-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.room-image {
    height: 250px;
    overflow: hidden;
}

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

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

.room-content {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

/* Room Gallery Styles */
.room-gallery-section,
.facility-gallery-section {
    margin: 4rem 0;
    padding: 2rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.gallery-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.gallery-image-container {
    max-width: 800px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: hsl(var(--primary));
    opacity: 1;
    transform: scale(1.1);
}

.room-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-tag {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.room-actions {
    display: flex;
    gap: 1rem;
}

.room-booking {
    margin-top: 1.5rem;
    text-align: center;
}

.book-now-btn {
    display: inline-block;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 2px solid hsl(var(--primary));
}

.book-now-btn:hover {
    background: transparent;
    color: hsl(var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsla(var(--primary), 0.3);
}

.amenities-section {
    margin-top: 4rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    box-shadow: var(--shadow-card);
}

.amenity-item i {
    font-size: 1.5rem;
    color: hsl(var(--primary));
}

.amenity-item span {
    font-weight: 500;
    color: hsl(var(--foreground));
}

/* Reservation Form */
.reservation-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-card);
    border-radius: var(--radius);
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

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

/* Contact Page */
.contact-content {
    padding: 5rem 0;
    background: hsl(var(--background));
}

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

.contact-info-section {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.contact-detail-item:hover {
    box-shadow: var(--shadow-card);
}

.contact-icon {
    font-size: 1.5rem;
    color: hsl(var(--primary));
    margin-top: 0.25rem;
}

.contact-text h3,
.contact-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.contact-form-section {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-form {
    margin-top: 1.5rem;
}

/* Facilities Page */
.facilities-content {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

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

.facility-icon {
    font-size: 3rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    text-align: center;
}

.facility-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    text-align: center;
}

.facility-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
    position: relative;
    padding-left: 1.5rem;
}

.facility-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
}

.facility-features li:last-child {
    border-bottom: none;
}

/* Activities Page */
.activities-content {
    padding: 5rem 0;
    background: hsl(var(--background));
}

/* Local Experiences Section */
.experiences-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--gradient-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.experience-icon {
    font-size: 3rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.experience-item:hover .experience-icon {
    transform: scale(1.1);
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.experience-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Travel Tips Section */
.tips-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

.tip-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.15);
}

.tip-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-title::before {
    content: '💡';
    font-size: 1.5rem;
}

.tip-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 0.95rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.activity-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.activity-image {
    height: 200px;
    overflow: hidden;
}

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

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

.activity-content {
    padding: 1.5rem;
}

.activity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.activity-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.activity-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-tag {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.travel-tips {
    margin-top: 4rem;
}

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

.tip-item {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.tip-item:hover {
    box-shadow: var(--shadow-card);
}

.tip-item i {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.tip-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.tip-item p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Quick Actions */
.quick-actions {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);
    border-radius: var(--radius);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.action-icon {
    font-size: 3rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

.action-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.action-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 4rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: hsl(var(--muted) / 0.1);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.faq-icon {
    font-size: 1rem;
    color: hsl(var(--primary));
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.faq-item.active {
    border-color: hsl(var(--primary));
}

.faq-item.active .faq-header {
    background-color: hsl(var(--primary) / 0.05);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: hsl(140, 40%, 35%);
}

.notification-error {
    background: hsl(0, 84%, 60%);
}

.notification-info {
    background: hsl(var(--primary));
}

.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4rem;
        flex-direction: column;
        background-color: hsl(var(--background));
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-card);
        padding: 2rem 0;
        border-top: 1px solid hsl(var(--border));
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-logo-image {
        height: 80px;
        max-width: 200px;
    }

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

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

    .welcome-grid,
    .about-grid,
    .contact-grid,
    .rooms-grid,
    .facilities-grid,
    .activities-grid,
    .tips-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-content,
    .contact-info-section {
        padding-right: 0;
    }

    .features-grid,
    .services-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons,
    .hero-buttons,
    .room-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-section,
    .reservation-section {
        padding: 2rem 1rem;
    }

    .book-now-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .amenity-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .amenity-item i {
        font-size: 1.25rem;
    }

    .amenity-item span {
        font-size: 0.875rem;
    }

    .room-image {
        height: 200px;
    }

    .activity-image {
        height: 180px;
    }

    .activity-title {
        font-size: 1.125rem;
    }

    .facility-card {
        padding: 1.5rem;
    }

    .facility-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .facility-title {
        font-size: 1.25rem;
    }

    .tip-item {
        padding: 1.5rem;
    }

    .tip-item i {
        font-size: 2rem;
    }

    .experiences-section,
    .tips-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .experience-item {
        padding: 1.5rem;
    }

    .experience-icon {
        font-size: 2.5rem;
    }

    .tip-card {
        padding: 1.5rem;
    }

    .tip-title {
        font-size: 1.125rem;
    }

    .action-card {
        padding: 2rem 1.5rem;
    }

    .action-icon {
        font-size: 2.5rem;
    }

    .action-title {
        font-size: 1.25rem;
    }

    .faq-header {
        padding: 1.25rem 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .contact-detail-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-detail-item i {
        font-size: 1.5rem;
    }

    .hero-small .hero-title {
        font-size: 2rem;
    }

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

    @media (max-width: 480px) {
        .hero-logo-image {
            height: 60px;
            max-width: 150px;
        }

        .container {
            padding: 0 0.75rem;
        }

        .nav-container {
            padding: 0 1rem;
        }

        .nav-logo a {
            font-size: 1.25rem;
        }

        .room-content,
        .facility-card,
        .activity-content {
            padding: 1rem;
        }

        .reservation-section {
            padding: 1.5rem 0.75rem;
            margin: 1.5rem 0.75rem;
        }

        .contact-detail-item {
            padding: 0.75rem;
        }

        .action-card {
            padding: 1.5rem 1rem;
        }

        .faq-header {
            padding: 1rem;
        }

        .faq-answer {
            padding: 0 1rem 1rem;
        }

        .experiences-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .room-gallery-section {
        margin: 2rem 0;
        padding: 1rem;
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-image-container {
        height: 250px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        left: -20px;
    }
    
    .gallery-next {
        right: -20px;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
}
}

@media (min-width: 769px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .rooms-grid,
    .facilities-grid,
    .activities-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

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

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .container {
        padding: 0 2rem;
    }
}