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

:root {
    --primary-color: #C52024;
    --secondary-color: #FBCB0A;
    --accent-color: #FDF8E1;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5EEDC;
    --white: #ffffff;
    --cream: #FDF8E1;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--cream);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.4s ease;
    outline: none;
    border: none;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo:focus {
    outline: none;
}

.logo img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    transition: all 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(197, 32, 36, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(197, 32, 36, 0);
    }
}

.logo:hover img {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(197, 32, 36, 0.3);
}

.logo i {
    font-size: 2rem;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-out 0.3s both;
}

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

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 3;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: #C52024;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 32, 36, 0.3);
}

.btn-primary:hover {
    background: #a01a1d;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(197, 32, 36, 0.4);
}

.btn-secondary {
    background: #FBCB0A;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(251, 203, 10, 0.3);
}

.btn-secondary:hover {
    background: #d9af09;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 203, 10, 0.4);
}

.btn-outline {
    background: transparent;
    color: #C52024;
    border: 2px solid #C52024;
}

.btn-outline:hover {
    background: #C52024;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* ========================================
   Sections
   ======================================== */
section {
    padding: 4rem 0;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: slideInFromLeft 0.8s ease-out;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    animation: expandWidth 1s ease-out 0.5s both;
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========================================
   About Preview Section
   ======================================== */
.about-preview {
    background: var(--bg-light);
}

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

.about-text h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    animation: slideInRight 0.5s ease-out backwards;
}

.amenities-list li:nth-child(1) { animation-delay: 0.1s; }
.amenities-list li:nth-child(2) { animation-delay: 0.2s; }
.amenities-list li:nth-child(3) { animation-delay: 0.3s; }
.amenities-list li:nth-child(4) { animation-delay: 0.4s; }
.amenities-list li:nth-child(5) { animation-delay: 0.5s; }
.amenities-list li:nth-child(6) { animation-delay: 0.6s; }

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

.amenities-list i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.amenities-list li:hover i {
    transform: scale(1.3) rotate(360deg);
    color: var(--secondary-color);
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Featured Rooms
   ======================================== */
.featured-rooms {
    background: var(--white);
}

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

.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.room-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(197, 32, 36, 0.2);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 32, 36, 0.1), rgba(251, 203, 10, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.room-card.featured {
    border: 2px solid #C52024;
    animation: glowing 2s ease-in-out infinite;
}

@keyframes glowing {
    0%, 100% {
        box-shadow: 0 0 5px rgba(197, 32, 36, 0.5), 0 0 10px rgba(197, 32, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(197, 32, 36, 0.8), 0 0 30px rgba(197, 32, 36, 0.5);
    }
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FBCB0A;
    color: var(--text-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(251, 203, 10, 0.5);
}

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

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover img {
    transform: scale(1.2) rotate(2deg);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(197, 32, 36, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(197, 32, 36, 0.6), 0 0 30px rgba(251, 203, 10, 0.4);
    }
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.room-features {
    margin: 1rem 0;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #C52024, #FBCB0A);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-section h2 {
    color: var(--white);
    position: static;
    transform: none;
    left: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: #2a2a2a;
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C52024, #FBCB0A, #C52024);
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.footer-section h3 {
    color: #FBCB0A;
    margin-bottom: 1rem;
    animation: fadeInLeft 0.8s ease-out;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #dfe6e9;
    margin-bottom: 1rem;
}

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

.footer-section ul li a {
    color: #dfe6e9;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dfe6e9;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #C52024, #FBCB0A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 20px rgba(251, 203, 10, 0.5);
}

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

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #C52024, #FBCB0A);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slideAcross 2s ease-in-out infinite;
}

@keyframes slideAcross {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* ========================================
   Rooms Page
   ======================================== */
.rooms-section {
    background: var(--bg-light);
}

.room-detail {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.room-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.room-detail-content.reverse {
    direction: rtl;
}

.room-detail-content.reverse > * {
    direction: ltr;
}

.room-detail-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.room-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.room-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.room-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.room-detail-info h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--primary-color);
}

.room-specs {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.room-detail-gallery .main-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.room-detail-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.thumbnail-gallery .thumbnail-btn {
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail-gallery .thumbnail-btn:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.thumbnail-gallery .thumbnail-btn img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.thumbnail-gallery .thumbnail-btn:hover {
    transform: scale(1.05);
}

/* ========================================
   Events Preview Slider
   ======================================== */
.events-preview {
    background: var(--white);
    padding: 4rem 0;
}

.events-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.events-slider {
    width: 100%;
    overflow: hidden;
}

.event-slide {
    display: none;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.event-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.event-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.event-info {
    padding: 1.8rem;
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.event-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-info .capacity {
    font-weight: 600;
    color: var(--text-dark);
}

.events-slider-btn {
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.events-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.event-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dcdcdc;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.event-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .events-slider-wrapper {
        flex-direction: column;
    }

    .events-slider-btn {
        order: 1;
    }

    .events-slider {
        order: 2;
    }
}

/* ========================================
   Booking Page
   ======================================== */
.booking-section {
    background: var(--bg-light);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.booking-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form-wrapper h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

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

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

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

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 32, 36, 0.1);
    transform: translateY(-2px);
}

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

.booking-summary h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dfe6e9;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn {
    flex: 1;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: var(--primary-color);
}

.info-card ul {
    margin-bottom: 1rem;
}

.info-card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-card ul li i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.rate {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-details {
    margin: 1rem 0;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* ========================================
   About Page
   ======================================== */
.about-content-section {
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.mission-section {
    background: var(--bg-light);
}

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

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatIn 0.8s ease-out;
}

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

.mission-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(197, 32, 36, 0.2);
    border: 2px solid var(--secondary-color);
}

.mission-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: rotateIcon 3s ease-in-out infinite;
}

@keyframes rotateIcon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.services-section {
    background: var(--white);
}

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

.service-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.service-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.service-item:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary-color);
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-light);
}

.history-section {
    background: var(--bg-light);
}

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

.history-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.history-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.history-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-contact-section {
    background: var(--white);
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
}

.map-section {
    background: var(--bg-light);
}

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

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-wrapper h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.contact-info-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-link i {
    font-size: 1.2rem;
}

.faq-section {
    background: var(--white);
}

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

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-content {
    background: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-footer {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.legal-footer p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-dark);
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .about-content,
    .about-intro,
    .room-detail-content,
    .booking-container,
    .contact-container,
    .history-content {
        grid-template-columns: 1fr;
    }

    .room-detail-content.reverse {
        direction: ltr;
    }

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

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .amenities-list,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .room-specs {
        flex-direction: column;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}

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

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

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

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    background: var(--white);
    padding: 4rem 0;
}

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

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.8s ease-out;
}

.gallery-item:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 4px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(197, 32, 36, 0.3);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 32, 36, 0.9), rgba(251, 203, 10, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.4s ease;
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(360deg);
}

/* Staggered animation for gallery items */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

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

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(197, 32, 36, 0.8);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 32, 36, 0.8);
    color: var(--white);
    border: none;
    padding: 1.5rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10000;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 1rem 0.7rem;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95%;
    }
}

/* ========================================
   Venue Slider Styles
   ======================================== */
.venues-section {
    padding: 5rem 0;
    background: var(--cream);
}

.venues-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.venues-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.venue-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.venue-slider {
    position: relative;
    overflow: hidden;
}

.venue-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.venue-slide.active {
    display: block;
}

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

.venue-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.venue-slide-image {
    height: 100%;
}

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

.venue-slide-info {
    padding: 3rem;
}

.venue-slide-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.venue-slide-info h3 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.venue-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.venue-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.venue-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.venue-slide-info h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.venue-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.venue-features-grid p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.venue-features-grid i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.venue-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.venue-specs .spec {
    background: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.venue-specs .spec i {
    color: var(--primary-color);
    margin-right: 0.4rem;
}

.venue-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.venue-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.venue-actions .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Slider Navigation Buttons */
.venue-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 32, 36, 0.9);
    color: var(--white);
    border: none;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.venue-slider-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.venue-slider-btn.prev {
    left: 0;
}

.venue-slider-btn.next {
    right: 0;
}

/* Slider Dots */
.venue-slider-dots {
    text-align: center;
    margin-top: 2rem;
}

.venue-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.venue-dot:hover {
    background: var(--text-light);
    transform: scale(1.2);
}

.venue-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Gallery Modal */
.venue-gallery-modal .gallery-modal-content {
    max-width: 900px;
    width: 90%;
    padding: 2.5rem;
}

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

.gallery-modal-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-modal-header p {
    color: var(--text-light);
}

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

.venue-gallery-grid .gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 2rem 1rem;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.venue-gallery-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox-modal {
    z-index: 2100;
}

.gallery-lightbox-modal .gallery-lightbox-content {
    max-width: 1000px;
    width: 90%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.gallery-lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    margin-bottom: 1rem;
}

.gallery-lightbox-caption {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-nav.prev {
    left: 15px;
}

.lightbox-nav.next {
    right: 15px;
}

.cta-section .container {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .venue-slide-content {
        grid-template-columns: 1fr;
    }
    
    .venue-slide-image {
        height: 300px;
    }
    
    .venue-slide-info {
        padding: 2rem;
    }
    
    .venue-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .venue-slider-wrapper {
        padding: 0 50px;
    }
    
    .venue-slide-info {
        padding: 1.5rem;
    }
    
    .venue-slide-info h3 {
        font-size: 1.5rem;
    }
    
    .venue-price {
        font-size: 1.5rem;
    }
    
    .venue-slider-btn {
        padding: 1rem 0.8rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .venue-slider-wrapper {
        padding: 0 40px;
    }
    
    .venue-slider-btn {
        padding: 0.8rem 0.6rem;
        font-size: 1.2rem;
    }
}

