:root {
    --primary-color: #FFC107;
    /* Yellow */
    --secondary-color: white;

    --tertiary-color: #333;
    /* Black */
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #fff;
    --dark: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
header {
    /* background: var(--white); */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5f8a32+0,81c341+100 */
    /* background: linear-gradient(to bottom, #5f8a32 0%, #81c341 100%); */
    background: #81c341;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-color);
}

.btn-book {
    background: var(--primary-color);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #ffdb4d;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    /* Increased height for better visibility */
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider {
    width: 100%;
    height: 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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay for readability */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.slide-caption h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Static Hero Content (Welcome Text) */
.hero-content-static {
    position: absolute;
    top: 20%;
    /* Positioned above slider captions */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    text-align: center;
    pointer-events: none;
    /* Let clicks pass through to slider */
}

.hero-content-static h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content-static p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-btns {
    pointer-events: auto;
    /* Re-enable clicks for buttons */
    margin-top: 1rem;
}

.hero-btns .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 0 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s;
    text-transform: uppercase;
}

.hero-btns .btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.arrow:hover {
    background: var(--primary-color);
    color: var(--dark);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* Indicators */
.indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
}

.indicator {
    cursor: pointer;
    text-align: center;
    color: #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator:hover,
.indicator.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.indicator-title {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
}

.indicator-desc {
    font-size: 0.7rem;
    display: none;
    /* Hide desc on small screens or by default */
}

.indicator.active .indicator-desc {
    display: block;
}

@media (min-width: 768px) {
    .indicator-desc {
        display: block;
    }
}

/* Services */
.services,
.about,
.contact-section {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--tertiary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Booking Form */
.booking-section {
    padding: 4rem 0;
    background: var(--white);
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.booking-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-block:hover {
    background: #0056b3;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
        /* Ensure above the nav menu */
        position: relative;
        /* Needed for z-index to work */
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* background: var(--white); */
        flex-direction: column;
        display: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: yellowgreen;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
}

.highlighted-phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .highlighted-phone {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .header-phone {
        display: flex;
        /* Show on mobile */
        /* order property removed to respect HTML structure (Logo -> Phone -> Nav) */
    }

    .highlighted-phone {
        font-size: 1.1rem;
        /* Smaller font size for mobile */
    }

    .logo img {
        height: 50px;
        /* Slightly smaller logo */
    }
}

/* Pricing Table */
.pricing-section {
    padding: 4rem 0;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table thead tr {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: left;
    font-weight: bold;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    border: 1px solid #dfdfdf
}

.pricing-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.pricing-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.pricing-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--secondary-color);
}

.pricing-table tbody tr:hover {
    background-color: #f1f1f1;
    color: var(--secondary-color);
}

.pricing-note {
    text-align: left;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Page Hero Image */
.page-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}