/* Add Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Prevent iPhone/Safari from overriding phone number link colors and styles */
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* Main header */
.main-header {
    position: relative;
    z-index: 1000;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

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

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #7D8745;
    line-height: 1;
}

.company-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #666;
    line-height: 1;
    margin-top: 2px;
}

/* Navigation menu - moved to the right */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #7D8745;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7D8745;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Phone button */
.phone-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #7D8745;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header .phone-button + .phone-button {
    margin-left: 15px;
}

.phone-button:hover {
    background-color: #666E38;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.phone-button i {
    margin-right: 5px;
}

/* Mobile navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Responsive styles for navigation */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-open .nav-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-open .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-open .hamburger {
        background-color: transparent;
    }
    
    .nav-open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-open .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    
    .logo {
        flex: 0 0 auto;
        margin-right: auto;
    }

    .logo-image {
        height: 56px;
    }

    .company-name {
        font-size: 30px;
    }

    .company-tagline {
        font-size: 14px;
    }
    
    .phone-button {
        /* Keep phone button visible on mobile as icon */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        margin-left: 10px;
    }
    
    .phone-button span {
        display: none; /* Hide text, keep icon */
    }
    
    .phone-button i {
        margin-right: 0;
        font-size: 16px;
    }
    
    .mobile-nav-toggle {
        display: block !important;
        margin-left: auto;
        order: 3;
        position: relative;
        z-index: 1001;
    }
    
    /* Add phone button to the mobile menu when open */
    .nav-open .nav-links {
        padding-bottom: 15px;
    }
    
    .nav-open .nav-menu::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: #eee;
        margin: 10px 0;
    }
    
    .nav-open .nav-menu {
        padding-bottom: 15px;
    }
    
    /* Show a larger phone button at the bottom of the mobile menu */
    .nav-open .nav-menu::before {
        content: 'Call Us: (206) 354-7712';
        display: block;
        padding: 15px 20px;
        color: #7D8745;
        font-weight: bold;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 6px;
    }

    .logo-image {
        height: 50px;
    }

    .company-name {
        font-size: 26px;
    }

    .company-tagline {
        font-size: 13px;
    }

    .phone-button {
        width: 36px;
        height: 36px;
        margin-left: 5px;
    }
    
    .phone-button i {
        font-size: 14px;
    }
    
    .mobile-nav-toggle {
        width: 40px;
        height: 40px;
    }
}

/* Hero banner with adjusted text position */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.7) 15%, 
        rgba(0,0,0,0.4) 30%, 
        rgba(0,0,0,0.1) 45%, 
        rgba(0,0,0,0) 60%);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content .container {
    padding-left: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 450px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #7D8745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #666E38;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: #fff;
}

.welcome-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.welcome-content {
    flex: 1;
}

.welcome-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.welcome-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.secondary-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #7D8745;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #7D8745;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #7D8745;
    color: white;
}

.welcome-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #7D8745;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
}

/* Facility Showcase */
.facility-showcase {
    padding: 80px 0;
    background-color: #fff;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 250px;
}

.showcase-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
}

.showcase-caption h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.showcase-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: #7D8745;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

.testimonial-content {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #7D8745;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #7D8745;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.contact-info, .hours {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p, .hours p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i, .hours i {
    margin-right: 10px;
    color: #7D8745;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Modal for Facility Showcase */
.showcase-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* General mobile improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .welcome-section,
    .core-values-section,
    .facility-showcase,
    .services-preview,
    .testimonials,
    .cta-section,
    .facility-gallery,
    .mission-vision,
    .team,
    .why-choose-us,
    .services-detail,
    .contact-info-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .value-card,
    .service-card,
    .faq-item {
        padding: 25px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.large {
        grid-column: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-banner {
        height: 450px;
    }
    
    .hero-content .container {
        max-width: 90%;
        padding-left: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-image img {
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .hero-content {
        justify-content: center;
        text-align: center;
    }
    
    .hero-content .container {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 1.5rem;
    }
    
    /* Improve mobile navigation */
    .nav-open .nav-links a {
        font-size: 1.2rem;
        padding: 18px 20px;
    }
    
    /* Make phone button more prominent on very small screens */
    .nav-open .nav-menu::before {
        font-size: 1.1rem;
        padding: 20px;
    }
}

/* About page styles */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.about-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    padding: 0 20px;
}

.about-image-container {
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.mission-vision-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-vision {
    padding: 80px 0;
    background-color: #fff;
}

.mission-vision .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
}

.mission h3, .vision h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #7D8745;
}

.team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.team-member-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.qualifications {
    margin-top: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.qualifications h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.qualifications ul {
    list-style-type: none;
    padding: 0;
}

.qualifications li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.qualifications li:before {
    content: '✓';
    color: #7D8745;
    margin-right: 10px;
    font-weight: bold;
}

.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #7D8745;
}

/* Services page styles */
.services-hero {
    background-color: #7D8745;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.services-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive styles for services page */
@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 50px 0;
    }
    
    .services-content h2 {
        font-size: 2rem;
    }
}

.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #7D8745;
}

.service-description ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.service-description li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.service-description li:before {
    content: '✓';
    color: #7D8745;
    margin-right: 10px;
    font-weight: bold;
}

/* Contact page styles */
.contact-hero {
    background-color: #7D8745;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive styles for contact page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 50px 0;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
}

.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-details h3, 
.contact-form h3,
.map-section h3,
.faq-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #7D8745;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #7D8745;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #7D8745;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #7D8745;
    outline: none;
    box-shadow: 0 0 0 3px rgba(125, 135, 69, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #7D8745;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.submit-button:hover {
    background-color: #666E38;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.map-section {
    padding: 60px 0;
    background-color: #f5f9f5;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #7D8745;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive styles for contact page */
@media (max-width: 992px) {
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-details h3, 
    .contact-form h3,
    .map-section h3,
    .faq-section h3 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Facility Gallery Section */
.facility-gallery {
    position: relative;
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.gallery-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.facility-gallery .container {
    position: relative;
    z-index: 1;
}

.facility-gallery h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-filter {
    background-color: transparent;
    border: 2px solid #7D8745;
    color: #7D8745;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover {
    background-color: rgba(125, 135, 69, 0.1);
}

.gallery-filter.active {
    background-color: #7D8745;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 50px;
    font-family: 'Montserrat', sans-serif;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.modal-prev,
.modal-next {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(255,255,255,0.4);
}

/* Responsive styles for gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter {
        width: 80%;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-navigation {
        padding: 0 20px;
    }
}

/* Care Assessment CTA Section */
.care-assessment-cta {
    background-color: #f5f9f5;
    padding: 60px 0;
    border-top: 1px solid rgba(125, 135, 69, 0.1);
    border-bottom: 1px solid rgba(125, 135, 69, 0.1);
    margin: 40px 0;
}

.care-assessment-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.care-assessment-content {
    flex: 2;
}

.care-assessment-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.care-assessment-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.care-assessment-button {
    flex: 1;
    text-align: center;
}

.assessment-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #7D8745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.assessment-button:hover {
    background-color: #666E38;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Responsive styles for care assessment section */
@media (max-width: 768px) {
    .care-assessment-container {
        flex-direction: column;
        text-align: center;
    }
    
    .care-assessment-content h3 {
        font-size: 1.6rem;
    }
    
    .care-assessment-button {
        margin-top: 20px;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.thank-you-content i {
    font-size: 5rem;
    color: #7D8745;
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.thank-you-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: #7D8745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #666E38;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #7D8745;
    text-decoration: none;
    border: 2px solid #7D8745;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(125, 135, 69, 0.1);
    transform: translateY(-3px);
}


/* Responsive styles for about page */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .team-member-image {
        height: 250px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .mission-vision .container {
        flex-direction: column;
    }
    
    .mission, .vision {
        min-width: unset;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 250px;
    }
    
    .about-image-container {
        height: 200px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

/* Fix hero image on mobile */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 450px; /* Reduced height on mobile */
    }
    
    .hero-image img {
        object-position: center center; /* Adjust focus point for mobile */
    }
    
    .hero-content h1 {
        font-size: 2.5rem; /* Smaller font on mobile */
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Improve navigation spacing for mobile */
@media (max-width: 768px) {
    .nav-open .nav-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-open .nav-links {
        flex-direction: column;
        padding: 0;
    }
    
    .nav-open .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-open .nav-links a {
        display: block;
        padding: 15px 20px; /* Larger tap target */
        border-bottom: 1px solid #eee;
        font-size: 1.1rem; /* Larger font */
    }
    
    .nav-open .nav-links a:hover {
        background-color: #f8f8f8;
    }
}

/* General responsive improvements */
@media (max-width: 768px) {
    /* Improve section spacing */
    section {
        padding: 40px 0;
    }
    
    /* Adjust grid layouts */
    .values-grid, .services-grid, .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Adjust welcome section */
    .welcome-section .container {
        flex-direction: column;
    }
    
    .welcome-content, .welcome-image {
        width: 100%;
    }
    
    .welcome-image {
        margin-top: 30px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* Single column layouts on very small screens */
    .values-grid, .services-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust font sizes */
    h2.section-title {
        font-size: 1.8rem;
    }
    
    p.section-intro {
        font-size: 1rem;
    }
} 

.virtual-tour {
    margin: 50px 0;
    text-align: center;
}

.virtual-tour h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.virtual-tour iframe {
    border: 2px solid #ccc;
    border-radius: 8px;
}