/* ==========================================================================
   HOTEL SIRI - MODERN PREMIUM STYLESHEET
   Colors: Primary (#C0392B), Secondary (#D4AF37), Dark (#121212), Light (#F8F9FA)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --primary-color: #C0392B;
    --primary-dark: #962D22;
    --secondary-color: #D4AF37;
    --secondary-hover: #B59326;
    --dark-color: #121212;
    --dark-surface: #1E1E1E;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --gray-color: #6C757D;
    --gray-light: #E9ECEF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-main: 'Poppins', sans-serif;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: #333333;
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* --- Glassmorphism Effect --- */
.glassmorphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

/* --- Section Title Formatting --- */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: capitalize;
}

.section-title span {
    color: var(--primary-color);
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* --- Navigation Bar --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar {
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white-color);
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--white-color);
    margin-top: 40px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    animation: fadeIn 1s ease forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--white-color);
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.typing-container {
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 20px;
    height: 40px;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--secondary-color);
    animation: blink 0.7s infinite;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* --- Animated Counter Section --- */
.counter-section {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.counter-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.counter-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 25px 35px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.exp-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-desc {
    color: var(--gray-color);
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(192, 57, 43, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* --- Why Choose Us Section --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why-card {
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid var(--gray-light);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.why-card .icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.why-card:hover .icon-box {
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* --- Rooms Section --- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-img-box {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-img-box img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--dark-color);
    color: var(--secondary-color);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-badge.highlight {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.room-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-price-box {
    margin-bottom: 10px;
}

.room-price-box .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price-box .duration {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.room-info h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.room-info p {
    font-size: 0.88rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.room-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.room-specs li {
    font-size: 0.82rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-specs li i {
    color: var(--secondary-color);
}

/* --- Facilities Section --- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.facility-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.facility-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.facility-card p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 57, 43, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    color: var(--white-color);
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--white-color);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white-color);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--gray-light);
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--gray-color);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
}

.info-card .icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.info-card p, .info-card a {
    font-size: 0.88rem;
    color: var(--gray-color);
}

.info-card a:hover {
    color: var(--primary-color);
}

.map-container {
    padding: 10px;
    border-radius: 12px;
}

/* Form Styles */
.contact-form {
    padding: 35px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1fr solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background-color: var(--white-color);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.error-msg {
    color: var(--primary-color);
    font-size: 0.75rem;
    display: none;
    margin-top: 4px;
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.88rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
}

.form-status.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: var(--dark-surface);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-address, .footer-phone {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.footer-address i, .footer-phone i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-bottom {
    background-color: #0A0A0A;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Floating Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1EBE5D;
    transform: scale(1.1);
}

.call-btn {
    background-color: var(--primary-color);
}

.call-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.back-to-top {
    background-color: var(--dark-color);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* --- Scroll Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .rooms-grid,
    .facilities-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 80%;
        height: 100vh;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .typing-container {
        font-size: 1.4rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-experience-card {
        right: 10px;
        bottom: -15px;
        padding: 15px 25px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid,
    .facilities-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .copyright-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}