:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --tertiary-dark: #3a3a3a;
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c42;
    --orange-light: #ffa366;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --text-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
    padding-top: 80px;
}

/* Utility Classes */
.text-orange {
    color: var(--orange-primary) !important;
}

.bg-orange {
    background-color: var(--orange-primary) !important;
}

.btn-orange {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--orange-secondary);
    border-color: var(--orange-secondary);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline-orange {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background-color: var(--orange-primary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.bg-dark-secondary {
    background-color: var(--secondary-dark);
}

.badge.bg-outline-orange {
    background: transparent !important;
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 8px 12px;
}

.hover-orange:hover {
    color: var(--orange-primary) !important;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 0.98) !important;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.brand-text {
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--orange-primary) !important;
    background: rgba(255, 107, 53, 0.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(45, 45, 45, 0.8)),
                url('../images/hotel_hero_top.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badges {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-badges .badge {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 500;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--orange-primary);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Quick Info */
.quick-info {
    background: var(--secondary-dark);
    border-top: 2px solid var(--orange-primary);
}

.info-card {
    background: var(--tertiary-dark);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

.info-card i {
    font-size: 1.5rem;
    min-width: 40px;
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 2px;
}

/* About Section */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Service Cards */
.service-card {
    background: var(--tertiary-dark);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

/* Pricing */
.pricing-card {
    background: var(--tertiary-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.pricing-header {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    padding: 1.5rem;
    text-align: center;
}

.pricing-header h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.pricing-body {
    padding: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.pricing-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.pricing-item.orange {
    background: rgba(255, 107, 53, 0.2);
}

.pricing-footer {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 107, 53, 0.05);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Contact */
.contact-card {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

.contact-item h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Footer */
footer {
    border-top: 1px solid var(--tertiary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Service Image Card */
.service-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-image-card img {
    transition: transform 0.3s ease;
}

.service-image-card:hover img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-badge .badge {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 25px;
}

/* Service Content */
.service-content {
    padding-left: 2rem;
}

.service-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon-header i {
    font-size: 2.5rem;
}

.service-icon-header h2 {
    margin: 0;
    color: var(--text-light);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--tertiary-dark);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.feature-item-large:hover {
    border-color: var(--orange-primary);
    transform: translateX(5px);
}

.feature-item-large i {
    font-size: 1.5rem;
    min-width: 40px;
}

.feature-item-large h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Prestations Cards */
.prestations-card {
    background: var(--tertiary-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prestations-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
}

.prestations-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

.prestations-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.prestations-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.prestations-content h3 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.prestations-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Additional Services */
.additional-services {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--tertiary-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-mini-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.service-mini-card i {
    font-size: 1.2rem;
    min-width: 30px;
}

.service-mini-card h6 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .service-icon-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-icon-header h2 {
        font-size: 1.8rem;
    }
    
    .prestations-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .features-list {
        gap: 1rem;
    }
    
    .feature-item-large {
        padding: 0.75rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .service-mini-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .feature-item-large {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}


/* JavaScript Enhanced Styles */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.hotel-logo i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.loading-spinner {
    margin-top: 2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.image-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: var(--orange-primary);
}

.image-modal-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    padding: 1rem;
    border-radius: 10px;
    color: white;
    z-index: 1500;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification-error {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.notification-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #000;
}

.notification-info {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: #000;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
}

/* Modal Enhancements */
.border-orange {
    border-color: var(--orange-primary) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.3s both;
}

/* Hover Effects */
.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Counter Styles */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

/* Parallax */
.parallax {
    transform: translateZ(0);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .image-modal-content {
        max-width: 95%;
    }
}


/* Tarifs Page Specific Styles */

/* Pricing Table */
.pricing-table {
    background: var(--tertiary-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.pricing-header {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    padding: 2rem;
}

.pricing-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.pricing-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.pricing-body {
    padding: 0;
}

.pricing-items {
    padding: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.pricing-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.pricing-item.featured {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.pricing-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pricing-info {
    display: flex;
    align-items: center;
}

.pricing-info i {
    font-size: 1.2rem;
    min-width: 30px;
}

.pricing-info h5 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.pricing-price {
    text-align: right;
}

.pricing-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.pricing-price small {
    color: var(--text-muted);
    display: block;
}

/* Pricing Sidebar */
.pricing-sidebar {
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    margin: 1.5rem;
}

.pricing-sidebar h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.additional-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-service.highlighted {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    border: none;
}

.additional-service:last-child {
    border-bottom: none;
}

.service-info {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.service-price {
    font-weight: 600;
    color: var(--orange-primary);
    font-size: 1.1rem;
}

/* Payment Methods */
.payment-section {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-method {
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.payment-method h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Reservation Info Card */
.reservation-info-card {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.reservation-content h3 {
    color: var(--text-light);
    font-weight: 600;
}

.contact-quick {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Additional Info */
.additional-info {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.additional-info h4 {
    color: var(--text-light);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--tertiary-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.info-item i {
    font-size: 1.2rem;
    min-width: 24px;
}

.info-item h6 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-table {
        margin-bottom: 2rem;
    }
    
    .pricing-sidebar {
        margin: 1rem 0 0 0;
    }
    
    .pricing-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-quick {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reservation-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .pricing-header {
        padding: 1.5rem;
    }
    
    .pricing-sidebar,
    .payment-section,
    .reservation-info-card,
    .additional-info {
        padding: 1.5rem;
    }
    
    .pricing-price .price {
        font-size: 1.2rem;
    }
}

/* Contact Page Specific Styles */

/* Contact Cards */
.contact-card {
    background: var(--tertiary-dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.contact-card h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-card a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--orange-secondary) !important;
}

/* Contact Form */
.contact-form-section {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: var(--secondary-dark);
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-select option {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

/* Form Check Styles */
.form-check-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.form-check-input {
    background-color: var(--secondary-dark);
    border-color: var(--orange-primary);
}

.form-check-input:checked {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.form-check-input:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.form-check-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Captcha Section */
.captcha-section {
    background: var(--secondary-dark);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.captcha-question {
    color: var(--text-light);
    font-weight: 500;
}

.captcha-input {
    max-width: 80px;
}

/* Map Section */
.map-section {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Location Info */
.location-info {
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.location-info h4 {
    color: var(--text-light);
    font-weight: 600;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--tertiary-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.transport-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.transport-item i {
    font-size: 1.2rem;
    min-width: 40px;
}

.transport-item strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

/* Quick Contact Bar */
.quick-contact-bar {
    border-top: 2px solid var(--orange-primary);
}

.quick-contact-bar h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading State */
.contact-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.contact-form.loading .btn {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-section,
    .map-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-check-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .captcha-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .captcha-input {
        max-width: 100%;
    }
    
    .transport-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .quick-contact-bar .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Animation for successful form submission */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.form-success {
    animation: successPulse 0.6s ease-in-out;
}

/* Presentation Page Specific Styles */

/* Hero Section Small */
.hero-section-small {
    height: 50vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.9)),
                url('../images/hotel_exterior.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--orange-secondary) !important;
}

/* Presentation Image */
.presentation-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.presentation-image img {
    transition: transform 0.3s ease;
}

.presentation-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-content .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
}

/* Highlight Box */
.highlight-box {
    background: var(--tertiary-dark);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange-primary);
    margin-top: 2rem;
}

.highlight-box i {
    font-size: 2rem;
}

/* Team Card */
.team-card {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-avatar i {
    color: var(--text-dark);
}

.team-qualities .badge {
    font-size: 0.85rem;
    padding: 6px 10px;
}

/* Location Features */
.location-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.feature-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row i {
    font-size: 1.2rem;
    min-width: 40px;
}

/* References Section */
.references-card {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.references-header i {
    font-size: 3rem;
}

.reference-item {
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.reference-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.reference-item i {
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    border-top: 1px solid var(--tertiary-dark);
}

.cta-section h3 {
    color: var(--text-light);
}

/* Active Navigation */
.nav-link.active {
    color: var(--orange-primary) !important;
    background: rgba(255, 107, 53, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section-small {
        height: 40vh;
    }
    
    .team-card,
    .references-card {
        padding: 1.5rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .team-avatar i {
        font-size: 2rem;
    }
}

/* Presentation Page Specific Styles */

/* Hero Section Small */
.hero-section-small {
    height: 50vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.9)),
                url('../images/hotel_exterior.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--orange-secondary) !important;
}

/* Presentation Image */
.presentation-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.presentation-image img {
    transition: transform 0.3s ease;
}

.presentation-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-content .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
}

/* Highlight Box */
.highlight-box {
    background: var(--tertiary-dark);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange-primary);
    margin-top: 2rem;
}

.highlight-box i {
    font-size: 2rem;
}

/* Team Card */
.team-card {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-avatar i {
    color: var(--text-dark);
}

.team-qualities .badge {
    font-size: 0.85rem;
    padding: 6px 10px;
}

/* Location Features */
.location-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.feature-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row i {
    font-size: 1.2rem;
    min-width: 40px;
}

/* References Section */
.references-card {
    background: var(--tertiary-dark);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.references-header i {
    font-size: 3rem;
}

.reference-item {
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.reference-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.reference-item i {
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    border-top: 1px solid var(--tertiary-dark);
}

.cta-section h3 {
    color: var(--text-light);
}

/* Active Navigation */
.nav-link.active {
    color: var(--orange-primary) !important;
    background: rgba(255, 107, 53, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section-small {
        height: 40vh;
    }
    
    .team-card,
    .references-card {
        padding: 1.5rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .team-avatar i {
        font-size: 2rem;
    }
}

