/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2d5a27;
    --color-primary-dark: #1e3d1a;
    --color-secondary: #8b7355;
    --color-accent: #c9a227;
    --color-dark: #555;
    --color-light: #f8f8f6;
    --color-white: #ffffff;
    --color-gray: #666666;
    --color-gray-light: #e5e5e5;
    --font-primary: 'Poppins', sans-serif;
    --max-width: 1400px;
    --header-height: 100px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.site-header.transparent {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header.header-solid {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header.scrolled {
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-dark);
    position: relative;
}

/* Light header (for pages with dark hero images) - white text */
.site-header.header-light .nav-menu a {
    color: var(--color-white);
}

/* Dark header (for pages with light backgrounds) - dark text */
.site-header.header-dark .nav-menu a {
    color: var(--color-dark);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 0.8125rem;
}

/* Dark header CTA button - solid green */
.site-header.header-dark .header-cta .btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Light header CTA button - white outline */
.site-header.header-light .header-cta .btn {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.site-header.header-light .header-cta .btn:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* When scrolled, switch to solid header with dark text */
.site-header.scrolled {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header.scrolled .nav-menu a {
    color: var(--color-dark);
}

.site-header.scrolled .header-cta .btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.site-header.scrolled .menu-toggle span,
.header-dark .menu-toggle span {
    background: var(--color-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.0625rem;
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-light {
    background: var(--color-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.service-card a:hover {
    color: var(--color-primary-dark);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-light);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 39, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
    padding: 1.5rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* CTA Section */
.cta-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

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

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

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 500;
    text-align: left;
    font-family: inherit;
}

/* faq-icon span handles the + icon */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    color: var(--color-gray);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--color-gray-light);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    border-radius: 20px;
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Contact page grid alignment */
.contact-form-wrapper + .contact-info {
    align-self: flex-start;
}

/* Footer */
.site-footer {
    background: #8b7355;
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-top {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.footer-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social span {
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--color-white);
    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu a,
    .site-header.header-light .nav-menu a,
    .site-header.header-dark .nav-menu a,
    .site-header.scrolled .nav-menu a {
        color: var(--color-white) !important;
        font-size: 1.25rem;
        padding: 1rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-accent) !important;
    }

    .header-cta {
        margin-top: 2rem;
    }

    .header-cta .btn,
    .site-header.header-light .header-cta .btn,
    .site-header.header-dark .header-cta .btn {
        border-color: var(--color-white);
        color: var(--color-white);
        background: transparent;
    }

    .about-grid,
    .portfolio-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* WordPress Specific */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

/* Single Post */
.single-post .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: var(--color-light);
    color: var(--color-dark);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

/* Two Column Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-content .lead {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.two-col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Stats Section */
.section-stats {
    background: #3d3d3d;
    color: var(--color-white);
}

.section-stats h2 {
    color: var(--color-white);
}

.section-stats .stat-item .stat-number {
    color: var(--color-white);
}

.section-stats .stat-item p {
    color: rgba(255,255,255,0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item h4 {
    margin-bottom: 0.75rem;
}

.stat-item p {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

/* Services Card Grid (3 columns) */
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-item {
    background: var(--color-white);
    padding: 6%;
}

.service-card-image {
    margin-bottom: 4%;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card-content p {
    color: var(--color-gray);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Grid 3x3 */
.portfolio-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-grid-3 .portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.portfolio-grid-3 .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-grid-3 .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-grid-3 .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 39, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
    font-weight: 500;
}

.portfolio-grid-3 .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Reviews Section */
.section-reviews {
    background: #f0f0f0;
    padding: 80px 0;
}

.section-reviews .section-header h2 {
    color: #1a1a1a;
}

.review-card {
    background: transparent;
    padding: 2rem;
    text-align: center;
}

.review-stars {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #333;
    font-size: 1.1rem;
}

.review-author {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a;
}

/* Dream Outdoor Space Section */
.section-dream {
    background: #fff;
    padding: 80px 0;
}

.section-dream .container {
    text-align: center;
}

.section-dream .dream-image {
    overflow: hidden;
    aspect-ratio: 3/1;
    margin-bottom: 3rem;
}

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

.section-dream .dream-content {
    max-width: 700px;
    margin: 0 auto;
}

.section-dream h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-dream p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* CTA Section with background */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 115, 85, 0.75);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Values/Features Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-item h4 {
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* About Page Hero */
.section-about-hero {
    padding-top: 160px;
    padding-bottom: 80px;
}

.section-about-hero .two-col-grid {
    align-items: stretch;
    gap: 6rem;
}

.section-about-hero .two-col-image {
    position: relative;
}

.section-about-hero .two-col-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 14% 75%;
    border-radius: 0;
}

.section-about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-about-hero h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    line-height: 1.4;
}

.section-about-hero p {
    color: #777;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-size: 0.9rem;
    line-height: 1.75;
}


.btn-dark,
a.btn-dark {
    background: var(--color-dark);
    color: var(--color-white) !important;
    border: 2px solid var(--color-dark);
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background: transparent;
    color: var(--color-dark);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-white);
    border-radius: 0;
    padding: 16px 48px;
}

.btn-white:hover {
    background: transparent;
    color: var(--color-white);
}

.cta-section-alt h2 {
    font-style: italic;
    font-weight: 400;
}

/* Marquee Section */
.section-marquee {
    padding: 1.5rem 4vw;
    overflow: hidden;
    background: var(--color-white);
    max-width: var(--max-width);
    margin: 0 auto;
}

.marquee-track {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 0 0.5rem;
}

.marquee-content span::after {
    content: '\2022';
    margin: 0 1.5rem;
    color: #ccc;
    font-size: 0.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mission & Vision Section */
.section-mission {
    background: #8b7d3a;
    color: var(--color-white);
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.mission-item {
    text-align: center;
}

.mission-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.mission-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 400px;
    margin: 0 auto;
}

/* Our Story Section */
.section-story {
    padding: 100px 0;
}

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

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.story-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.story-image-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Our Happy Clients Section */
.section-clients {
    background: #8b7355;
    padding: 60px 0;
}

.section-clients .container {
    max-width: 1100px;
}

.section-clients h3 {
    color: var(--color-white);
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

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

.client-logo {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.client-logo:nth-child(2) {
    background: #e8e8e8;
}

.client-logo:nth-child(4) {
    background: #e8e8e8;
}

.client-logo:nth-child(5) {
    background: #e8ebe5;
}

.client-logo img {
    width: auto;
    height: auto;
}

.client-logo span {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-dark);
}

.client-placeholder {
    color: #999;
    font-size: 0.85rem;
}

/* Thank You Page */
.section-thankyou {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.thankyou-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* What We Stand For Section */
.section-values {
    background: var(--color-light);
    padding: 80px 0;
}

.section-values h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

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

.value-card {
   background: #e8e8e8;
    padding: 2rem;
    text-align: center;
    display: flex;
   
    flex-direction: column;
    align-items: center;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.value-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive additions */
@media (max-width: 1024px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-list-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-list-item.reverse {
        direction: ltr;
    }

    .service-list-image {
        height: 300px;
    }

    .service-list-content {
        padding: 2rem;
    }

    .stats-grid,
    .reviews-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-3 {
        grid-template-columns: 1fr;
    }

    .story-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-values .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-middle {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.section-portfolio-item {
    padding: 60px 0;
    background: #f5f5f5;
}

.section-portfolio-item:nth-child(even) {
    background: var(--color-white);
}

.section-portfolio-item .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-portfolio-item.reverse .portfolio-grid {
    direction: rtl;
}

.section-portfolio-item.reverse .portfolio-grid > * {
    direction: ltr;
}

.portfolio-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.portfolio-image-tall {
    grid-row: span 2;
    height:calc(100% - 8px);
}

.portfolio-image-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.portfolio-image-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-image-stack img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.portfolio-location {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.portfolio-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.portfolio-features ul {
    list-style: disc;
    margin-left: 1.25rem;
}

.portfolio-features li {
    margin-bottom: 0.5rem;
}

/* Tagged Images Gallery */
.section-tagged-gallery {
    padding: 60px 0;
    background: var(--color-white);
}

.tagged-gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

.tagged-gallery-grid .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.tagged-gallery-grid .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .tagged-gallery-grid {
        columns: 2;
    }
}

@media (max-width: 576px) {
    .tagged-gallery-grid {
        columns: 1;
    }
}

/* =====================================================
   TESTIMONIAL SECTION
   ===================================================== */
.section-testimonial {
    padding: 60px 0;
    background: var(--color-light);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars .star {
    color: #f5c518;
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author .author-name {
    font-weight: 600;
    font-size: 1rem;
}

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

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    line-height: 1.7;
    color: #555;
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--color-white);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.75rem 0;
}

.blog-card-content h3 a {
    color: var(--color-dark);
}

.blog-card-content h3 a:hover {
    color: var(--color-primary);
}

.blog-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Page Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 60px 0;
}

.blog-main .recent-posts-grid {
    grid-template-columns: 1fr;
}

.blog-sidebar h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sidebar-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.sidebar-post-content h5 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.sidebar-post-content h5 a {
    color: var(--color-dark);
}

.sidebar-post-content span {
    font-size: 0.75rem;
    color: #888;
}

/* Blog Side-by-Side Layout */
.section-blog-list {
    padding: 60px 0;
}

.blog-side-by-side-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-side-by-side-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.blog-side-by-side-item:last-child {
    border-bottom: none;
}

.blog-side-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.blog-side-content {
    padding-right: 2rem;
}

.blog-side-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-side-meta .blog-category a {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

.blog-side-meta .blog-date {
    color: #888;
}

.blog-side-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-side-content h2 a {
    color: var(--color-dark);
}

.blog-side-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-read-more:hover {
    color: var(--color-primary);
}

.blog-side-image-placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-side-image-placeholder .placeholder-bg {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

/* FAQ Layout (Image + Questions) */
.section-faqs {
    padding: 60px 0;
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.faq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-row-reverse {
    direction: rtl;
}

.faq-row-reverse > * {
    direction: ltr;
}

.faq-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item-simple h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

@media (max-width: 768px) {
    .blog-side-by-side-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-row-reverse {
        direction: ltr;
    }
}

/* Single Post */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.single-post-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.single-post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.single-post-content .entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.single-post-content .entry-content p {
    margin-bottom: 1.5rem;
}

/* =====================================================
   INSIDE PAGE HERO
   ===================================================== */
.section-hero-inside {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-shadow:1px 1px 16px #000000;
    margin-top: 0;
    padding: 120px 0 80px;
}
.section-hero-inside.no-shadow{
    text-shadow:none;
}
.section-hero-inside::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

/* Light hero (no background image) */
.section-hero-inside.hero-light {
    background: var(--color-light);
    color: var(--color-dark);
    min-height: auto;
    padding: 100px 0 60px;
}

.section-hero-inside.hero-light::before {
    display: none;
}

.section-hero-inside.hero-light h1 {
    color: var(--color-dark);
}

.section-hero-inside.hero-light p {
    color: #555;
}

.hero-inside-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-inside-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-inside-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* =====================================================
   SERVICES GRID PAGE
   ===================================================== */
.section-services-grid {
    padding: 80px 0;
    background: var(--color-white);
}

.section-services-grid .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.section-services-grid .service-card {
    background: var(--color-light);
    display: flex;
    flex-direction: column;
}

.section-services-grid .service-card img {
    height: 280px;
}

.section-services-grid .service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.section-services-grid .service-card-content h3 {
    margin-bottom: 0.75rem;
}

.section-services-grid .service-card-content .btn,
.section-services-grid .service-card-content .arrow-link {
    margin-top: auto;
    align-self: flex-end;
}

/* Arrow link style for service cards */
.arrow-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../images/arrow-right-green.svg') no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.arrow-link:hover {
    animation: arrowBounce 0.6s ease infinite;
}

.section-services-grid .service-card-content .arrow-link {
    margin-top: auto;
    align-self: flex-end;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

.section-services-grid .service-card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.section-cta {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

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

/* Thank You Page */
.section-thank-you {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    width: 80px;
    height: 80px;
}

.section-thank-you h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.thank-you-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.thank-you-details {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thank-you-details p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.thank-you-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.thank-you-details a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .section-services-grid .services-grid {
        grid-template-columns: 1fr;
    }

    .section-hero-inside {
        min-height: 40vh;
        padding: 100px 0 60px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-portfolio-item .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .section-portfolio-item.reverse .portfolio-grid {
        direction: ltr;
    }

    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recent-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Form Loading Overlay */
.form-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-loading-content {
    background: var(--color-white);
    padding: 3rem 4rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-gray-light);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-loading-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
}

/* =====================================================
   CONTENT PAGES (Lawn Care, Service Pages, etc.)
   ===================================================== */
.section-content-intro {
    padding: 80px 0;
}

.section-content-intro .content-text {
   
    margin: 0 auto;
}

.section-content-intro h2 {
    margin-bottom: 1.5rem;
}

.section-content-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray);
}

/* Feature Highlight Section */
.section-feature-highlight {
    padding: 80px 0;
}

.section-feature-highlight .two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-feature-highlight h2 {
    margin-bottom: 1.5rem;
}

.section-feature-highlight p {
    color: var(--color-gray);
    line-height: 1.8;
}

.section-feature-highlight img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

/* Programs Section */
.section-programs {
    padding: 80px 0;
}

.section-programs .section-header {
    margin-bottom: 3rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.program-card {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 8px;
}

/* Card style for light background sections */
.section-programs[style*="background"] .program-card,
.program-card-icon {
    background: var(--color-white);
    text-align: center;
}

.program-card p + p {
    margin-top: 1rem;
}

.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.program-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.program-list li:last-child {
    margin-bottom: 0;
}

.program-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.program-list li strong {
    color: var(--color-dark);
}

/* Content Pages Responsive */
@media (max-width: 992px) {
    .program-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-feature-highlight .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-grid,
    .program-grid-3 {
        grid-template-columns: 1fr;
    }

    .section-content-intro,
    .section-feature-highlight,
    .section-programs {
        padding: 60px 0;
    }
}

/* =====================================================
   FAQ SIMPLE SECTION (for service pages)
   ===================================================== */
.section-faq-simple {
    padding: 80px 0;
}

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

.faq-simple-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-simple-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.faq-simple-item p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature highlight with list styling */
.section-feature-highlight .program-list {
    margin: 1rem 0;
}

.section-feature-highlight .program-list li::before {
    top: 0.6rem;
}

@media (max-width: 768px) {
    .faq-simple-grid {
        grid-template-columns: 1fr;
    }

    .section-faq-simple {
        padding: 60px 0;
    }
}

/* =====================================================
   DESIGN SHOWCASE GALLERY
   ===================================================== */
.section-design-showcase {
    padding: 80px 0;
}

.section-design-showcase .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-design-showcase .section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Design Services Grid */
.section-design-services {
    padding: 80px 0;
}

.section-design-services .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-design-services .section-header h2 {
    color: var(--color-secondary);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.section-design-services .section-header p {
    color: var(--color-gray);
    line-height: 1.8;
}

.knowledge-grid-header {
    text-align: center;
    margin-bottom: 2rem;
}

.knowledge-grid-header h3 {
    color: var(--color-secondary);
    font-size: 1.75rem;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.knowledge-grid-item {
    text-align: center;
    padding: 1.25rem 1rem;
    border-bottom: 3px solid var(--color-secondary);
    color: var(--color-gray);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
}

.design-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #e5e5e5;
}

.design-showcase-row:last-child {
    border-bottom: none;
}

.design-showcase-row.reverse {
    direction: rtl;
}

.design-showcase-row.reverse > * {
    direction: ltr;
}

.design-showcase-content h3 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.design-showcase-content p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.design-showcase-content p:last-child {
    margin-bottom: 0;
}

.design-showcase-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.design-showcase-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.design-showcase-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.design-showcase-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

@media (max-width: 900px) {
    .design-showcase-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 0;
    }

    .design-showcase-row.reverse {
        direction: ltr;
    }

    .design-showcase-image {
        order: -1;
    }
}

/* Project Process Section */
.section-project-process {
    padding: 80px 0;
}

.project-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-process-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #4c4a5b;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

/* Mobile image - hidden on desktop, shown on mobile below title */
.project-process-image-mobile,
.project-process-mobile {
    display: none;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.project-process-image-mobile img,
.project-process-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #a67c52;
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
}

.process-step-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4c4a5b;
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 0.95rem;
    color: #4c4a5b;
    line-height: 1.7;
    margin: 0;
}

/* Desktop image - shown on desktop, hidden on mobile */
.project-process-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.project-process-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .project-process-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Hide desktop image on mobile */
    .project-process-image {
        display: none;
    }

    /* Show mobile image */
    .project-process-image-mobile,
    .project-process-mobile {
        display: block;
    }

    .project-process-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .project-process-content h2 {
        font-size: 2rem;
    }

    .project-process-image-mobile,
    .project-process-mobile {
        height: 200px;
    }

    .process-step {
        gap: 1rem;
    }

    .process-step-number {
        font-size: 1.5rem;
    }
}

/* =====================================================
   LANDING PAGE STYLES
   ===================================================== */

/* Landing Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.landing-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-header-phone {
    display: flex;
    align-items: center;
}

.landing-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.landing-phone-link:hover {
    opacity: 0.8;
}

.landing-header.scrolled .landing-phone-link {
    color: var(--color-dark);
}

/* Landing Footer */
.landing-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0;
}

.landing-footer-content {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Landing Hero */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.landing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.landing-hero-text {
    color: var(--color-white);
}

.landing-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.landing-hero-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Hero Text Shadow for readability */
.hero-text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Checkmark List */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.checkmark-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.services-intro {
    margin: 1.5rem 0 1rem 0;
    font-size: 1rem;
}

/* Landing Hero Form */
.hero-form-wrapper {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-dark);
}

.landing-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.landing-form .form-group {
    margin-bottom: 1rem;
}

.landing-form input,
.landing-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.landing-form input:focus,
.landing-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.landing-form input::placeholder,
.landing-form textarea::placeholder {
    color: #999;
}

.landing-form textarea {
    resize: vertical;
    min-height: 80px;
}

.landing-form .btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Section CTA (for landing page) */
.section-cta:not(.section-cta-bg) {
    position: static;
    padding: 0;
    background: none;
    color: inherit;
    text-align: center;
    margin-top: 2rem;
}

.section-cta:not(.section-cta-bg)::before {
    display: none;
}

/* Team Section */
.section-team {
    background: var(--color-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
}

/* Single team image display */
.team-single {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.team-single img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Gold Stars for Reviews */
.gold-stars,
.review-stars.gold-stars {
    color: #f5c518 !important;
}

/* Reviews Grid 6 columns (2 rows of 3) */
.reviews-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

/* Landing Thank You Page */
.landing-thank-you {
    padding-top: 150px;
}

/* Landing Page Mobile Styles */
@media (max-width: 992px) {
    .landing-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .landing-hero-text {
        order: 1;
    }

    .landing-hero-form {
        order: 2;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-hero {
        min-height: auto;
        padding: 0;
        background-attachment: fixed;
        background-position: center top;
    }

    .landing-hero-content {
        padding: 0;
    }

    .landing-hero-text {
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 0px 40px 0px;
    }

    .landing-hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 0;
        background: rgb(0, 0, 0, 0.4);
        padding: 20px 0px;
    }

    .landing-hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        background: rgb(0, 0, 0, .4);
        padding: 0px 0px 20px 0px;
    }

    .landing-hero-form {
        background: #f8f8f8;
        padding: 0 20px 40px;
        scroll-margin-top: 80px;
    }

    .landing-form .form-row {
        grid-template-columns: 1fr;
    }

    .hero-form-wrapper {
        padding: 1.5rem;
    }

    .hero-form-wrapper h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .landing-form .form-group {
        margin-bottom: 0.75rem;
    }

    .landing-form input,
    .landing-form textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .landing-form textarea {
        min-height: 60px;
    }

    .landing-phone-link span {
        display: none;
    }

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

    .reviews-grid-6 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
