:root {
 
    --primary-color: #006B3F;   
    --secondary-color: #FCD116; 
    --accent-color: #CE1126;    
    --star-color: #000000;     

    
    --dark-grey: #333333;
    --medium-grey: #555555;
    --light-grey: #f8f9facf; 
    --white-color: #ffffff;

  
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Nunito Sans', sans-serif;
    --base-font-size: 16px;
    --line-height-base: 1.7;

   
    --spacing-unit: 1rem;
    --border-radius-sm: 5px;  
    --border-radius-md: 10px;

   
    --shadow-light: 0 3px 6px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 5px 12px rgba(0, 0, 0, 0.12);
    --shadow-deep: 0 8px 15px rgba(0,0,0,0.15);

 
    --transition-speed: 0.3s;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fdfaf6;
    color: #333;
}
@keyframes fadeInAnimation {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-unit);
    line-height: 1.3;
}

h1 { font-size: calc(1.8rem + 1.5vw); font-weight: 700; } 
h2 { font-size: calc(1.5rem + 1vw); }
h3 { font-size: calc(1.1rem + 0.5vw); }

p {
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

img{
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm); 
}

ul{
    list-style: none;
}


.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 calc(var(--spacing-unit) * 1.5);
}

.bg-light {
    background-color: rgba(245, 245, 245, 0.76);
    font-weight: 800;
}

.text-center{
    text-align: center;
}


.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-medium); 
    height: 75px; 
    transition: background-color var(--transition-speed) ease; 
}

.navbar .logo a{
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--heading-font);
    transition: color var(--transition-speed) ease;
}

.navbar .logo a:hover{
    color: var(--dark-grey);
}

.navbar .nav-links{
    display: flex;
}

.navbar .nav-links li{
    margin-left: calc(var(--spacing-unit) * 1.8); 
}

.navbar .nav-links a{
    color: var(--medium-grey);
    font-weight: 500;
    padding: 8px 0; 
    position: relative;
    font-family: var(--heading-font);
    letter-spacing: 0.8px; 
    font-size: 1.05rem;
    transition: color var(--transition-speed) ease;
}


.navbar .nav-links a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0); 
    transform-origin: right; 
    transition: transform var(--transition-speed) ease-in-out;
}


.navbar .nav-links a.active::before{ 
    transform: scaleX(1);
    transform-origin: left; 
}

.navbar .nav-links a:hover{
    color: var(--dark-grey);
}


.burger {
    display: none;
    cursor: pointer;
    padding: 5px; 
}

.burger div {
    width: 30px;
    height: 3px;
    background-color: var(--dark-grey);
    margin: 6px 0; 
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
}


/* Booking Page Layout */
.booking-page-main {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: #fffefb;
}

.booking-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

/* Form Section */
.booking-form-section {
    flex: 1;
    min-width: 300px;
}

.booking-form-section h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

form fieldset {
    border: 2px solid #f6b93b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #fffaf3;
}

legend {
    font-weight: bold;
    font-size: 1.1rem;
    color: #d35400;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group-half {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9f9f9;
}

textarea {
    resize: vertical;
}

/* Quantity Selectors */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.quantity-selector button {
    padding: 0.3rem 0.6rem;
    font-size: 1rem;
    background-color: #f6b93b;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    background: #fff;
}

/* Payment Section */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.payment-option input {
    transform: scale(1.2);
}

.payment-details-area {
    margin-top: 1rem;
    background-color: #f3f3f3;
    padding: 1rem;
    border-radius: 6px;
}

.trust-signals {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #2c3e50;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 3
    0px 0;
    font-size: 0.9em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-content p {
    margin-bottom: 10px;
}

.social-links a {
    color: #eee;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #008080;
}

.booking-summary-section {
    flex: 0.8;
    min-width: 300px;
}

.summary-box {
    background-color: #fffef6;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.summary-box h2 {
    margin-bottom: 1rem;
    color: #d35400;
}

.summary-item {
    margin-bottom: 0.8rem;
}

.summary-pricing {
    margin-top: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-price strong {
    color: #e67e22;
    font-size: 1.1rem;
}

.summary-image img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Button Styles */
.button-base {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.button-primary {
    background-color: #d35400;
    color: white;
}

.button-primary:hover {
    background-color: #e67e22;
}

.terms-agreement {
    margin-bottom: 1rem;
}

.secure-info {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-page-main {
        padding: 1rem;
    }
}

@media (max-width: 992px) {
    html { font-size: 15.5px; }
    h1 { font-size: calc(1.7rem + 1.3vw); }
    h2 { font-size: calc(1.4rem + 0.9vw); }
    .hero-content h1 { font-size: calc(2.2rem + 1.8vw); }
    .navbar .nav-links li { margin-left: calc(var(--spacing-unit) * 1.5); }
 }
 
 
 @media (max-width: 768px) {
    html { font-size: 15px; }
 
    .navbar { padding: calc(var(--spacing-unit)*0.8) calc(var(--spacing-unit) * 1.5); height: 70px; }
 
 
    .nav-links {
        position: fixed; 
        right: -80%; 
        top: 0; 
        background-color: rgba(51, 51, 51, 0.98); 
        display: flex;
        flex-direction: column;
        width: 80%; 
        max-width: 320px;
        height: 100vh; 
        transform: translateX(0); 
        transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1); 
        padding: calc(var(--spacing-unit)*4) 0 0 0; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 1100; 
    }
 
    .nav-links.nav-active {
        right: 0; 
    }
 
    .nav-links li {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px); 
    }
    
    .nav-links.nav-active li {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.4s ease forwards, transform 0.4s ease forwards;
    }
    .nav-links.nav-active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.nav-active li:nth-child(2) { transition-delay: 0.25s; }
    .nav-links.nav-active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.nav-active li:nth-child(4) { transition-delay: 0.35s; }
    .nav-links.nav-active li:nth-child(5) { transition-delay: 0.4s; }
 
 
    .nav-links a {
        display: block;
        padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
        color: var(--white-color); 
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    .nav-links a::before { display: none; }
    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color); 
    }
 
    .burger {
        display: block; 
        z-index: 1200; 
        position: relative; 
    }
  
    .burger.toggle div { background-color: var(--white-color); } /* Assumes JS adds 'toggle' class */
    .burger.toggle .line1 { transform: rotate(-45deg) translate(-7px, 7px); }
    .burger.toggle .line2 { opacity: 0; transform: scale(0); }
    .burger.toggle .line3 { transform: rotate(45deg) translate(-7px, -7px); }
 }