/* ==============================================
   THE SAURAV HOTEL - ULTIMATE PREMIUM STYLES
   ============================================== */

/* ============ ROOT & VARIABLES ============ */
:root {
    --primary-color: #C9A961;
    --primary-dark: #A88B4E;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #C9A961 0%, #E8D4A0 100%);
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.hotel-icon {
    font-size: 48px;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.admin-link {
    color: var(--accent-color) !important;
}

.book-now-btn {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-normal);
}

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

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(201, 169, 97, 0.8); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--bg-white);
    animation: fadeInUp 1s ease 1s backwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--bg-white);
    border-radius: 20px;
    position: relative;
}

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

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ============ INFO BAR ============ */
.info-bar {
    background: var(--bg-white);
    padding: 40px 0;
    box-shadow: var(--shadow-sm);
}

.info-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

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

/* ============ ABOUT SECTION ============ */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-parallax {
    background-image: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1920');
    opacity: 0.1;
}

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

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-images {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 64px rgba(0,0,0,0.3);
}

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

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

.image-card-1 {
    top: 0;
    right: 50px;
    width: 300px;
    height: 350px;
    z-index: 2;
}

.image-card-2 {
    bottom: 0;
    left: 0;
    width: 350px;
    height: 300px;
    z-index: 1;
}

/* ============ ROOMS SECTION ============ */
.rooms-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 15px;
}

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

.room-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

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

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

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

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-badge.popular {
    background: var(--accent-color);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.btn-view-details {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.room-card:hover .btn-view-details {
    transform: translateY(0);
}

.room-content {
    padding: 25px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.room-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
}

.room-rating {
    color: var(--primary-color);
    display: flex;
    gap: 3px;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.room-features i {
    color: var(--primary-color);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.per-night {
    color: var(--text-light);
    font-size: 14px;
}

.btn-book {
    padding: 12px 24px;
    font-size: 14px;
}

/* ============ BANQUET SECTION ============ */
.banquet-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.banquet-parallax {
    background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1920');
    opacity: 0.1;
}

.banquet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.banquet-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.banquet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.banquet-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.banquet-card:hover .banquet-image img {
    transform: scale(1.1);
}

.banquet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.banquet-card:hover .banquet-overlay {
    opacity: 1;
}

.banquet-content {
    padding: 30px;
}

.banquet-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.banquet-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.banquet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.banquet-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banquet-features i {
    color: var(--primary-color);
    font-size: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ RESTAURANT SECTION ============ */
.restaurant-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.menu-tab:hover, .menu-tab.active {
    background: var(--gradient-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.menu-item-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-normal);
}

.gallery-filter:hover, .gallery-filter.active {
    background: var(--gradient-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--bg-white);
    font-size: 32px;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.review-cta {
    text-align: center;
    margin-top: 60px;
}

.review-cta h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 10px;
}

.review-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-card i {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p, .contact-card a {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    padding: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-normal);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition-fast);
    pointer-events: none;
    background: var(--bg-white);
    padding: 0 5px;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:valid ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--primary-color);
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--gradient-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-normal);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-bottom p {
    margin: 5px 0;
}

/* ============ FLOATING BUTTONS ============ */
.floating-call-btn, .floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 24px;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    animation: pulse-float 2s ease-in-out infinite;
}

.floating-call-btn {
    background: var(--accent-color);
}

.floating-whatsapp-btn {
    background: #25D366;
    bottom: 110px;
}

.floating-call-btn:hover, .floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

.floating-call-btn span {
    display: none;
}

@keyframes pulse-float {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
}

.scroll-top {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ============ MODALS ============ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-content h2 i {
    color: var(--primary-color);
}

.booking-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.booking-summary h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 32px;
    cursor: pointer;
    margin: 10px 0 20px;
}

.star-rating i {
    color: var(--border-color);
    transition: var(--transition-fast);
}

.star-rating i.active, .star-rating i:hover {
    color: var(--primary-color);
}

.success-modal .modal-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 48px;
    animation: scaleUp 0.5s ease;
}

@keyframes scaleUp {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .section-title { font-size: 40px; }
    .about-content, .contact-grid { grid-template-columns: 1fr; }
    .image-card-1, .image-card-2 { position: relative; top: 0; left: 0; right: 0; bottom: 0; width: 100%; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-menu { 
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .book-now-btn { display: none; }
    .hero { height: 100vh; min-height: 600px; }
    .hero-title { font-size: 36px; line-height: 1.3; padding: 0 10px; }
    .hero-subtitle { font-size: 16px; padding: 0 20px; }
    .hero-buttons { 
        flex-direction: column; 
        width: 100%;
        padding: 0 20px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-features { 
        flex-direction: column; 
        gap: 15px;
        padding: 0 20px;
    }
    .feature-badge {
        width: 100%;
        justify-content: center;
    }
    .scroll-indicator {
        bottom: 20px;
        font-size: 12px;
    }
    .info-items { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .info-item {
        padding: 15px;
        background: var(--bg-light);
        border-radius: 10px;
    }
    .form-row { grid-template-columns: 1fr; }
    .banquet-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Fix floating buttons on mobile */
    .floating-call-btn {
        bottom: 20px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 20px;
        z-index: 998;
    }
    .floating-whatsapp-btn {
        bottom: 90px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 20px;
        z-index: 998;
    }
    .scroll-top {
        bottom: 160px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Ensure content doesn't hide behind floating elements */
    section {
        position: relative;
        z-index: 1;
    }
    
    /* Better spacing for mobile sections */
    .rooms-section, .banquet-section, .restaurant-section, 
    .gallery-section, .testimonials-section, .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .navbar { padding: 5px 0; }
    .logo { font-size: 20px; }
    .logo i { font-size: 24px; }
    .hero { min-height: 550px; }
    .hero-title { 
        font-size: 28px; 
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hero-features {
        flex-wrap: wrap;
    }
    .feature-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    .section-title { 
        font-size: 24px; 
        line-height: 1.3;
    }
    .section-description {
        font-size: 14px;
    }
    .modal-content { 
        padding: 25px 15px;
        margin: 10px;
    }
    .modal-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .floating-call-btn, .floating-whatsapp-btn { 
        width: 50px; 
        height: 50px; 
        font-size: 18px; 
        right: 10px; 
    }
    .floating-whatsapp-btn {
        bottom: 80px;
    }
    .scroll-top { 
        right: 10px;
        bottom: 145px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Better room cards on small mobile */
    .room-card {
        margin-bottom: 20px;
    }
    .room-price .price {
        font-size: 28px;
    }
    
    /* Menu and gallery grids */
    .menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Contact section */
    .contact-card {
        padding: 20px;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    .footer-col p {
        font-size: 14px;
    }
}

/* ============ UTILITY CLASSES ============ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* ============ MOBILE SPECIFIC FIXES ============ */
@media (max-width: 768px) {
    /* Prevent overlapping of elements */
    body {
        position: relative;
    }
    
    /* Ensure navbar stays on top */
    .navbar {
        position: fixed;
        z-index: 1000;
    }
    
    /* Fix hero content spacing */
    .hero-content {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .hero-text {
        width: 100%;
        max-width: 500px;
    }
    
    /* Room cards better spacing */
    .rooms-grid {
        gap: 25px;
        padding: 0 5px;
    }
    
    /* Gallery items better fit */
    .gallery-item {
        height: 250px;
    }
    
    /* Testimonial cards */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Menu tabs */
    .menu-tabs {
        padding: 0 10px;
    }
    
    .menu-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Gallery filters */
    .gallery-filters {
        padding: 0 10px;
    }
    
    .gallery-filter {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .feature-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .floating-call-btn,
    .floating-whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}