:root {
    --page-bg: #eef3ef;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --text-primary: #163126;
    --text-secondary: #4a6358;
    --accent: #1f7a52;
    --accent-dark: #14563a;
    --accent-soft: #dff3e8;
    --border-soft: rgba(255, 255, 255, 0.65);
    --shadow-soft: 0 18px 40px rgba(17, 45, 31, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(86, 184, 129, 0.14), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, var(--page-bg) 100%);
}

body.modal-open {
    overflow: hidden;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.5rem;
}

header {
    background: linear-gradient(135deg, rgba(27, 94, 62, 0.96), rgba(20, 56, 41, 0.92));
    color: #fff;
    padding: 1.25rem 1.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(14, 39, 28, 0.18);
}

header h1 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    justify-self: end;
}

.menu-toggle-bar {
    width: 1.2rem;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    justify-self: end;
}

.site-nav ul {
    list-style: none;
    padding: 0.45rem;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
}

.site-nav ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    color: #f7fff9;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
    background: #ffffff;
    color: var(--accent-dark);
    transform: translateY(-1px);
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

section {
    margin-bottom: 2rem;
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(10px);
}

section h2 {
    margin-top: 0;
    color: var(--accent-dark);
}

.section-kicker,
.calendar-panel-kicker {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}

.availability-section {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 1.5rem;
    align-items: start;
}

.availability-intro p:last-child {
    margin-bottom: 0;
}

.availability-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.5rem;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-primary);
    font-weight: 600;
}

.legend-swatch {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-swatch-available {
    background: #dff3e8;
}

.legend-swatch-reserved {
    background: #fef3c7;
}

.legend-swatch-booked {
    background: #f4b8bc;
}

.legend-swatch-today {
    background: #ffffff;
    border: 2px solid var(--accent-dark);
}

.availability-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 247, 0.96));
    border-radius: 24px;
    border: 1px solid rgba(31, 122, 82, 0.12);
    padding: 1.25rem;
}

.calendar-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.calendar-panel-header h3 {
    margin: 0;
    color: var(--accent-dark);
}

.calendar-panel-note {
    display: none;
    margin: 0;
    max-width: 18rem;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.calendar-data-status {
    margin: 0 0 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    background: rgba(223, 243, 232, 0.7);
    color: var(--accent-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.calendar-data-status.is-error {
    background: rgba(246, 199, 203, 0.6);
    color: #7a2330;
}

.availability-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.calendar-month {
    background: #ffffff;
    border: 1px solid rgba(31, 122, 82, 0.12);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 12px 28px rgba(18, 52, 36, 0.08);
}

.calendar-month-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.calendar-month-title {
    margin: 0;
    font-size: 1.15rem;
    color: var(--accent-dark);
}

.calendar-month-summary {
    display: none;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: auto repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}

.calendar-weeknumber {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.55;
    padding: 0 0.2rem;
    white-space: nowrap;
}

.calendar-weekdays {
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.calendar-day,
.calendar-day-empty {
    aspect-ratio: 1;
    border-radius: 16px;
}

.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    background: #dff3e8;
    color: var(--accent-dark);
    font-weight: 700;
    border: 1px solid transparent;
}

.calendar-day.is-booked {
    background: #f6c7cb;
    color: #7a2330;
}

.calendar-day.is-reserved {
    background: #fef3c7;
    color: #92400e;
}

.calendar-day.is-today {
    border-color: var(--accent-dark);
    box-shadow: inset 0 0 0 2px rgba(20, 86, 58, 0.14);
}

.calendar-day-empty {
    background: transparent;
}

.booking-request-section {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-info p:last-of-type {
    margin-bottom: 1.5rem;
}

.company-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1.25rem;
    margin: 0;
}

.company-details dt {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 0.1rem;
    white-space: nowrap;
}

.company-details dd {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
}

.company-details a {
    color: var(--accent);
    text-decoration: none;
}

.company-details a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.5rem 1.5rem;
}

.feature-list li {
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.25rem 0;
}

.pricing-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pricing-item {
    background: var(--accent-soft);
    border-radius: 16px;
    padding: 0.85rem 1.5rem;
    text-align: center;
}

.pricing-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.booking-request-copy p:last-child {
    margin-bottom: 0;
}

.booking-request-form {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    padding: 1.25rem;
    border: 1px solid rgba(31, 122, 82, 0.12);
}

.form-status {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-status.is-success {
    display: block;
    background: #dff3e8;
    color: #14563a;
    border: 1px solid rgba(20, 86, 58, 0.2);
}

.form-status.is-error {
    display: block;
    background: #fde8e8;
    color: #7a2330;
    border: 1px solid rgba(122, 35, 48, 0.2);
}

.booking-date-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.booking-date-grid > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
}

.hero-copy h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-copy p {
    max-width: 38rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(31, 122, 82, 0.2);
    transition: transform 0.25s ease, background 0.25s ease;
}

.button-link:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.button-link.secondary {
    background: var(--accent-soft);
    color: var(--accent-dark);
    box-shadow: none;
}

.button-link.secondary:hover {
    background: #cce9d8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    display: block;
    border-radius: 28px;
    min-height: 340px;
    max-height: 520px;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(18, 52, 36, 0.18);
}

.hero-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-dark);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(18, 52, 36, 0.16);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: bold;
}

form input,
form textarea,
form button {
    padding: 0.8rem;
    border: 1px solid #cfd8d3;
    border-radius: 14px;
    font-size: 1rem;
}

form button {
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.minibus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.minibus-gallery img {
    width: 100%;
    height: 230px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    cursor: zoom-in;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.modal.is-open {
    display: flex;
}

.modal-panel {
    position: relative;
    width: min(92vw, 1100px);
    max-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.62);
}

.modal-prev {
    left: 0.75rem;
}

.modal-next {
    right: 0.75rem;
}

.modal-content {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 8rem);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.close {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
    text-shadow: 0 2px 8px #000;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
}

#caption {
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    max-width: min(92vw, 900px);
    word-break: break-word;
}

footer {
    background:
        radial-gradient(circle at top right, rgba(85, 164, 119, 0.18), transparent 24%),
        linear-gradient(135deg, #173027, #101f19);
    color: #fff;
    padding: 1.5rem;
    position: relative;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

.footer-brand {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-tagline,
.footer-meta {
    margin: 0;
    color: rgba(235, 248, 240, 0.82);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        display: none;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        width: 100%;
        border-radius: 24px;
        padding: 0.6rem;
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
    }

    .site-nav ul li {
        width: 100%;
    }

    .site-nav ul li a {
        width: 100%;
    }

    main {
        padding: 1rem;
    }

    section {
        padding: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .availability-section,
    .booking-request-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .calendar-panel-header {
        align-items: start;
        flex-direction: column;
    }

    .calendar-panel-note {
        max-width: none;
        text-align: left;
    }

    .booking-date-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        min-height: 240px;
        max-height: 360px;
    }

    .minibus-gallery {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-height: calc(100vh - 7rem);
    }

    .modal-nav {
        width: 3rem;
        height: 3rem;
        font-size: 1.8rem;
    }

    .modal-prev {
        left: 0.25rem;
    }

    .modal-next {
        right: 0.25rem;
    }

    .close {
        top: 0;
        right: 0;
        font-size: 2rem;
    }

    #caption {
        font-size: 1rem;
    }

    .footer-inner {
        justify-items: stretch;
    }

    .footer-nav {
        flex-direction: column;
    }

    .footer-nav a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.85rem 0.75rem;
    }

    main {
        padding: 0.75rem;
    }

    section {
        padding: 0.9rem;
        border-radius: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .availability-panel,
    .booking-request-form {
        padding: 1rem;
    }

    .availability-calendar {
        grid-template-columns: 1fr;
    }

    .calendar-weekdays,
    .calendar-grid {
        gap: 0.3rem;
        grid-template-columns: auto repeat(7, minmax(0, 1fr));
    }

    .calendar-day,
    .calendar-day-empty {
        border-radius: 14px;
    }

    .button-link {
        width: 100%;
    }

    .hero-image img {
        min-height: 220px;
        max-height: 300px;
    }

    .hero-badge {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        text-align: center;
    }

    .minibus-gallery img {
        height: 200px;
    }

    .modal-content {
        max-height: calc(100vh - 6.5rem);
    }

    .modal-panel {
        width: min(100vw, 1100px);
    }

    .modal-nav {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.6rem;
        background: rgba(0, 0, 0, 0.55);
    }

    .modal-prev {
        left: 0;
    }

    .modal-next {
        right: 0;
    }

    .close {
        top: -0.25rem;
        right: -0.25rem;
        font-size: 1.8rem;
        width: 2.75rem;
        height: 2.75rem;
    }

    #caption {
        font-size: 0.95rem;
    }
}