/* Common CSS Variables and Base Styles */
:root {
    --primary: #1a1a2e;
    --secondary: #e74c3c;
    --accent: #00d4ff;
    --light: #f8f9fa;
    --gray: #f5f7fa;
    --text: #2c3e50;
    --text-light: #6c757d;
    --border: #e9ecef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Common Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Typography */
html {
    font-size: 100%;
}

@media (max-width: 1200px) {
    html {
        font-size: 95%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 90%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 85%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 80%;
    }
}

/* Com
mon Button Styles */
.btn {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.2rem);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    border: none;
    cursor: pointer;
}

.btn-small {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
    background: #c0392b;
}

/* Common Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Book Now Button - Left Side */
.book-now-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.book-now-btn i {
    font-size: 1.3rem;
}

.book-now-btn:hover {
    padding-right: 2rem;
    background: #c0392b;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px);
}

/* Booking Popup */
.booking-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 2500;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 1rem;
    overflow-y: auto;
}

.booking-popup.active {
    display: flex;
    opacity: 1;
}

.booking-content {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow);
    animation: popupFade 0.4s ease forwards;
}

@keyframes popupFade {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.booking-close:hover {
    color: var(--secondary);
}

.booking-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

/* Mobile Responsive for Common Elements */
@media (max-width: 768px) {
    .book-now-btn {
        display: none;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .booking-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .booking-content {
        padding: 1.5rem;
    }
}