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

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Better mobile touch handling */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Better image handling for mobile */
img {
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --primary-orange: #FF6B35;
    --primary-red: #C1121F;
    --dark-red: #8B0000;
    --light-orange: #FF8C61;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-red);
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0;
    background: var(--dark-red);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-image {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
}

.logo-text {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: var(--primary-orange);
}

.btn-book {
    background-color: var(--primary-orange);
    font-weight: 600;
    padding: 0.8rem 1.8rem !important;
    border-radius: 30px;
    margin-left: 0.5rem;
}

.btn-book:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px) scale(1.05);
}

.btn-signin {
    background-color: transparent;
    font-weight: 600;
    padding: 0.8rem 1.8rem !important;
    border-radius: 30px;
    border: 2px solid var(--white);
    margin-left: 0.5rem;
}

.btn-signin:hover {
    background-color: var(--white);
    color: var(--primary-red) !important;
    transform: translateY(-2px) scale(1.05);
}

/* Social Media Icons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-icons-desktop {
    margin-left: 1rem;
}

.social-icons-desktop .social-icons {
    gap: 0.7rem;
}

.social-icons-mobile {
    display: none;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding-top: 80px;
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-left: 5rem;
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: zoomIn 8s ease-in-out;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    white-space: nowrap;
}

/* Service Text Animation */
.service-text {
    position: relative;
    height: 80px;
    margin-bottom: 2rem;
}

.service-name {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
    font-size: 2rem;
    font-weight: 600;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.service-name.active {
    opacity: 1;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.4s ease;
    margin-left: 0;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: var(--dark-red);
    color: var(--white);
}



/* Section Styles */
.section {
    padding: 3rem 2rem;
    min-height: auto;
}

.about-section {
    padding: 3rem 2rem;
}

.section:nth-child(even) {
    background-color: #f5f5f5;
}

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

.section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}

/* About Us Section */
.about-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.about-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image-container {
    flex: 1;
    padding-left: 0.5rem;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 10px 10px 0;
}

.about-content {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(193, 18, 31, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Make the last (5th) service card span full width but keep same edge alignment */
.service-card:nth-child(5) {
    grid-column: 1 / -1;
}

.service-card:nth-child(5) .service-image {
    width: 100%;
    margin: 0;
    height: 300px;
}

.service-card:nth-child(5) .service-info {
    padding: 2rem;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-image:hover::after {
    opacity: 1;
}

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

.service-info {
    padding: 1.5rem 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 1rem;
    flex-wrap: nowrap;
}

.service-info h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin: 0;
    font-weight: 600;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.service-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

.btn-book-service {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-book-service:hover {
    background-color: var(--primary-red);
}

/* Image Modal/Zoom */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomInModal 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: var(--primary-orange);
}

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

/* Restaurants & Amenities Section */
.restaurants-section {
    background-color: #f9f9f9;
}

.restaurants-hero-slider {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.restaurants-slider-container {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

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

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

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

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--primary-orange);
    border-color: var(--white);
    transform: scale(1.3);
}

.restaurants-content {
    margin-top: 2rem;
}

.restaurants-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.restaurants-cta {
    text-align: center;
    margin: 2rem 0 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.btn-restaurants-book {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-restaurants-book:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(193, 18, 31, 0.4);
}

.btn-restaurants-rooms {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-red);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-red);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-restaurants-rooms:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(193, 18, 31, 0.4);
}

.amenities-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

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

.amenity-item {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.amenity-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    transition: all 0.4s ease;
}

.amenity-item:hover .amenity-overlay {
    background: linear-gradient(to bottom, rgba(193, 18, 31, 0.3), rgba(193, 18, 31, 0.7));
}

.amenity-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.amenity-item:hover .amenity-label {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateX(-50%) translateY(-5px);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-content {
    margin-top: 2rem;
}

.contact-map {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

.contact-form-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    border-radius: 0;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-form {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    align-self: center;
}

.btn-submit-form:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(193, 18, 31, 0.4);
}

.btn-submit-form:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Contact Form Messages */
.contact-message {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

.contact-message.success {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.contact-message.success strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #28a745;
}

.contact-message.error {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.contact-message.error strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #dc3545;
}

.contact-message p {
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
}

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

/* Footer Section */
.footer {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    margin-top: 0;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

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

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.5);
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    /* On tablet, keep 2 columns but adjust 5th card */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card:nth-child(5) .service-image {
        width: 100%;
        margin: 0;
        height: 250px;
    }

    .service-card:nth-child(5) .service-info {
        padding: 1.5rem 1rem;
    }
}

@media screen and (max-width: 768px) {
    /* Switch to single column on smaller tablets/phones */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .service-card:nth-child(5) .service-image {
        width: 100%;
        margin: 0;
        height: 220px;
    }

    .service-card:nth-child(5) .service-info {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media screen and (max-width: 968px) {
    .social-icons-desktop {
        display: block;
        width: 100%;
        padding: 1rem 1rem 0.5rem;
        border-top: 2px solid rgba(0, 0, 0, 0.08);
        margin-top: 0.5rem;
    }

    .social-icons-desktop .social-icons {
        justify-content: center;
        gap: 0.8rem;
    }

    .social-icons-desktop .social-icon {
        width: 18px;
        height: 18px;
        min-width: 36px;
        min-height: 36px;
        background-color: var(--primary-red);
        border-radius: 6px;
        transition: all 0.3s ease;
        color: var(--white);
    }
    
    .social-icons-desktop .social-icon svg {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }
    
    .social-icons-desktop .social-icon:hover {
        background-color: var(--primary-orange);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }

    .social-icons-mobile {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-right .social-icons {
        gap: 0.5rem;
    }

    .nav-right .social-icon {
        width: 16px;
        height: 16px;
        min-height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-right .social-icon svg {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }
    
    .nav-right .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        left: auto;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        width: 280px;
        max-width: 85%;
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -2px 4px 16px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        gap: 0.2rem;
        border-radius: 0 0 0 12px;
    }

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

    .nav-item {
        width: 100%;
        padding: 0 0.8rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        display: block;
        color: var(--black);
        border-radius: 6px;
        font-size: 0.9rem;
    }

    .nav-link:hover {
        background-color: rgba(255, 107, 53, 0.1);
        color: var(--primary-orange);
    }

    .nav-link.active {
        background-color: var(--primary-orange);
        color: var(--white);
    }

    .btn-book {
        margin: 0.3rem 0;
        display: block;
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
        color: var(--white);
        text-align: center;
        padding: 0.75rem 1rem !important;
    }

    .btn-book:hover {
        background-color: var(--primary-red);
        color: var(--white);
    }

    .btn-signin {
        border-color: var(--primary-orange);
        color: var(--primary-orange);
        margin: 0.3rem 0;
        display: block;
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
        text-align: center;
        padding: 0.75rem 1rem !important;
    }

    .btn-signin:hover {
        background-color: var(--primary-orange);
        color: var(--white);
    }

    .logo-image {
        height: 40px;
        width: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 100px;
        justify-content: center;
        text-align: center;
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
    }

    .hero-content {
        max-width: 100%;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        white-space: normal;
    }

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

    .service-text {
        height: 60px;
    }

    .hero-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section {
        padding: 3rem 1rem;
    }

    .about-wrapper {
        flex-direction: column;
        max-width: 100%;
    }

    .about-image-container {
        padding: 0;
        height: 350px;
        width: 100%;
    }

    .about-image-container img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content {
        padding: 2rem 1.5rem;
        text-align: center;
        width: 100%;
    }

    .about-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .about-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .about-buttons .btn-primary,
    .about-buttons .btn-secondary {
        flex: 1;
        min-width: 0;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Restaurant section on tablets */
    .restaurants-hero-slider {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .restaurants-slider-container {
        border-radius: 0;
    }
    
    .restaurants-cta {
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .btn-restaurants-book,
    .btn-restaurants-rooms {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* Amenities on tablets */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }
    
    .amenity-item {
        border-radius: 0;
        height: 200px;
    }
}

/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
        min-height: 70px;
        gap: 1rem;
    }

    .logo {
        gap: 0.6rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.8px;
    }

    .social-icons-mobile {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }
}

/* Very small phones */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
        min-height: 65px;
        gap: 0.6rem;
    }

    .nav-right .social-icons {
        gap: 0.4rem;
    }
    
    .nav-right .social-icon {
        width: 14px;
        height: 14px;
        min-width: 30px;
        min-height: 30px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .nav-right {
        gap: 0.8rem;
    }

    .logo-image {
        height: 35px;
        width: 35px;
    }

    .logo-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 90px;
        min-height: calc(100vh - 65px);
        min-height: calc(100dvh - 65px);
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        white-space: normal;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 1.5px;
        word-spacing: 4px;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-text {
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .about-image-container {
        height: 280px;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .about-content h3 {
        font-size: 1.1rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .about-buttons .btn-primary,
    .about-buttons .btn-secondary {
        flex: 1;
        min-width: 0;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .services-section {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .service-image {
        height: 220px;
        margin: 0 -0.5rem !important;
        width: calc(100% + 1rem) !important;
    }

    .service-card {
        padding: 0;
    }
    
    .service-header {
        gap: 0.6rem;
    }
    
    .service-info h3 {
        font-size: 0.95rem;
    }
    
    .btn-book-service {
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
    }

    /* Reset 5th card on mobile to match others */
    .service-card:nth-child(5) {
        grid-column: auto !important;
    }

    .service-card:nth-child(5) .service-image {
        width: calc(100% + 1rem) !important;
        margin: 0 -0.5rem !important;
        height: 220px !important;
    }

    .service-card:nth-child(5) .service-info {
        max-width: 100%;
        padding: 1.5rem 0.5rem !important;
    }

    .service-info {
        padding: 1.5rem 0.5rem;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        flex-wrap: nowrap;
    }

    .service-info h3 {
        font-size: 1rem;
        flex: 1;
        min-width: 0;
        line-height: 1.3;
    }

    .btn-book-service {
        flex-shrink: 0;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Amenities on mobile */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
        padding: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }
    
    .amenity-item {
        border-radius: 0;
        height: 180px;
    }
    
    .amenity-label {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        bottom: 15px;
    }

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

    .restaurants-description {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .restaurants-hero-slider {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-bottom: 2rem;
    }

    .restaurants-slider-container {
        height: 250px;
        border-radius: 0;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .restaurants-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .btn-restaurants-book,
    .btn-restaurants-rooms {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-width: 0;
        white-space: nowrap;
    }
    
    /* About section on small phones */
    .about-image-container {
        height: 250px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content h3 {
        font-size: 1rem;
    }
    
    .about-buttons {
        flex-direction: row;
        gap: 0.6rem;
    }
    
    .about-buttons .btn-primary,
    .about-buttons .btn-secondary {
        padding: 0.75rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Contact form on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 3rem 0.5rem;
    }

    .contact-content {
        margin-top: 2rem;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-map {
        width: calc(100% + 1rem);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        margin-bottom: 2rem;
        border-radius: 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1rem;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 0;
        width: 100%;
    }

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .btn-submit-form {
        width: 100%;
    }

    /* Footer on mobile */
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3,
    .footer-section h4,
    .footer-section p {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom p {
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }

    .image-modal img {
        max-width: 95%;
        max-height: 95%;
    }

    .image-modal-close {
        right: 20px;
        font-size: 2.5rem;
    }
}

/* Landscape orientation on phones */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .hero {
        padding-top: 60px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.6rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 2px;
        word-spacing: 5px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

/* Very small screens (older phones) */
@media screen and (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 0.8rem;
    }
    
    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .logo-image {
        height: 30px;
        width: 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 1.5px;
        word-spacing: 4px;
    }
    
    .nav-right .social-icon {
        width: 16px;
        height: 16px;
        min-width: 36px;
        min-height: 36px;
    }
    
    /* About section on very small phones */
    .about-content {
        padding: 1.5rem 0.8rem;
    }
    
    .about-content h2 {
        font-size: 1.4rem;
    }
    
    .about-content h3 {
        font-size: 0.95rem;
    }
    
    .about-buttons {
        gap: 0.5rem;
    }
    
    .about-buttons .btn-primary,
    .about-buttons .btn-secondary {
        padding: 0.7rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Services on very small phones */
    .service-info h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .btn-book-service {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .service-header {
        gap: 0.5rem;
    }
    
    /* Restaurant section on very small phones */
    .restaurants-hero-slider {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .restaurants-slider-container {
        height: 220px;
    }
    
    .restaurants-description {
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    .restaurants-cta {
        gap: 0.6rem;
        padding: 0 0.8rem;
    }
    
    .btn-restaurants-book,
    .btn-restaurants-rooms {
        padding: 0.7rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Amenities on very small phones */
    .amenities-grid {
        gap: 0.2rem;
    }
    
    .amenity-item {
        height: 150px;
    }
    
    .amenity-label {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        bottom: 10px;
    }
}

/* Promotional Advertisement Section */
.promo-ad-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 50%, #FFB088 100%);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.promo-ad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.promo-ad-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Carousel Side */
.promo-carousel {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.promo-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.promo-slide.active-promo {
    opacity: 1;
    z-index: 1;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.promo-slide-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sparkle Animations */
.sparkle {
    position: absolute;
    font-size: 1.5rem;
    z-index: 2;
    animation: sparkleFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.sparkle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Content Side */
.promo-content {
    position: relative;
    color: var(--white);
    animation: slideInRight 0.8s ease-out;
}

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

.promo-badge-floating {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-highlight {
    display: block;
    font-size: 1.2rem;
    color: #FFE55C;
    margin-top: 0.2rem;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 229, 92, 0.5), 0 0 20px rgba(255, 229, 92, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 229, 92, 0.8), 0 0 30px rgba(255, 229, 92, 0.5);
    }
}

.promo-description {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    opacity: 0.95;
    font-weight: 300;
}

.promo-benefits {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-promo-book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-orange);
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

.btn-promo-book:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-promo-book:hover .btn-arrow {
    transform: translateX(5px);
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .promo-ad-section {
        padding: 1.5rem 0;
    }
    
    .promo-ad-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .promo-carousel {
        height: 200px;
    }
    
    .promo-content {
        text-align: center;
    }
    
    .promo-title {
        font-size: 1.3rem;
    }
    
    .promo-highlight {
        font-size: 1.1rem;
    }
    
    .promo-benefits {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .promo-ad-section {
        padding: 1.2rem 0;
    }
    
    .promo-ad-container {
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .promo-carousel {
        height: 180px;
        border-radius: 15px;
    }
    
    .promo-slide-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
        bottom: 15px;
        left: 15px;
    }
    
    .sparkle {
        font-size: 1.2rem;
    }
    
    .promo-badge-floating {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    
    .promo-title {
        font-size: 1.2rem;
    }
    
    .promo-highlight {
        font-size: 1rem;
    }
    
    .promo-description {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .promo-benefits {
        gap: 0.5rem;
    }
    
    .benefit-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }
    
    .btn-promo-book {
        padding: 0.7rem 1.3rem;
        font-size: 0.75rem;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .promo-carousel {
        height: 160px;
    }
    
    .promo-title {
        font-size: 1.1rem;
    }
    
    .promo-highlight {
        font-size: 0.95rem;
    }
    
    .promo-description {
        font-size: 0.7rem;
    }
}

/* Reviews & Stats Section */
.reviews-stats-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Reviews Slider */
.reviews-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.review-slide {
    text-align: left;
    color: var(--white);
    padding: 0 1rem;
    animation: fadeInOut 8s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    10%, 90% { opacity: 1; transform: translateY(0); }
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-weight: 300;
}

.reviewer-name {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
    flex: 1;
    padding: 0.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-decimal {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.3rem;
    opacity: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .reviews-stats-section {
        padding: 1.8rem 0;
    }
    
    .reviews-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-slide {
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-decimal {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .reviews-stats-section {
        padding: 1.5rem 0;
    }
    
    .reviews-stats-wrapper {
        gap: 1rem;
    }
    
    .review-slide {
        padding: 0 1rem;
    }
    
    .stars {
        font-size: 0.8rem;
    }
    
    .review-text {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .reviewer-name {
        font-size: 0.7rem;
    }
    
    .stats-container {
        gap: 0.8rem;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        padding: 0.3rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-decimal {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .reviews-stats-section {
        padding: 1.2rem 0;
    }
    
    .stats-container {
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-decimal {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .review-text {
        font-size: 0.7rem;
    }
}

/* ============================
   Gallery Page Styles
   ============================ */

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.gallery-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.gallery-section {
    padding: 60px 0 60px;
    background: #f8f8f8;
    min-height: 100vh;
}

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

.gallery-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-orange);
    display: inline-block;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.zoom-modal.active {
    display: flex;
}

.zoom-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.zoom-caption {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.close-zoom:hover {
    color: var(--primary-orange);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .gallery-hero {
        height: 30vh;
        min-height: 250px;
        margin-top: 70px;
    }

    .gallery-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

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

    .gallery-section {
        padding: 40px 0 40px;
    }

    .gallery-container {
        padding: 0 10px;
    }

    .gallery-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

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

    .gallery-item {
        margin: 0;
    }

    .gallery-item img {
        height: 200px;
        width: 100%;
    }

    .zoom-caption {
        font-size: 1rem;
        margin-top: 15px;
        padding: 8px 15px;
    }

    .close-zoom {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .zoom-content {
        max-width: 95%;
        max-height: 95%;
    }

    .zoom-image {
        max-height: 80vh;
    }
}

/* Gallery Promotional Section */
.gallery-promo {
    background: var(--dark-red);
    padding: 25px 20px;
    margin-bottom: 0;
}

.gallery-promo-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.promo-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.promo-btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Seamless footer connection */
.gallery-promo + .footer {
    margin-top: 0;
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .gallery-promo {
        padding: 20px 15px;
    }

    .gallery-promo-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .promo-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .promo-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .gallery-promo {
        padding: 22px 20px;
    }

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

    .promo-btn {
        padding: 11px 30px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item img {
        height: 220px;
    }
}

/* ============================
   Booking Page Styles
   ============================ */

/* Booking Hero Section */
.booking-hero {
    position: relative;
    height: 35vh;
    min-height: 280px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.booking-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.booking-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Booking Form Section */
.booking-form-section {
    padding: 60px 20px;
    background: #f5f5f5;
    min-height: 70vh;
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.booking-form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 15px;
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f9f9f9;
    cursor: not-allowed;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.booking-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-submit-booking {
    flex: 1;
    min-width: 200px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-booking:hover:not(:disabled) {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-submit-booking:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-whatsapp-booking {
    flex: 1;
    min-width: 200px;
    background: #25D366;
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp-booking:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-booking svg {
    width: 20px;
    height: 20px;
}

/* ========================
   Floating Buttons
======================== */
.floating-whatsapp,
.floating-scroll-top {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    text-decoration: none;
}

.floating-whatsapp {
    bottom: 30px;
    right: 20px;
    background: #25D366;
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-scroll-top {
    bottom: 30px;
    left: 20px;
    background: var(--primary-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-scroll-top svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.floating-scroll-top:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.4);
}

/* ========================
   Newsletter Section
======================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 40px 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.newsletter-btn {
    padding: 14px 35px;
    background: var(--white);
    color: var(--primary-red);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-message {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.newsletter-message.success {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.newsletter-message.error {
    background: rgba(255, 107, 53, 0.2);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.booking-success {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    animation: slideDown 0.5s ease-out;
}

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

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 15px;
    animation: scaleIn 0.6s ease-out;
}

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

.booking-success h3 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.booking-success p {
    color: #155724;
    font-size: 1rem;
    margin-bottom: 8px;
}

.success-follow-up {
    font-weight: 600;
    font-size: 1.05rem !important;
    margin-top: 12px !important;
    padding: 12px;
    background: rgba(21, 87, 36, 0.1);
    border-radius: 5px;
}

.booking-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.error-icon {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 10px;
}

.booking-error p {
    color: #721c24;
    font-size: 1rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .booking-hero {
        height: 25vh;
        min-height: 220px;
        margin-top: 70px;
    }

    /* Floating Buttons Mobile */
    .floating-whatsapp,
    .floating-scroll-top {
        width: 45px;
        height: 45px;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 15px;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .floating-scroll-top {
        bottom: 20px;
        left: 15px;
    }

    .floating-scroll-top svg {
        width: 18px;
        height: 18px;
    }

    /* Newsletter Mobile */
    .newsletter-section {
        padding: 30px 20px;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-content h3 {
        font-size: 1.4rem;
    }

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

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }


    .booking-hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

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

    .booking-form-section {
        padding: 40px 10px;
    }

    .booking-container {
        padding: 0;
    }

    .booking-form-card {
        padding: 25px 15px;
        border-radius: 0;
    }

    .booking-form-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .booking-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-submit-booking,
    .btn-whatsapp-booking {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
        min-width: auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .booking-container {
        max-width: 95%;
    }

    .booking-form-card {
        padding: 40px 35px;
    }
}
