/* Base Styles */
:root {
    --primary-color: #b8860b;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white: #fff;
    --black: #000;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --accent-color: #ff6b35;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a67c00 100%);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #a67c00 0%, #8b6914 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c3e50 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="top-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23top-pattern)"/></svg>');
    opacity: 0.2;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.top-bar a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.top-bar i {
    margin-right: 8px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar ul .nav-cta {
    margin-left: auto;
}

.navbar a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: block;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    color: var(--primary-color);
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    border: none;
    cursor: pointer;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
    background: rgba(184, 134, 11, 0.1);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 700px;
    background: url('../Images/Hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    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::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
    animation: float 30s ease-in-out infinite;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text h2 {
    margin: 0 0 15px 0;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.4s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form select,
.booking-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.booking-form select:focus,
.booking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.booking-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.booking-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(150px, -150px);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.about-features {
    margin-top: 30px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-features i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Room Booking Section */
.room-booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(184, 134, 11, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.room-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.room-features li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.room-features i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.book-room-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a67c00 100%);
    border: none;
    transition: all 0.3s ease;
}

.book-room-btn:hover {
    background: linear-gradient(135deg, #a67c00 0%, #8b6914 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.book-room-btn i {
    margin-right: 8px;
}

.booking-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a67c00 100%);
    color: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.booking-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    margin-right: 10px;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
}

.amenities-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.amenity-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.amenity-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.amenity-item:hover::before {
    opacity: 0.05;
}

.amenity-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
}

.amenity-item h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.amenity-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Experts Section */
.experts-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('../Images/gallery-image-6.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.experts-content {
    position: relative;
    z-index: 2;
}

.experts-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.experts-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.experts-section .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.experts-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(100px, -100px);
}

.contact-content {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.contact-info p:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
    width: 25px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c3e50 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-col {
    position: relative;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-logo a:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.footer-col p {
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-col ul li:hover {
    transform: translateX(10px);
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-col i {
    margin-right: 12px;
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--accent-color);
}

/* Final CSS Improvements and Animations */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced room card animations */
.room-card {
    position: relative;
    overflow: hidden;
}

.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.room-card:hover::after {
    opacity: 0.05;
}

/* Enhanced gallery animations */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.2;
}

.gallery-overlay {
    z-index: 2;
}

/* Enhanced form focus effects */
.booking-form input:focus,
.booking-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.2);
}

/* Enhanced social links */
.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

/* Enhanced section transitions */
.about-section,
.room-booking-section,
.amenities-section,
.gallery-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

/* Enhanced price tags */
.room-price {
    position: relative;
    overflow: hidden;
}

.room-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.room-card:hover .room-price::before {
    left: 100%;
}

/* Enhanced CTA section */
.booking-cta {
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

/* Enhanced mobile menu button */
.mobile-menu-btn {
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-btn:hover::before {
    opacity: 1;
}

/* Enhanced logo hover effect */
.logo img {
    position: relative;
    overflow: hidden;
}

.logo img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.2), transparent);
    transition: left 0.5s ease;
}

.logo:hover img::after {
    left: 100%;
}

/* Enhanced navigation links */
.navbar a {
    position: relative;
    overflow: hidden;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar a:hover::before {
    transform: scaleX(1);
}

/* Enhanced section titles */
.section-title h2 {
    position: relative;
    overflow: hidden;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.section-title:hover h2::before {
    left: 100%;
}

/* Enhanced amenities icons */
.amenity-icon {
    position: relative;
    overflow: hidden;
}

.amenity-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.amenity-item:hover .amenity-icon::before {
    opacity: 0.1;
}

/* Enhanced footer links */
.footer-col a {
    position: relative;
    overflow: hidden;
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-col a:hover::before {
    transform: scaleX(1);
}

/* Enhanced contact info */
.contact-info p {
    position: relative;
    overflow: hidden;
}

.contact-info p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-info p:hover::before {
    left: 100%;
}

/* Enhanced form inputs */
.contact-form input,
.contact-form textarea {
    position: relative;
    overflow: hidden;
}

.contact-form input::before,
.contact-form textarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-form input:focus::before,
.contact-form textarea:focus::before {
    left: 100%;
}

/* Enhanced booking form */
.booking-form {
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.1;
    z-index: -1;
}







/* Enhanced about section */
.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-150px, 150px);
}

/* Enhanced room booking section */
.room-booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="room-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.5" fill="%23e9ecef" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23room-pattern)"/></svg>');
    opacity: 0.3;
}

/* Enhanced amenities section */
.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(100px, -100px);
}

/* Enhanced gallery section */
.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(125px, 125px);
}

/* Enhanced contact section */
.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-75px, 75px);
}

/* Enhanced footer */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(150px, 150px);
}

/* Enhanced animations for all interactive elements */
.room-card,
.amenity-item,
.gallery-item,
.about-content,
.contact-content,
.footer-col {
	opacity: 1;
	transform: none;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card.animate-in,
.amenity-item.animate-in,
.gallery-item.animate-in,
.about-content.animate-in,
.contact-content.animate-in,
.footer-col.animate-in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
	.room-card,
	.amenity-item,
	.gallery-item,
	.about-content,
	.contact-content,
	.footer-col {
		opacity: 0;
		transform: translateY(30px);
	}
}

/* Enhanced hover effects for all cards */
.room-card:hover,
.amenity-item:hover,
.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Enhanced focus states for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced loading states */
.btn.loading {
    pointer-events: none;
}

/* Enhanced mobile menu animations */
.navbar {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.active {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced sticky header */
.header.sticky {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

/* Enhanced notification system */
.notification {
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    transform: translateX(0);
}

/* Enhanced modal system */
.booking-modal {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal.show {
    opacity: 1;
}

.booking-modal-content {
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal.show .booking-modal-content {
    transform: scale(1);
}

/* Enhanced booking options */
.booking-option {
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-option:hover {
    transform: translateX(10px);
}

/* Enhanced form validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced print styles */
@media print {
    .top-bar,
    .header,
    .booking-form,
    .experts-section,
    .contact-form,
    .footer,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        height: auto !important;
        background: none !important;
        color: var(--black) !important;
        padding: 20px 0 !important;
    }
    
    .hero-content h2 {
        color: var(--black) !important;
    }
    
    .section-title h2 {
        color: var(--black) !important;
    }
    
    .about-content,
    .room-content,
    .amenity-item,
    .gallery-item,
    .contact-info {
        break-inside: avoid !important;
        page-break-inside: avoid !important;
    }
    
    .room-card,
    .amenity-item,
    .gallery-item {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
    
    .btn {
        background: var(--black) !important;
        color: var(--white) !important;
        border: 1px solid var(--black) !important;
    }
}

@media (min-width: 768px) {
	.navbar {
		transform: none !important;
		opacity: 1 !important;
		display: flex !important;
		position: static !important;
	}
	.mobile-menu-btn {
		display: none !important;
	}
}

/* Ensure hero content stays within banner */
.hero {
	transform: none !important;
}

/* Navbar CTA alignment */
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar ul {
	display: flex;
	align-items: center;
	gap: 35px;
}

.navbar ul .nav-cta {
	margin-left: auto;
}

/* Hero single-column after form removal */
.hero-content {
	max-width: 800px;
	display: block;
}
.hero-text { max-width: 800px; }
.hero-text h2 { margin-bottom: 15px; }
.hero-content p { margin-bottom: 0; }

/* Mobile stacking */
@media (max-width: 991px) {
	.navbar ul .nav-cta {
		margin-left: 0;
	}
	.hero-content {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.hero-text {
		text-align: center;
	}
}

/* Navbar Book Now square button */
.header .navbar .book-now-btn {
	border-radius: 0;
	padding: 10px 18px;
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Desktop: make hero form wider and shorter */
@media (min-width: 992px) {
	.hero-content {
		grid-template-columns: 1fr 1.4fr;
		gap: 30px;
	}
	.booking-form {
		padding: 24px 28px;
		max-width: none;
		width: 100%;
	}
	.booking-form .form-group {
		margin-bottom: 10px;
	}
	.booking-form label {
		margin-bottom: 6px;
		font-size: 0.85rem;
	}
	.booking-form select,
	.booking-form input {
		padding: 10px 12px;
		height: 44px;
	}
	.booking-form button {
		padding: 12px;
		height: 46px;
		font-size: 1rem;
	}
}

/* Hero CTA button */
.hero-cta {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-cta i { font-size: 1rem; }

/* Hero bottom padding for spacing under subtitle/button */
.hero-overlay {
	padding-bottom: 36px;
}

.hero-text {
	padding-bottom: 12px;
}

/* Contact social icons refined */
.contact-section .social-links {
	margin-top: 28px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.contact-section .social-links a {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--light-gray);
	box-shadow: 0 6px 16px rgba(0,0,0,0.06);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
	position: relative;
	overflow: hidden;
}

.contact-section .social-links a i {
	font-size: 1.1rem;
	color: var(--dark-color);
	transition: color .25s ease;
}

/* Brand color accents on hover */
.contact-section .social-links a.facebook:hover { border-color: #1877F2; box-shadow: 0 10px 24px rgba(24,119,242,.25); }
.contact-section .social-links a.facebook:hover i { color: #1877F2; }

.contact-section .social-links a.twitter:hover { border-color: #1DA1F2; box-shadow: 0 10px 24px rgba(29,161,242,.25); }
.contact-section .social-links a.twitter:hover i { color: #1DA1F2; }

.contact-section .social-links a.instagram:hover { border-color: #E1306C; box-shadow: 0 10px 24px rgba(225,48,108,.25); }
.contact-section .social-links a.instagram:hover i { color: #E1306C; }

.contact-section .social-links a.linkedin:hover { border-color: #0A66C2; box-shadow: 0 10px 24px rgba(10,102,194,.25); }
.contact-section .social-links a.linkedin:hover i { color: #0A66C2; }

/* Lift and subtle sheen */
.contact-section .social-links a::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.6) 50%, transparent 65%);
	transform: rotate(10deg);
	transition: transform .5s ease, opacity .5s ease;
	opacity: 0;
}

.contact-section .social-links a:hover {
	transform: translateY(-4px);
	background: #fff;
}

.contact-section .social-links a:hover::before {
	transform: translateY(50%);
	opacity: .7;
}

/* Focus states for accessibility */
.contact-section .social-links a:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Small screens */
@media (max-width: 575px) {
	.contact-section .social-links a {
		width: 44px;
		height: 44px;
		border-radius: 10px;
	}
}

/* Page Hero (inner pages) */
.page-hero {
	position: relative;
	background: url('../Images/Hero.jpg') no-repeat center center/cover;
	padding: 120px 0 80px;
	color: var(--white);
	text-align: center;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 100%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.4rem; margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; opacity: .9; }

@media (max-width: 767px) {
	.page-hero { padding: 90px 0 60px; }
	.page-hero h1 { font-size: 2rem; }
}