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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(56, 68, 59, 1.5);
    padding: 1rem 5%;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1);
}

/* Logo/Brand */
.navbar-brand {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar-brand .highlight {
    font-weight: 600;
}

/* Navigation Menu */
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-menu a:hover {
    color: #fff;
    font-weight: bold;
}

.navbar-menu a.active {
    color: #fff;
    font-weight: bold;
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

/* Book Now Button */
.navbar-book-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.navbar-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.5s ease;
    z-index: -1;
}

.navbar-book-btn:hover::before {
    left: 0;
}

.navbar-book-btn:hover {
    color: #000;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    padding: 1rem 0;
    display: none;
    border-top: 2px solid #d4af37;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .navbar-brand {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-book-btn {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #3d4f43;
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

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

    .navbar-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .navbar-menu a.active::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        border: none;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .navbar-book-btn {
        right: 60px;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* Content spacing */
.main-content {
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

/* Animation only when slide becomes active */
.hero-slide.active img {
    animation: zoomOut 8s ease-out forwards;
}

/* One-direction zoom */
@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 1.2rem;
    background: transparent;
    color: #fff;
    border: 0.5px solid #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease-in;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.hero-btn:hover::before {
    transform: translateX(0);
}

.hero-btn:hover {
    color: #000;
}

/* Hero Overlay Dark Effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

.arrow-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 6px;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 4px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: #f5f5f5;
}

.about-content {
    padding: 10rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

.about-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #888;
    margin-bottom: 3rem;
}

.about-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3d4f43;
    border: 2px solid #3d4f43;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3d4f43;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.about-btn:hover::before {
    transform: translateX(0);
}

.about-btn:hover {
    color: #fff;
}

.about-image {
    padding: 15rem 10rem 10rem 0;
    position: relative;
    overflow: visible;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 10rem;
    left: -3rem;
    width: 80%;
    height: 80%;
    background: rgba(61, 79, 67, 0.15);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
    box-shadow: 30px 30px 0px rgba(0, 0, 0, 0.1);
}

.about-image-badge {
    position: absolute;
    top: 16rem;
    right: 11rem;
    width: 150px !important;
    height: 150px !important;
    object-fit: contain !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    background: white;
    padding: 5px;
    z-index: 10;
}

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

/* Responsive About Section */
@media (max-width: 968px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 6rem 4rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-image {
        padding: 4rem 2rem;
        min-height: 400px;
        overflow: hidden;
    }

    .about-image::after {
        top: 3rem;
        left: 1rem;
        width: 90%;
        height: 85%;
    }

    .about-image-badge {
        top: 4rem;
        right: 2rem;
        width: 80px !important;
        height: 80px !important;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 4rem 2rem;
    }

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

    .about-description,
    .about-text {
        font-size: 0.9rem;
    }

    .about-image {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }

    .about-image::after {
        top: 2rem;
        left: 0.5rem;
        width: 90%;
        height: 85%;
    }

    .about-image-badge {
        top: 3rem;
        right: 1.5rem;
        width: 60px !important;
        height: 60px !important;
        padding: 6px;
    }
}

/* Rooms Section */
.rooms-section {
    padding: 8rem 5%;
    background: #1a1a1a;
    text-align: center;
}

.rooms-header {
    margin-bottom: 4rem;
}

.rooms-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.rooms-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.room-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}

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

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

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.room-card:hover .room-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.room-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: #fff;
    text-align: left;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.room-price {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.4s ease;
    display: flex;
    visibility: hidden;
}

.room-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.room-amenities svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.room-book {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-book::after {
    content: '→';
    font-size: 1.2rem;
}

.room-card:hover .room-book {
    opacity: 1;
    transform: translateX(0);
}

.room-card:hover .room-price {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.book-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(61, 79, 67, 0.9);
    color: #fff;
    padding: 2rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 2;
}

.rooms-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}

/* Responsive Rooms Section */
@media (max-width: 968px) {
    .rooms-section {
        padding: 6rem 4%;
    }

    .rooms-title {
        font-size: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .room-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .rooms-section {
        padding: 4rem 3%;
    }

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

    .room-content {
        padding: 1.5rem;
    }

    .room-name {
        font-size: 1.5rem;
    }

    .room-price {
        font-size: 0.8rem;
    }

    .room-book {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.75rem;
    }

    .book-badge {
        padding: 1.5rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 8rem 5%;
    background: #fff;
}

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

.what-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.what-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.3;
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.what-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.what-image-wrapper:hover .what-image {
    transform: scale(1.15);
}

.what-content {
    padding: 2rem;
}

.what-card-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.what-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.what-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #3d4f43;
    border: 2px solid #3d4f43;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.what-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3d4f43;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.what-btn:hover::before {
    transform: translateX(0);
}

.what-btn:hover {
    color: #fff;
}

/* Responsive What We Do Section */
@media (max-width: 968px) {
    .what-we-do-section {
        padding: 6rem 4%;
    }

    .what-title {
        font-size: 2.5rem;
    }

    .what-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-image-wrapper {
        height: 350px;
    }

    .what-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .what-we-do-section {
        padding: 4rem 3%;
    }

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

    .what-card-title {
        font-size: 1.5rem;
    }

    .what-card-text {
        font-size: 0.9rem;
    }

    .what-image-wrapper {
        height: 250px;
    }

    .what-content {
        padding: 0.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 8rem 5%;
    background: #f5f5f5;
}

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

.services-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 2rem;
    display: inline-block;
}

.service-icon svg {
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon svg {
    transform: rotate(360deg);
}

.service-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

/* Responsive Services Section */
@media (max-width: 968px) {
    .services-section {
        padding: 6rem 4%;
    }

    .services-title {
        font-size: 2.5rem;
    }

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

    .service-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 3%;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .service-title {
        font-size: 1.3rem;
    }

    .service-text {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 5%;
    background: #fff;
}

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

.testimonials-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.3;
}

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

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #f9f9f9;
    padding: 4rem 3rem;
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-stars {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    margin-bottom: 3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 0.9rem;
    color: #888;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.t-dot.active {
    background: #3d4f43;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: #f5f5f5;
    overflow: hidden;
}

.gallery-header {
    margin-bottom: 4rem;
    text-align: center;
    padding: 0 5%;
}

.gallery-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.gallery-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.3;
}

.gallery-scroll-container {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollGallery 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Testimonials & Gallery */
@media (max-width: 968px) {
    .testimonials-section,
    .gallery-section {
        padding: 6rem 4%;
    }

    .testimonials-title,
    .gallery-title {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 3rem 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .gallery-item {
        width: 350px;
        height: 250px;
    }

    .gallery-header {
        padding: 0 4%;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 4rem 3%;
    }

    .gallery-section {
        padding: 4rem 0;
    }

    .testimonials-title,
    .gallery-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
    }

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

    .author-image {
        width: 60px;
        height: 60px;
    }

    .gallery-item {
        width: 280px;
        height: 200px;
    }

    .gallery-header {
        padding: 0 3%;
    }
}

/* Booking Contact Section */
.booking-contact-section {
    background-image: url('../img/hero (1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 0;
}

.booking-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.booking-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left Side - Info */
.booking-info {
    padding: 6rem 5%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-stars {
    color: #d4af37;
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 3rem;
    max-width: 500px;
}

.reservation-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon svg {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

.contact-details {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.contact-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 0;
    white-space: nowrap;
}

.contact-number {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-number:hover {
    color: #d4af37;
}

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

.brand-logo {
    text-align: center;
    padding: 1rem;
}

.brand-logo span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
}

/* Right Side - Booking Form */
.booking-form-wrapper {
    background: #fff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d4f43;
    background: #fff;
}

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

.booking-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #3d4f43;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
}

.booking-submit-btn:hover {
    background: #2c3a31;
}

/* Responsive Booking Contact Section */
@media (max-width: 968px) {
    .booking-contact-grid {
        grid-template-columns: 1fr;
    }

    .booking-info {
        padding: 4rem 4%;
    }

    .booking-form-wrapper {
        padding: 3rem 4%;
    }

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

    .contact-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-info {
        padding: 3rem 5%;
    }

    .booking-form-wrapper {
        padding: 2rem 5%;
    }

    .booking-form-title {
        font-size: 2rem;
    }

    .info-stars {
        font-size: 1.2rem;
        letter-spacing: 5px;
    }

    .info-text {
        font-size: 1rem;
    }

    .reservation-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-number {
        font-size: 1.3rem;
    }

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

    .brand-logo span {
        font-size: 0.65rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Footer Section */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column {
    padding: 0 10px;
}

.footer-title {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-text {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 25px;
    font-size: 15px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-family: Georgia, serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d4af37;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-newsletter-text {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    background-color: #333;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        padding: 0;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-heading {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: rgba(26, 26, 26, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.scroll-to-top:hover {
    background-color: rgba(26, 26, 26, 0.95);
}

.scroll-to-top .arrow-up {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    z-index: 2;
}

.scroll-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.scroll-to-top .progress-ring-circle {
    stroke-dasharray: 169.56;
    stroke-dashoffset: 169.56;
    transition: stroke-dashoffset 0.1s linear;
}

/* Responsive Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .scroll-to-top .arrow-up {
        font-size: 20px;
    }

    .scroll-to-top .progress-ring {
        width: 50px;
        height: 50px;
    }

    .scroll-to-top .progress-ring-circle {
        r: 22;
        cx: 25;
        cy: 25;
        stroke-dasharray: 138.23;
        stroke-dashoffset: 138.23;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top .arrow-up {
        font-size: 18px;
    }

    .scroll-to-top .progress-ring {
        width: 45px;
        height: 45px;
    }

    .scroll-to-top .progress-ring-circle {
        r: 19.5;
        cx: 22.5;
        cy: 22.5;
        stroke-dasharray: 122.52;
        stroke-dashoffset: 122.52;
    }
}

/* Page Hero Section (for inner pages) */
.page-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    text-transform: capitalize;
    margin: 0;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 35vh;
        min-height: 250px;
    }

    .page-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 6rem 5%;
    background: #fff;
}

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

.gallery-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}

.gallery-main-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 2px;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #f0f0f0;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 79, 67, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-zoom svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
    stroke-width: 2;
}

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

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

.gallery-grid-item:hover .gallery-zoom {
    transform: scale(1);
}

/* Responsive Gallery Grid */
@media (max-width: 968px) {
    .gallery-grid-section {
        padding: 4rem 4%;
    }

    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-section {
        padding: 3rem 3%;
    }

    .gallery-grid-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-main-title {
        font-size: 1.8rem;
    }

    .gallery-subtitle {
        font-size: 0.7rem;
    }

    .gallery-zoom svg {
        width: 35px;
        height: 35px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px 25px;
    z-index: 10000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    color: #fff;
    font-size: 1rem;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 25px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 15px 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100%;
        max-height: 75vh;
    }

    .lightbox-content img {
        max-height: 75vh;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 10px 15px;
    }

    .lightbox-counter {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

/* Room Detail Section */
.room-detail-section {
    padding: 6rem 5%;
    background: #fff;
}

.room-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.room-detail-info {
    padding-right: 2rem;
}

.room-detail-header {
    margin-bottom: 2rem;
}

.room-stars {
    color: #d4af37;
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
}

.room-category {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.room-detail-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.room-detail-description {
    margin-bottom: 3rem;
}

.room-detail-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.room-check-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.check-item h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.check-item ul {
    list-style: none;
    padding: 0;
}

.check-item li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.check-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3d4f43;
    font-weight: bold;
}

.room-special-info,
.room-pets-info,
.room-children-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.room-special-info h4,
.room-pets-info h4,
.room-children-info h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.room-special-info p,
.room-pets-info p,
.room-children-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.room-detail-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3d4f43;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.room-detail-btn:hover {
    background: #2c3a31;
    transform: translateY(-2px);
}

.room-detail-amenities {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 5px;
    height: fit-content;
}

.amenities-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #666;
}

.amenities-list li:last-child {
    border-bottom: none;
}

.amenities-list svg {
    flex-shrink: 0;
}

/* Responsive Room Detail */
@media (max-width: 968px) {
    .room-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .room-detail-info {
        padding-right: 0;
    }

    .room-check-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .room-detail-section {
        padding: 4rem 4%;
    }

    .room-detail-title {
        font-size: 1.8rem;
    }

    .room-detail-amenities {
        padding: 2rem;
    }

    .amenities-title {
        font-size: 1.5rem;
    }

    .room-detail-description p {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

/* Left Side - Hotel Info */
.contact-info {
    padding-right: 2rem;
}

.contact-info-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-detail-text {
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #3d4f43;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-value {
    font-size: 1.1rem;
    color: #2c2c2c;
    text-decoration: none;
    display: block;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #3d4f43;
}

/* Right Side - Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-full {
    width: 100%;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-half {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3d4f43;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-submit-btn {
    padding: 1.2rem 3rem;
    background: #3d4f43;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #2c3a31;
    transform: translateY(-2px);
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 4%;
    }

    .contact-info-title {
        font-size: 1.8rem;
    }

    .contact-form-title {
        font-size: 1.6rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row-half {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-detail-item {
        gap: 1rem;
    }

    .contact-icon svg {
        width: 35px;
        height: 35px;
    }

    .contact-value {
        font-size: 1rem;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    background: #fff;
    padding: 5% 10%;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 350px;
    }
}

/* Booking Page Section */
.booking-page-section {
    padding: 6rem 5%;
    background: #f5f5f5;
}

.booking-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.booking-page-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.booking-page-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.booking-page-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Booking Form Side */
.booking-form-side {
    width: 100%;
}

.booking-form-card {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.booking-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.booking-section-title:first-child {
    margin-top: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
}

.booking-form-group-full {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.booking-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #3d4f43;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.booking-input,
.booking-textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.booking-input:focus,
.booking-textarea:focus {
    outline: none;
    border-color: #3d4f43;
    box-shadow: 0 0 0 2px rgba(61, 79, 67, 0.1);
}

.booking-textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-input::placeholder,
.booking-textarea::placeholder {
    color: #999;
}

/* Submit Button */
.booking-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #3d4f43;
    color: #fff;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.booking-submit-btn:hover {
    background: #2c3a31;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 79, 67, 0.3);
}

.booking-submit-btn svg {
    flex-shrink: 0;
}

/* Booking Info Side */
.booking-info-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-hotel-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

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

/* Booking Features */
.booking-features {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.booking-features-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.booking-feature-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.booking-feature-item:last-child {
    margin-bottom: 0;
}

.booking-feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 79, 67, 0.08);
    border-radius: 50%;
}

.booking-feature-icon svg {
    width: 24px;
    height: 24px;
}

.booking-feature-text {
    flex: 1;
}

.booking-feature-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}

.booking-feature-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Additional Info */
.booking-additional-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
}

.booking-info-item svg {
    flex-shrink: 0;
}

/* Responsive Booking Page */
@media (max-width: 968px) {
    .booking-page-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-page-title {
        font-size: 2.2rem;
    }

    .booking-form-card {
        padding: 2.5rem;
    }

    .booking-hotel-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .booking-page-section {
        padding: 4rem 4%;
    }

    .booking-page-header {
        margin-bottom: 3rem;
    }

    .booking-page-title {
        font-size: 2rem;
    }

    .booking-form-card {
        padding: 2rem;
    }

    .booking-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-features {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .booking-page-section {
        padding: 3rem 4%;
    }

    .booking-page-title {
        font-size: 1.8rem;
    }

    .booking-page-subtitle {
        font-size: 1rem;
    }

    .booking-form-card {
        padding: 1.5rem;
    }

    .booking-section-title {
        font-size: 1.1rem;
    }

    .booking-hotel-image {
        height: 250px;
    }

    .booking-features {
        padding: 1.5rem;
    }

    .booking-features-title {
        font-size: 1.3rem;
    }

    .booking-feature-item {
        gap: 1rem;
    }

    .booking-feature-icon {
        width: 40px;
        height: 40px;
    }

    .booking-additional-info {
        padding: 1.5rem;
    }

    .booking-submit-btn {
        font-size: 0.75rem;
        padding: 1rem;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 450px;
    background: linear-gradient(135deg, #2d3e32 0%, #3d4f43 100%);
    color: #fff;
    padding: 1rem 1.25rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid #d4af37;
    border-radius: 12px;
}

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

.cookie-consent-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #d4af37;
    font-family: 'Georgia', serif;
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #e0e0e0;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #d4af37;
    color: #2d3e32;
}

.cookie-btn-accept:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-btn-customize {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cookie-btn-customize:hover {
    background: #d4af37;
    color: #2d3e32;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Preferences Modal */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-preferences-modal.show {
    display: flex;
}

.cookie-preferences-content {
    background: linear-gradient(135deg, #2d3e32 0%, #3d4f43 100%);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid #d4af37;
}

.cookie-preferences-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cookie-preferences-header h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.cookie-preferences-header p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-preferences-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category h4 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.cookie-category p {
    color: #c0c0c0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #d4af37;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-required-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-preferences-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Cookie Settings Button */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: #d4af37;
    color: #2d3e32;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.cookie-settings-btn.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-btn:hover {
    background: #c29d2f;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 0.875rem 1rem;
        max-width: calc(100% - 2rem);
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }

    .cookie-consent-content {
        gap: 0.5rem;
    }

    .cookie-icon {
        font-size: 1.25rem;
    }

    .cookie-text h3 {
        font-size: 0.9rem;
    }

    .cookie-text p {
        font-size: 0.75rem;
    }

    .cookie-consent-actions {
        gap: 0.4rem;
    }

    .cookie-btn {
        flex: 1;
        min-width: 90px;
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
    }

    .cookie-preferences-modal {
        padding: 1rem;
    }

    .cookie-preferences-content {
        max-height: 90vh;
    }

    .cookie-preferences-header,
    .cookie-preferences-body,
    .cookie-preferences-footer {
        padding: 1.5rem;
    }

    .cookie-preferences-header h3 {
        font-size: 1.4rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-settings-btn {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
