/**
 * COPYRIGHT 2023 Micah De Silva
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(90deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.motto {
    font-size: 0.7rem;
    font-weight: normal;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-button {
/*    background: /*linear-gradient(45deg, #4a7c59, #2d5016);*/
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    text-decoration: none;
    /*font-weight: bold;*/
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    outline: 1px solid #e9ecef;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5)),
        url('hero_back.avif');
    background-size: cover;
    background-position: center;
    padding: 150px 0 25px;
    text-align: center;
    color: white;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlights Carousel in Hero */
.highlights-carousel {
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.highlights-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.highlight-track {
    display: flex;
    transition: transform 0.5s ease;
}

.highlight-item {
    min-width: 100%;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 150px;
}

.highlight-item:hover {
    opacity: 0.9;
}

.highlight-text {
    font-size: 1.4rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-cta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-nav {
    display: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #4a7c59;
    color: #4a7c59;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #4a7c59;
    color: white;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #4a7c59;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4a7c59;
}

.loading-highlights {
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #4a7c59, #2d5016);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Text Styling */
.hero-text {
    margin: 0 auto;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: auto;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #4a7c59, #2d5016);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 1rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-duration {
    background: linear-gradient(45deg, #4a7c59, #2d5016);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.service-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.btn-outline:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-2px);
}

.btn-small.btn-primary {
    background: linear-gradient(45deg, #4a7c59, #2d5016);
}

.btn-small.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item span {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #4a7c59;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c59;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4a7c59;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #2d5016 0%, #4a7c59 100%);
        flex-direction: column;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.mobile-open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        transition: background-color 0.2s ease;
        padding: 0px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .cta-button {
        display: block;
        text-align: center;
        border-bottom: none;
    }

    .nav-links .cta-button:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .mobile-menu {
        display: flex;
        cursor: pointer;
    }

    .mobile-menu span {
        transition: all 0.3s ease;
    }

    /* Hamburger animation */
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7.5px, -7.5px);
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .motto {
        font-size: 0.6rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    
    .highlights-container {
        margin: 0 0.5rem;
        max-width: calc(100vw - 1rem);
    }
    
    .highlight-item {
        padding: 1.5rem 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

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

    .service-image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin: -25px auto 1rem auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

/* Consultation CTA Section */
.consultation-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    border-radius: 15px;
    border: 2px solid #e0f2e8;
}

.consultation-content h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultation-content p {
    color: #4a7c59;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.consultation-cta .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}

/* Info Modal Styles */
.info-modal {
    max-width: 650px;
    max-height: 80vh;
    overflow-y: auto;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0f2e8;
}

.info-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-title-section h2 {
    color: #2d5016;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.info-duration {
    background: #4a7c59;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.info-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-details {
    margin-bottom: 1.5rem;
}

.info-details h3 {
    color: #2d5016;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-details ul {
    list-style: none;
    padding: 0;
}

.info-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.4;
}

.info-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.info-approach {
    background: #f8fffe;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
    margin-bottom: 1.5rem;
}

.info-approach h3 {
    color: #2d5016;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-approach p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.info-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-actions .btn {
    min-width: 150px;
}

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .consultation-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .consultation-content h3 {
        font-size: 1.3rem;
    }

    .consultation-content p {
        font-size: 1rem;
    }

    .info-modal {
        margin: 2% auto;
        width: 95%;
        max-height: 90vh;
    }

    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .info-title-section h2 {
        font-size: 1.5rem;
    }

    .info-actions {
        flex-direction: column;
        align-items: center;
    }

    .info-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4a7c59 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #4a7c59;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffa500;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    position: relative;
    flex: 1;
    overflow-y: auto;
    max-height: 250px;
    padding-right: 1rem;
}

.testimonial-card blockquote::-webkit-scrollbar {
    width: 6px;
}

.testimonial-card blockquote::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.testimonial-card blockquote::-webkit-scrollbar-thumb {
    background: #4a7c59;
    border-radius: 3px;
}

.testimonial-card blockquote::-webkit-scrollbar-thumb:hover {
    background: #2d5016;
}

.testimonial-card blockquote::before {
    content: """;
    font-size: 4rem;
    color: #4a7c59;
    position: absolute;
    left: -1rem;
    top: -1rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #2d5016;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile responsiveness for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card blockquote::before {
        font-size: 3rem;
        left: -0.5rem;
        top: -0.5rem;
    }
}

/* Reviews loading and functionality styles */
.loading-message {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

.read-more-btn {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more-btn:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

/* Full review modal styles */
.full-review-content {
    text-align: center;
}

.full-review-content h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.full-review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    text-align: left;
    margin: 0;
    padding: 1.5rem;
    background: #f8fffe;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
    position: relative;
}

.full-review-text::before {
    content: """;
    font-size: 3rem;
    color: #4a7c59;
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Section title for testimonials */
.testimonials .section-title {
    margin-bottom: 3rem;
}

.testimonials .section-title h2 {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials .section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile styles for new review elements */
@media (max-width: 768px) {
    .full-review-content h3 {
        font-size: 1.3rem;
    }
    
    .full-review-text {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .testimonials .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonials .section-title p {
        font-size: 1rem;
    }
}
