/* Global Styles */
body {
    margin: 0;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    background: #0d1b12;
    color: #fff;
    overflow-x: hidden;
}

/* Loading Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1b12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease 2s forwards;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #ffe044;
    border-bottom-color: #ffe044;
    animation: spin 2s linear infinite;
    position: relative;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 224, 68, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo i {
    color: #ffe044;
    font-size: 30px;
}

.loader-text {
    margin-top: 30px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    background: rgba(13,27,18,0.85);
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100;
    box-sizing: border-box;
    transition: padding 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 15px 60px;
    background: rgba(13,27,18,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.nav-item a {
    color: #bfc8c2;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.2s;
}

.nav-item.active a, .nav-item a:hover {
    color: #ffe044;
}

.nav-item.active a::after, .nav-item a:hover::after {
    content: '';
    display: block;
    margin: 4px auto 0;
    width: 24px;
    height: 3px;
    background: #ffe044;
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Mobile Navigation Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffe044;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Terms and Privacy Section */
.terms-privacy-section {
    padding: 120px 20px 80px;
    background: #0d1b12;
    color: #fff;
    min-height: 80vh;
}

.terms-privacy-section .container {
    max-width: 900px;
    margin: 0 auto;
    background: #1a2a20;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.terms-privacy-section h1 {
    font-size: 2.8rem;
    color: #ffe044;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 224, 68, 0.3);
    padding-bottom: 20px;
}

.terms-privacy-section h2 {
    font-size: 2rem;
    color: #ffe044;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 224, 68, 0.2);
    padding-bottom: 10px;
}

.terms-privacy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.terms-privacy-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.terms-privacy-section ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.terms-privacy-section strong {
    color: #ffe044;
}

.terms-privacy-section a {
    color: #ffe044;
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-privacy-section a:hover {
    text-decoration: underline;
    color: #ffc107;
}

/* Responsive adjustments for terms and privacy */
@media (max-width: 768px) {
    .terms-privacy-section .container {
        padding: 25px;
    }

    .terms-privacy-section h1 {
        font-size: 2.2rem;
    }

    .terms-privacy-section h2 {
        font-size: 1.8rem;
    }

    .terms-privacy-section p,
    .terms-privacy-section ul li {
        font-size: 1rem;
    }
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(13, 27, 18, 0.98);
    z-index: 99;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-overlay.active {
    height: 100vh;
}

.signin-link {
    color: #222;
    background: #ffe044;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.signin-link:hover {
    background: #fff;
    color: #0d1b12;
}

.book-btn {
    background: #ffe044;
    color: #222;
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.book-btn:hover {
    background: #fff;
    color: #0d1b12;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

.admin-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.admin-link i {
    font-size: 0.8rem;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffe044;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 224, 68, 0.2);
    color: #0d1b12;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #fff;
}

.section-subtitle {
    color: #bfc8c2;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.section-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,18,0.7);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.primary-btn {
    background: #ffe044;
    color: #0d1b12;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.secondary-btn {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-btn:hover {
    background: #fff;
    color: #0d1b12;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
    background: #0d1b12;
    color: #fff;
    padding: 80px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 1.3rem;
    margin: 0 0 25px 0;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffe044;
}

.footer-description {
    color: #bfc8c2;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background: #ffe044;
    color: #0d1b12;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bfc8c2;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffe044;
    transform: translateX(5px);
}

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

.contact-info li {
    margin-bottom: 15px;
    color: #bfc8c2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info li a {
    color: #ffe044;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li i {
    color: #ffe044;
    margin-top: 5px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bfc8c2;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #ffe044;
    box-shadow: 0 0 0 2px rgba(255, 224, 68, 0.2);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffe044' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-submit {
    background: #ffe044;
    color: #0d1b12;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Card Styles */
.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
    color: #333;
}

.card-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: #0d1b12;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Fullscreen Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 18px 30px;
    }
    .navbar.scrolled {
        padding: 12px 30px;
    }
    .nav-links {
        gap: 20px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 18px 24px;
    }
    
    .navbar.scrolled {
        padding: 12px 24px;
    }
    
    nav, .nav-links {
        display: none;
    }
    
    /* Hide navigation action buttons on mobile */
    .navbar .nav-actions {
        display: none;
    }
    
    .nav-overlay .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .nav-overlay .nav-item a {
        font-size: 1.4rem;
        color: #fff;
    }
    
    .nav-overlay .nav-actions {
        display: flex;
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-overlay .signin-link,
    .nav-overlay .book-btn,
    .nav-overlay .admin-link {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
    
    .nav-overlay .admin-link {
        width: auto;
        height: auto;
        border-radius: 6px;
        padding: 12px 30px;
    }
    
    .nav-item.active a::after, .nav-item a:hover::after {
        margin: 8px auto 0;
        width: 40px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 15px 16px;
    }
    
    .navbar.scrolled {
        padding: 10px 16px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-overlay .nav-links {
        gap: 20px;
    }
    
    .nav-overlay .nav-item a {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

