/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Garamond', 'Georgia', 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #1f3324;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1f3324;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    text-decoration: none;
    cursor: pointer;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.navbar-brand h1 {
    color: #fbd27a;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Georgia', 'Garamond', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    font-family: 'Garamond', 'Georgia', serif;
}

.nav-links a:hover {
    color: #fbd27a;
}

/* Floating Book Now Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(251, 210, 122, 0.95);
    color: #1f3324;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(251, 210, 122, 0.4);
}

.floating-book-btn:hover {
    background-color: #fbd27a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 210, 122, 0.6);
}

.floating-book-btn i {
    margin-right: 8px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
    flex: 0 0 auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fbd27a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f3324 0%, #2d4a37 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Georgia', 'Garamond', serif;
}

.hero-content p {
    font-size: 28px;
    margin-bottom: 40px;
    color: #fbd27a;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: #fbd27a;
    color: #1f3324;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #fbd27a;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #fbd27a;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #1f3324;
}

.about h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
    color: #fbd27a;
}

.about p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: #2d4a37;
    border-radius: 10px;
    transition: transform 0.3s ease;
    color: #f0f0f0;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature i {
    font-size: 48px;
    color: #fbd27a;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fbd27a;
}

.feature p {
    color: #e0e0e0;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1f3324 0%, #2d4a37 100%);
}

.services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #fbd27a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #2d4a37;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #f0f0f0;
    border-left: 5px solid #fbd27a;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-top: 4px solid #fbd27a;
}

.service-card h3 {
    font-size: 24px;
    color: #fbd27a;
    margin-bottom: 10px;
}

.service-card p:first-of-type {
    font-size: 20px;
    color: #fbd27a;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-card p:last-of-type {
    color: #e0e0e0;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f3324 0%, #2d4a37 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Georgia', 'Garamond', serif;
    color: #fbd27a;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background-color: #0f1810;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    margin: 10px 0;
}

.footer a {
    color: #fbd27a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Schedule Page */
.schedule-page {
    padding: 60px 20px;
    background-color: #1f3324;
}

.schedule-page h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #fbd27a;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: #2d4a37;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.schedule-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fbd27a;
    font-family: 'Garamond', 'Georgia', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #fbd27a;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background-color: #1f3324;
    color: #f0f0f0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbd27a;
    box-shadow: 0 0 5px rgba(251, 210, 122, 0.5);
    background-color: #1f3324;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #fbd27a;
    color: #1f3324;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #fff;
    color: #1f3324;
    box-shadow: 0 4px 15px rgba(251, 210, 122, 0.4);
}

.business-hours {
    flex: 1;
}

.business-hours h3 {
    font-size: 24px;
    color: #fbd27a;
    margin-bottom: 20px;
}

.hours-list {
    background-color: #1f3324;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #fbd27a;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #fbd27a;
    color: #e0e0e0;
}

.hour-item:last-child {
    border-bottom: none;
}

.contact-info p {
    margin: 15px 0;
    color: #e0e0e0;
}

.contact-info i {
    color: #fbd27a;
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: #fbd27a !important;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.parking-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #2d4a37;
    border-radius: 8px;
    border-left: 4px solid #fbd27a;
}

.parking-info h4 {
    color: #fbd27a;
    margin-bottom: 10px;
    font-family: 'Georgia', 'Garamond', serif;
}

.parking-info p {
    color: #e0e0e0;
    margin: 0;
}

/* Gallery Page */
.gallery-page {
    padding: 60px 20px;
    background-color: #1f3324;
}

.gallery-page h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    color: #fbd27a;
}

.gallery-subtitle {
    text-align: center;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    background-color: #2d4a37;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    text-align: center;
    color: white;
    z-index: 10;
}

.placeholder-text i {
    font-size: 48px;
    margin-bottom: 10px;
}

.placeholder-text p {
    font-size: 18px;
    font-weight: bold;
}

.gallery-caption {
    padding: 15px;
    background: #2d4a37;
    text-align: center;
    font-weight: bold;
    color: #fbd27a;
}

.gallery-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #2d4a37 0%, #1f3324 100%);
    border-radius: 10px;
    border: 2px solid #fbd27a;
}

.gallery-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fbd27a;
}

/* Location Page */
.location-page {
    padding: 60px 20px;
    background-color: #1f3324;
}

.location-page h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #fbd27a;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    background: #2d4a37;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 450px;
    width: 100%;
}

.location-details h3 {
    font-size: 24px;
    color: #fbd27a;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.detail-item i {
    font-size: 28px;
    color: #fbd27a;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 18px;
    color: #fbd27a;
    margin-bottom: 5px;
}

.detail-item p {
    color: #e0e0e0;
    margin: 0;
}

.detail-item a {
    color: #fbd27a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.hours-table {
    width: 100%;
    background-color: #1f3324;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid #fbd27a;
}

.hours-table tr {
    border-bottom: 1px solid #fbd27a;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 20px;
    text-align: left;
    color: #e0e0e0;
}

.hours-table td:first-child {
    font-weight: bold;
    color: #fbd27a;
}

.hours-table td:last-child {
    color: #e0e0e0;
    text-align: right;
}

.accessibility-section {
    background: #2d4a37;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #fbd27a;
}

.accessibility-section h3 {
    font-size: 28px;
    color: #fbd27a;
    margin-bottom: 25px;
}

.accessibility-section p {
    font-size: 18px;
    color: #e0e0e0;
    margin: 15px 0;
}

.accessibility-section i {
    color: #fbd27a;
    margin-right: 10px;
}

/* Reviews Page */
.reviews-page {
    padding: 60px 20px;
    background-color: #1f3324;
}

.reviews-page h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #fbd27a;
}

.rating-summary {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: #2d4a37;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 2px solid #fbd27a;
}

.rating-score h3 {
    font-size: 64px;
    color: #fbd27a;
    margin-bottom: 10px;
    font-weight: bold;
}

.rating-score .stars {
    font-size: 28px;
    color: #fbd27a;
    margin-bottom: 10px;
}

.rating-score p {
    color: #e0e0e0;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: #2d4a37;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    color: #f0f0f0;
    border-left: 4px solid #fbd27a;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info h4 {
    font-size: 18px;
    color: #fbd27a;
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: #999;
}

.review-card .stars {
    font-size: 16px;
    color: #fbd27a !important;
}

.review-card .stars i {
    color: #fbd27a !important;
}

.review-card h5 {
    font-size: 18px;
    color: #fbd27a;
    margin-bottom: 10px;
}

.review-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Leave Review Section */
.leave-review-section {
    background: #2d4a37;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #fbd27a;
}

.leave-review-section h3 {
    font-size: 28px;
    color: #fbd27a;
    margin-bottom: 10px;
}

.leave-review-section > p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.review-form {
    margin-top: 25px;
}

.rating-selector {
    display: flex;
    gap: 10px;
    font-size: 0;
    justify-content: flex-start;
}

.rating-selector input[type="radio"] {
    display: none;
}

.rating-selector label {
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    body {
        padding-top: 70px;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1f3324;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
    }

    .nav-links.active {
        max-height: 400px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #2d4a37;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        color: #ffffff;
    }

    .navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .navbar-brand {
        flex: 0 1 auto;
        order: 1;
    }

    .navbar-brand h1 {
        font-size: 22px;
    }

    .hamburger {
        order: 2;
    }

    .book-btn {
        order: 3;
        padding: 10px 16px;
        font-size: 14px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-content h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .schedule-content,
    .location-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 300px !important;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-placeholder {
        height: 200px;
    }

    .about,
    .services,
    .schedule-page,
    .gallery-page,
    .location-page,
    .reviews-page {
        padding: 40px 20px;
    }

    .about h2,
    .services h2,
    .gallery-page h2,
    .location-page h2,
    .reviews-page h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    body {
        padding-top: 70px;
    }

    .navbar .container {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }

    .navbar-brand {
        gap: 8px;
        order: 1;
        flex: 0 1 auto;
    }

    .navbar-brand img {
        height: 55px;
    }

    .navbar-brand h1 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .hamburger {
        order: 2;
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1f3324;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 450px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #2d4a37;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        color: #ffffff;
    }

    .hero {
        padding: 80px 20px;
        min-height: 450px;
    }

    .hero-content h2 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .about h2,
    .services h2,
    .gallery-page h2,
    .location-page h2,
    .reviews-page h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .schedule-content,
    .location-content {
        padding: 15px;
        gap: 20px;
    }

    .business-hours,
    .schedule-form {
        padding: 0;
        min-width: 0;
        width: 100%;
        overflow-x: hidden;
    }
}

/* Services - Detailed Page */
.services-detailed {
    padding: 80px 20px;
    background-color: #1f3324;
}

.services-menu {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-category {
    background-color: #2d4a37;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-category.active {
    border-color: #fbd27a;
    box-shadow: 0 8px 20px rgba(251, 210, 122, 0.3);
}

.category-header {
    background: linear-gradient(135deg, #2d4a37 0%, #1f3324 100%);
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    user-select: none;
}

.category-header:hover {
    background: linear-gradient(135deg, #3d5a47 0%, #2d4a37 100%);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #fbd27a;
    margin-bottom: 8px;
}

.category-title i {
    font-size: 24px;
}

.category-subtitle {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    padding-left: 39px;
}

.toggle-btn {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fbd27a;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn[aria-expanded="true"] {
    transform: translateY(-50%) rotate(180deg);
}

.category-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    background-color: #1f3324;
    padding: 0 30px;
}

.category-content.active {
    opacity: 1;
    padding: 30px;
}

.service-group {
    margin-bottom: 35px;
}

.service-group h4 {
    font-size: 16px;
    color: #fbd27a;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #fbd27a;
    padding-bottom: 10px;
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px;
    margin-bottom: 15px;
    background-color: #2d4a37;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #fbd27a;
}

.service-item:hover {
    background-color: #3d5a47;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(251, 210, 122, 0.2);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-name {
    flex: 1;
    color: #f0f0f0;
    font-weight: 500;
    font-size: 16px;
}

.service-price {
    color: #fbd27a;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 20px;
    text-align: right;
}

.service-desc {
    font-size: 13px;
    color: #d0d0d0;
    font-style: italic;
    margin-top: 5px;
    margin-left: 0;
}

.services-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #2d4a37 0%, #1f3324 100%);
    border-radius: 10px;
    border: 2px solid #fbd27a;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h3 {
    font-size: 28px;
    color: #fbd27a;
    margin-bottom: 25px;
    font-family: 'Georgia', 'Garamond', serif;
}

/* Responsive Design - Services */
@media (max-width: 768px) {
    .services-detailed {
        padding: 40px 20px;
    }

    .services-menu {
        gap: 15px;
    }

    .category-header {
        padding: 18px 20px;
    }

    .category-title {
        font-size: 17px;
        gap: 12px;
    }

    .category-title i {
        font-size: 22px;
    }

    .category-subtitle {
        padding-left: 34px;
        font-size: 12px;
    }

    .toggle-btn {
        right: 20px;
        font-size: 18px;
    }

    .category-content {
        padding: 0 20px;
    }

    .category-content.active {
        padding: 20px;
    }

    .service-item {
        flex-direction: column;
        padding: 15px;
        margin-bottom: 12px;
    }

    .service-item:hover {
        transform: translateX(0);
    }

    .service-name {
        font-size: 15px;
    }

    .service-price {
        margin-left: 0;
        margin-top: 8px;
        text-align: left;
        font-size: 14px;
    }

    .service-group h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .services-cta {
        padding: 35px 25px;
    }

    .services-cta h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .services-detailed {
        padding: 25px 15px;
    }

    .services-menu {
        gap: 12px;
    }

    .category-header {
        padding: 14px 15px;
    }

    .category-header:hover {
        background: linear-gradient(135deg, #2d4a37 0%, #1f3324 100%);
    }

    .toggle-btn {
        right: 15px;
        font-size: 16px;
    }

    .category-title {
        font-size: 15px;
        gap: 8px;
    }

    .category-title i {
        font-size: 18px;
    }

    .category-subtitle {
        font-size: 11px;
        padding-left: 26px;
    }

    .category-content {
        padding: 0 12px;
    }

    .category-content.active {
        padding: 12px;
    }

    .service-group {
        margin-bottom: 25px;
    }

    .service-group h4 {
        font-size: 13px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .service-item {
        padding: 12px;
        margin-bottom: 10px;
        border-left: 3px solid #fbd27a;
    }

    .service-name {
        font-size: 13px;
    }

    .service-price {
        font-size: 13px;
        margin-top: 6px;
    }

    .service-desc {
        font-size: 12px;
        margin-top: 4px;
    }

    .services-cta {
        padding: 25px 20px;
        margin: 20px auto;
    }

    .services-cta h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    input[type="date"],
    input[type="time"],
    input[type="email"],
    input[type="tel"],
    input[type="text"],
    input[type="number"] {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }

    input[type="date"] {
        max-width: 180px;
    }

    .submit-button {
        padding: 12px;
        font-size: 16px;
    }

    .map-container {
        height: 250px;
    }

    .map-container iframe {
        height: 250px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder {
        height: 180px;
    }

    .placeholder-text i {
        font-size: 36px;
    }

    .placeholder-text p {
        font-size: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card h5 {
        font-size: 16px;
    }

    .review-card p {
        font-size: 14px;
    }

    .rating-summary {
        padding: 25px 15px;
    }

    .rating-score h3 {
        font-size: 48px;
    }

    .rating-score .stars {
        font-size: 20px;
    }

    .leave-review-section {
        padding: 20px;
    }

    .detail-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .detail-item i {
        font-size: 24px;
    }

    .hours-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .accessibility-section {
        padding: 20px;
    }

    .accessibility-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .accessibility-section p {
        font-size: 14px;
        margin: 10px 0;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about,
    .services,
    .schedule-page,
    .gallery-page,
    .location-page,
    .reviews-page {
        padding: 30px 15px;
    }

    .service-card {
        padding: 25px;
    }

    .feature {
        padding: 20px;
    }

    .feature i {
        font-size: 36px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature p {
        font-size: 14px;
    }

    .footer {
        padding: 20px 15px;
    }

    .footer p {
        font-size: 14px;
    }

    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
    }
}
