/* Saklı Bahçe Esenköy - Ana Sayfa Özel Stilleri */

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--secondary-dark) 0%, 
        var(--primary-dark) 100%
    );
    /* Mobile scroll fix */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slide.entering {
    opacity: 0;
    visibility: visible;
    transform: scale(1.08);
    z-index: 3; /* Higher z-index for crossfade effect */
    animation: slideEnter 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide.leaving {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1; /* Lower z-index, stays behind */
    animation: slideLeave 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Slide transition animations */
@keyframes slideEnter {
    0% {
        opacity: 0;
        transform: scale(1.08) translateY(20px);
        filter: blur(2px);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.02) translateY(5px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes slideLeave {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    40% {
        opacity: 0.6;
        transform: scale(0.98);
        filter: blur(0.5px);
    }
    100% {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
        filter: blur(1px);
    }
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    transition: all 2s ease;
    transform: scale(1);
}

.slide.active .slide-background {
    transform: scale(1.03);
}

.slide.entering .slide-background {
    transform: scale(1.1);
    filter: brightness(0.5);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.leaving .slide-background {
    transform: scale(0.95);
    filter: brightness(0.8) blur(1px);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Slide Elements */
.slide-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(179, 69, 18, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Content animations for entering slides */
.slide.entering .slide-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.entering .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide.entering .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slide.entering .slide-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* Content animations for active slides */
.slide.active .slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Content animations for leaving slides */
.slide.leaving .slide-badge,
.slide.leaving .slide-title,
.slide.leaving .slide-description,
.slide.leaving .slide-buttons {
    opacity: 0;
    transform: translateY(-20px);
    transition-duration: 0.6s;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 8px 30px rgba(179, 69, 18, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(179, 69, 18, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Arrow Navigation - Positioned relative to hero-slider */
.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slider-prev {
    left: 50px; /* Increased margin for better separation */
}

.hero-slider .slider-next {
    right: 50px; /* Increased margin for better separation */
}

.hero-slider .slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin-bottom: 12px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Slide Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Features Section */
.features-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

/* Services Grid */
.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 0.9;
}

.service-item:hover .service-content {
    transform: translateY(0);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

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

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(179, 69, 18, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(179, 69, 18, 0.1);
    border-color: var(--primary);
}

/* Contact Section */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input {
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(179, 69, 18, 0.1);
}

/* Map Section */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 1;
}

.floating-1 {
    top: 10%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.floating-2 {
    top: 60%;
    left: 5%;
    animation: float 5s ease-in-out infinite reverse;
}

.floating-3 {
    bottom: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 50%, 
        transparent 100%
    );
    margin: 4rem auto;
    max-width: 200px;
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Statistics Counter */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Reservation Button */
.reservation-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(179, 69, 18, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.reservation-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(179, 69, 18, 0.5);
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .hero-slider .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .hero-slider .slider-prev {
        left: 30px;
    }
    
    .hero-slider .slider-next {
        right: 30px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        padding: 0 1rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 90%;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .slide-badge {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 16px;
        max-width: 320px;
        margin: 0 auto;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn-primary, .btn-secondary {
        padding: 16px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        min-height: 56px;
        border-radius: 28px;
        transition: all 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .slide-content {
        padding: 2rem 0;
    }
    
    .slide-content .container {
        padding: 0 1rem;
    }
    
    .hero-slider .slider-arrow {
        display: none;
    }
    
    
    .scroll-indicator {
        bottom: 120px;
        right: 20px;
        scale: 0.8;
    }
    
    .slider-navigation {
        bottom: 30px;
    }
    
    .slider-dots {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }
    
    .hero-slider {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.875rem;
        line-height: 1.2;
        padding: 0 1.5rem;
        margin-bottom: 16px;
    }
    
    .slide-description {
        font-size: 1rem;
        max-width: 95%;
        padding: 0 1.5rem;
        margin-bottom: 24px;
        line-height: 1.4;
    }
    
    .slide-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .slide-buttons {
        max-width: 280px;
        padding: 0 1.5rem;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 52px;
        border-radius: 26px;
    }
    
    .slide-content .container {
        padding: 0 1.5rem;
    }
    
    /* "Yakında" badge mobile fixes */
    .btn-secondary.opacity-50 {
        position: relative;
        overflow: visible;
    }
    
    .btn-secondary.opacity-50 .absolute {
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 8px;
        white-space: nowrap;
        top: -6px;
        right: -6px;
    }
    
    
    .scroll-indicator {
        bottom: 100px;
        right: 15px;
        scale: 0.7;
    }
    
    .slider-navigation {
        bottom: 20px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        max-width: 80%;
    }
    
    .slide-badge {
        margin-bottom: 15px;
    }
    
    .slide-buttons {
        gap: 12px;
        max-width: 400px;
        flex-direction: row;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
        width: auto;
    }
    
    
    .slider-navigation {
        bottom: 15px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Touch and Swipe Support */
.slider-wrapper {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slide {
    will-change: transform, opacity;
}

/* Performance Optimizations */
.slide-background {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Preloader for slider */
.slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    color: white;
    font-size: 18px;
    display: none;
}

.slider-loading.active {
    display: block;
}

/* Welcome Section */
.welcome-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
}

.welcome-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.welcome-section .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Stats Animation */
.stat-number {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
}

/* Floating Badge Animation */
.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

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

/* Enhanced Animations */
.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

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

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

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

/* Badge and Tag Styles */
.section-badge {
    background: linear-gradient(135deg, rgba(179, 69, 18, 0.1), rgba(179, 69, 18, 0.05));
    border: 1px solid rgba(179, 69, 18, 0.2);
    backdrop-filter: blur(10px);
}

/* Grid Hover Effects */
.service-grid {
    display: grid;
    gap: 2rem;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Button Styles */
.service-card button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-card button:hover::before {
    left: 100%;
}

/* Mobile Responsive Enhancements */
@media (max-width: 1024px) {
    .welcome-section {
        padding: 4rem 0;
    }
    
    .services-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .welcome-section .grid {
        gap: 3rem;
    }
    
    .service-card {
        transform: translateY(20px);
        margin-bottom: 1rem;
    }
    
    .service-card.visible {
        transform: translateY(0);
    }
    
    .welcome-section h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .services-section h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 3rem 0;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .welcome-section h2 {
        font-size: 2rem;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
}

/* Features Section */
.features-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(179, 69, 18, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(75, 103, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

/* Feature Card Icons */
.feature-card .w-16 {
    position: relative;
    z-index: 2;
}

.feature-card .w-16::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.feature-card:hover .w-16::after {
    width: 120%;
    height: 120%;
}

/* Stats Section */
.feature-counter {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-counter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Bars */
.progress-bar {
    width: 0;
    transition: width 2s ease-in-out;
    transition-delay: 0.3s;
}

.progress-bar.animate {
    width: var(--target-width);
}

/* Staggered Feature Cards Animation */
.feature-card:nth-child(1) { 
    animation-delay: 0.1s; 
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) { 
    animation-delay: 0.2s; 
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) { 
    animation-delay: 0.3s; 
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) { 
    animation-delay: 0.4s; 
    transition-delay: 0.4s;
}

.feature-card:nth-child(5) { 
    animation-delay: 0.5s; 
    transition-delay: 0.5s;
}

.feature-card:nth-child(6) { 
    animation-delay: 0.6s; 
    transition-delay: 0.6s;
}

/* Enhanced Glass Effect for Bottom CTA */
.features-section .bg-white\/80 {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Animations */
@keyframes featureFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.feature-card .w-8 {
    animation: featureFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(odd) .w-8 {
    animation-delay: 1.5s;
}

/* Counter Animation Keyframes */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-counter.counting {
    animation: countUp 0.6s ease-out;
}

/* Enhanced Button Styles */
.features-section button,
.features-section a.border-2 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features-section button::before,
.features-section a.border-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.features-section button:hover::before,
.features-section a.border-2:hover::before {
    left: 100%;
}

/* Mobile Responsive Features */
@media (max-width: 1024px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .feature-card {
        transform: translateY(30px);
    }
    
    .features-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
    
    .features-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .feature-card {
        padding: 1.5rem;
        transform: translateY(20px);
        margin-bottom: 1rem;
    }
    
    .feature-card .w-16 {
        width: 3rem;
        height: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-counter {
        font-size: 2.5rem;
    }
    
    .features-section .grid.md\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-section .bg-white\/80 {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2rem 0;
    }
    
    .features-section h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-counter {
        font-size: 2rem;
    }
    
    .features-section .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Parallax Background Enhancement */
@media (min-width: 769px) {
    .features-section .bg-fixed {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .features-section .bg-fixed {
        background-attachment: scroll;
    }
}

/* Gallery Section */
.gallery-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Gallery Filter Tabs */
.gallery-filter {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.gallery-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.gallery-filter:hover::before {
    left: 100%;
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 69, 18, 0.3);
}

/* Gallery Grid - Masonry Layout */
.gallery-grid {
    column-gap: 1.5rem;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item.filtering {
    transition: all 0.5s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    pointer-events: none;
}

/* Gallery Item Hover Effects */
.gallery-item .relative {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Gallery Overlay Effects */
.gallery-item .absolute.inset-0 {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Gallery Item Content Animation */
.gallery-item h3 {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.1s;
}

.gallery-item p {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.2s;
}

.gallery-item:hover h3,
.gallery-item:hover p {
    transform: translateY(0);
}

/* Expand Icon Animation */
.gallery-item .w-12.h-12 {
    transform: scale(0) rotate(180deg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .w-12.h-12 {
    transform: scale(1) rotate(0deg);
}

/* Lightbox Styles */
#lightbox {
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#lightbox.show {
    opacity: 1;
}

#lightbox img {
    max-height: calc(100vh - 8rem);
    transition: all 0.3s ease;
    border-radius: 1rem;
}

#lightbox .absolute.top-6.right-6 button {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#lightbox .absolute.top-6.right-6 button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Lightbox Navigation */
#lightbox-prev,
#lightbox-next {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

#lightbox-prev:hover,
#lightbox-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Lightbox Info */
#lightbox .absolute.bottom-4 {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

#lightbox.show .absolute.bottom-4 {
    transform: translateY(0);
    opacity: 1;
}

/* Gallery CTA Section */
.gallery-section .bg-gradient-to-r {
    position: relative;
    overflow: hidden;
}

.gallery-section .bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 69, 18, 0.05) 0%, transparent 70%);
    animation: galleryGlow 8s ease-in-out infinite;
}

@keyframes galleryGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Filter Animation Effect */
.filter-animation {
    position: relative;
}

.filter-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(179, 69, 18, 0.1) 0%, 
        rgba(75, 103, 88, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

.gallery-item:hover .filter-animation::after {
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        columns: 3;
        column-gap: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        columns: 2;
        column-gap: 0.75rem;
    }
    
    .gallery-item {
        margin-bottom: 0.75rem;
    }
    
    .gallery-filter {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    #lightbox .absolute.left-4,
    #lightbox .absolute.right-4 {
        display: none; /* Hide navigation arrows on mobile */
    }
    
    #lightbox img {
        max-height: calc(100vh - 4rem);
        border-radius: 0.5rem;
    }
    
    #lightbox .absolute.bottom-4 {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    #lightbox .absolute.bottom-4 .bg-black\/50 {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 2rem 0;
    }
    
    .gallery-grid {
        columns: 1;
        column-gap: 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-filter {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-section h2 {
        font-size: 1.75rem;
    }
    
    .gallery-section .flex-wrap {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .gallery-filter {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}

/* Performance Optimizations */
.gallery-item img {
    will-change: transform;
    backface-visibility: hidden;
}

.gallery-item .relative {
    will-change: transform;
}

/* Lazy Loading Effect */
.gallery-item img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item img[loading="lazy"].loaded {
    opacity: 1;
}

/* Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:active .relative {
        transform: translateY(-2px);
    }
    
    .gallery-item:active img {
        transform: scale(1.05);
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
}

/* Rating Cards */
.rating-card {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 1rem;
}

.rating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Platform Buttons */
.testimonials-section a[href*="maps.app.goo.gl"],
.testimonials-section a[href*="tripadvisor"] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonials-section a[href*="maps.app.goo.gl"]::before,
.testimonials-section a[href*="tripadvisor"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.testimonials-section a[href*="maps.app.goo.gl"]:hover::before,
.testimonials-section a[href*="tripadvisor"]:hover::before {
    left: 100%;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-track {
    will-change: transform;
}

.testimonial-slide {
    transition: all 0.5s ease;
}

.testimonial-slide .bg-white {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-slide:hover .bg-white {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Quote Styling */
.testimonial-slide .relative p {
    position: relative;
    z-index: 2;
}

.testimonial-slide .fas.fa-quote-left,
.testimonial-slide .fas.fa-quote-right {
    z-index: 1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-slide:hover .fas.fa-quote-left,
.testimonial-slide:hover .fas.fa-quote-right {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Author Avatar Animation */
.testimonial-slide .w-12.h-12 {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-slide:hover .w-12.h-12 {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-slide .w-12.h-12::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.testimonial-slide:hover .w-12.h-12::after {
    left: 100%;
}

/* Carousel Navigation */
.carousel-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot:hover {
    transform: scale(1.3);
}

.carousel-dot.active {
    transform: scale(1.5);
}

#testimonials-prev,
#testimonials-next {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#testimonials-prev::before,
#testimonials-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 69, 18, 0.1), transparent);
    transition: left 0.5s;
}

#testimonials-prev:hover::before,
#testimonials-next:hover::before {
    left: 100%;
}

#testimonials-prev:hover,
#testimonials-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Star Animations */
.testimonials-section .fas.fa-star {
    transition: all 0.3s ease;
}

.rating-card:hover .fas.fa-star {
    transform: scale(1.2) rotate(15deg);
}

.rating-card:hover .fas.fa-star:nth-child(1) { animation-delay: 0.1s; }
.rating-card:hover .fas.fa-star:nth-child(2) { animation-delay: 0.2s; }
.rating-card:hover .fas.fa-star:nth-child(3) { animation-delay: 0.3s; }
.rating-card:hover .fas.fa-star:nth-child(4) { animation-delay: 0.4s; }
.rating-card:hover .fas.fa-star:nth-child(5) { animation-delay: 0.5s; }

/* Testimonial Images */
.testimonial-slide img {
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.testimonial-slide:hover img {
    filter: brightness(1) saturate(1.1);
    transform: scale(1.05);
}

/* CTA Section Animation */
.testimonials-section .bg-gradient-to-r {
    position: relative;
    overflow: hidden;
}

.testimonials-section .bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 69, 18, 0.03) 0%, transparent 70%);
    animation: testimonialGlow 10s ease-in-out infinite;
}

@keyframes testimonialGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

/* Mobile Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-slide .flex-col {
        gap: 1.5rem;
    }
    
    .testimonial-slide .lg\\:w-64 {
        width: 100%;
    }
    
    .testimonial-slide .lg\\:h-full {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .testimonial-slide .p-8 {
        padding: 1.5rem;
    }
    
    .testimonial-slide .lg\\:p-12 {
        padding: 1.5rem;
    }
    
    .testimonial-slide .text-lg {
        font-size: 1rem;
    }
    
    .testimonial-slide .pl-8 {
        padding-left: 2rem;
    }
    
    .testimonial-slide .fas.fa-quote-left,
    .testimonial-slide .fas.fa-quote-right {
        font-size: 2rem;
    }
    
    .rating-card .text-3xl {
        font-size: 2rem;
    }
    
    .rating-card {
        padding: 0.75rem;
    }
    
    .carousel-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platform-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .platform-links a {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-slide .p-8,
    .testimonial-slide .lg\\:p-12 {
        padding: 1rem;
    }
    
    .testimonial-slide .text-lg {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonial-slide .pl-8 {
        padding-left: 1.5rem;
    }
    
    .rating-card .text-3xl {
        font-size: 1.75rem;
    }
    
    .rating-card .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    #testimonials-prev,
    #testimonials-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Touch Swipe Support */
.carousel-track {
    touch-action: pan-x;
    user-select: none;
}

.testimonial-slide {
    will-change: transform;
}

/* Platform Integration Styles */
.platform-badge {
    animation: platformPulse 2s ease-in-out infinite;
}

/* SVG Icon Styles */
.testimonials-section svg,
.rating-card svg {
    transition: all 0.3s ease;
}

.testimonials-section svg:hover,
.rating-card:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* TripAdvisor Custom SVG Animations */
.testimonials-section svg circle,
.rating-card svg circle {
    animation: eyeBlink 4s ease-in-out infinite;
}

.testimonials-section svg circle:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes eyeBlink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

/* Platform Button Enhancement */
.testimonials-section a[href*="tripadvisor"] svg,
.social-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonials-section a[href*="tripadvisor"]:hover svg,
.social-icon:hover svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform: scale(1.1);
}

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

/* External Link Icons */
.testimonials-section .fa-external-link-alt {
    transition: all 0.3s ease;
}

.testimonials-section a:hover .fa-external-link-alt {
    transform: translateX(3px) translateY(-3px);
}

/* Accessibility Enhancements */
.testimonial-slide:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 1rem;
}

.carousel-dot:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Legacy Mobile Service Content */
@media (max-width: 768px) {
    .service-content {
        transform: translateY(0);
        position: relative;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .floating-element {
        display: none;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .reservation-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
