:root {
    --primary-color: #004d40; /* Dark Teal from Logo */
    --accent-color: #4caf50;  /* Turf Green */
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --text-dark: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 30px;
    transition: var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--accent-color);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1551958219-acbc608c6377?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,77,64,0.9), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.badge {
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.hero h1 {
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
}

.highlight {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    margin-right: 15px;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Features */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--accent-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    /* Hamburger Menu Icon */
    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 25px;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 11px;
    }

    .hamburger span:nth-child(3) {
        top: 22px;
    }

    .hamburger.active span:nth-child(1) {
        top: 11px;
        transform: rotate(135deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .hamburger.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-135deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .floating-btn span {
        display: none; /* Icon only on mobile to save space */
    }
    .hero-btns a {
        /* Add your styles here */
        backdrop-filter: blur(5px)
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image, .about-text {
    flex: 1;
    min-width: 350px;
}

/* Image Branding Effects */
.image-stack {
    position: relative;
    text-align: center;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(255,255,255,0) 70%);
    padding: 40px;
}

.main-logo-about {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Text Styling */
.sub-heading {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 15px 0 25px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.stat-item i {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-top: 5px;
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

.mission-statement {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-color) !important;
    margin: 30px 0 !important;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-text h2 {
        font-size: 2.2rem;
    }
    .about-wrapper {
        gap: 30px;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

/* Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 2px;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Form Styling */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--accent-color);
}

.w-100 {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s linear;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.1); /* Slow zoom effect */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,77,64,0.85) 30%, rgba(0,0,0,0.3) 100%);
}

/* Slider Dots Positioning */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

.booking-page { background: #eef2f3; }

.internal-nav { position: relative; background: var(--white); margin-bottom: 30px; }
.back-link { text-decoration: none; color: var(--primary-color); font-weight: 600; }

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 350px;
    gap: 25px;
    margin-top: 20px;
}

.booking-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.booking-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

/* Custom Date Picker */
.custom-date-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--primary-color);
}

/* Slot Styling */
.slots-grid { display: flex; flex-direction: column; gap: 20px; }
.slot-group h4 { margin-bottom: 10px; color: #888; font-size: 0.9rem; text-transform: uppercase; }
.slot-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; }

.slot {
    padding: 10px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.slot:hover { border-color: var(--accent-color); color: var(--accent-color); }
.slot.selected { background: var(--accent-color); color: white; border-color: var(--accent-color); }
.slot.booked { background: #eee; color: #ccc; cursor: not-allowed; border-color: #eee; }

/* Summary */
.summary-details { list-style: none; margin-top: 20px; }
.summary-details li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #eee; }
.summary-details li.total { border-top: 2px solid var(--light-bg); border-bottom: none; font-size: 1.2rem; margin-top: 10px; color: var(--accent-color); }

@media (max-width: 1100px) {
    .booking-grid { grid-template-columns: 1fr; }
}

/* Calendar Styling */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    border: none;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.cal-btn {
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.cal-btn:hover { background: var(--accent-color); color: white; }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.day-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    padding-bottom: 10px;
}

.day {
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

/* Color Coding */
.day.available {
    background-color: #e8f5e9; /* Light Green */
    color: #2e7d32;
}

.day.booked {
    background-color: #ffebee; /* Light Red */
    color: #c62828;
    cursor: not-allowed;
    opacity: 0.7;
}

.day.available:hover {
    background-color: var(--accent-color);
    color: white;
}

.day.selected {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(0,77,64,0.3);
}

.day.current {
    border: 2px solid var(--accent-color);
}

/* Legend Styling */
.status-legend {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    font-size: 0.8rem;
    justify-content: center;
}

.legend-item { display: flex; align-items: center; gap: 5px; }
.box { width: 12px; height: 12px; border-radius: 3px; }
.box.av { background: #e8f5e9; border: 1px solid #2e7d32; }
.box.bk { background: #ffebee; border: 1px solid #c62828; }
.box.sl { background: var(--primary-color); }

/* Slot Color Coding */
.slot.available {
    background-color: #e8f5e9; /* Light Green */
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.slot.booked {
    background-color: #ffebee; /* Light Red */
    border: 1px solid #ffcdd2;
    color: #c62828;
    cursor: not-allowed;
    /* We don't disable it so they can see the 'Booked' status info */
}

.slot.available:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.slot.selected {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
}

.highlight-date {
    font-weight: bold;
    color: var(--accent-color);
}

.month-year-wrapper { text-align: center; }
.month-year-wrapper h3 { font-size: 1.3rem; color: var(--primary-color); }
.month-year-wrapper span { font-size: 0.9rem; color: #888; font-weight: 600; }

.weekday-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #999;
    padding: 15px 0 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    min-height: 280px; /* Prevents layout jump when months change */
}

/* Holiday logic */
.day.holiday {
    background-color: #fff3e0; 
    color: #ef6c00;
    cursor: not-allowed;
    border: 1px dashed #ffe0b2;
}

.day.empty {
    cursor: default;
    background: transparent;
}

/* Bill Summary Styling */
.bill-details {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.bill-item-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    padding: 4px 0;
}

.total-row {
    margin-top: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.val-total { color: var(--accent-color); }

.empty-msg {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 10px 0;
}

/* Slot interaction */
.slot.available {
    background-color: #e8f5e9; /* Light Green */
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.slot.booked {
    background-color: #ffebee; /* Light Red */
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Pro Summary Card */
.summary-card-pro {
    background: #fff;
    border-radius: 24px;
    padding: 0; /* Managed by internal padding */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.summary-header {
    background: linear-gradient(135deg, var(--primary-color), #00796b);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.summary-header h3 { margin: 0; font-size: 1.1rem; border: none; padding: 0; color: white; }
.summary-header p { font-size: 0.8rem; opacity: 0.9; margin: 0; }

.receipt-body { padding: 25px; }

/* Bill Item Animation */
.bill-item-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8faf9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    border-left: 4px solid var(--accent-color);
    animation: slideIn 0.3s ease-out;
}

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

.bill-item-info h5 { margin: 0; font-size: 0.9rem; color: var(--primary-color); }
.bill-item-info span { font-size: 0.75rem; color: #888; }
.bill-price { font-weight: 700; color: var(--accent-color); }

.bill-divider {
    height: 2px;
    background: repeating-linear-gradient(to right, #eee, #eee 5px, transparent 5px, transparent 10px);
    margin: 20px 0;
}

.calculation-area { display: flex; flex-direction: column; gap: 10px; }
.calc-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: #666; }

.total-pro {
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Payment Button Pro */
.pay-btn-pro {
    width: 100%;
    padding: 20px;
    border: none;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pay-btn-pro:disabled { background: #ccc; cursor: not-allowed; }
.pay-btn-pro:not(:disabled):hover {
    background: var(--primary-color);
    gap: 25px; /* Smooth arrow slide */
}

.empty-state { text-align: center; padding: 30px 0; color: #bbb; }

.footer-links a {
    color: white;
    font-size: 15px;
}

/* Mobile Popup Navigation */
@media (max-width: 768px) {
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 77, 64, 0.98); /* Deep Teal from your logo */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        
        /* Hidden state for Popup effect */
        opacity: 0;
        visibility: hidden;
        transform: scale(1.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-links {
        list-style: none;
        text-align: center;
    }

    .nav-links li {
        margin: 20px 0;
        transform: translateY(30px);
        opacity: 0;
        transition: 0.4s ease;
    }

    .nav-overlay.open .nav-links li {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.2s;
    }

    .nav-links li a {
        color: white;
        text-decoration: none;
        font-size: 2rem;
        font-weight: 700;
        transition: color 0.3s;
    }

    .nav-links li a:hover {
        color: var(--accent-color);
    }

    /* Keep Hamburger on top of the popup */
    .hamburger {
        display: block;
        z-index: 2001; 
        position: relative;
    }

    /* Change Hamburger to White when popup is open */
    .hamburger.active span {
        background: white;
    }
}