/* ===================================
   Four Seasons Landscaping - Premium Website
   Natural Professional Aesthetic
   =================================== */

:root {
    /* Color Palette */
    --forest-green: #1a4d2e;
    --forest-green-dark: #0f2919;
    --forest-green-light: #2d6a4f;
    --slate-gray: #475569;
    --slate-gray-light: #64748b;
    --slate-gray-dark: #334155;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --cream: #fefcf7;
    --gold: #d4af37;
    --gold-light: #f0e68c;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--slate-gray-dark);
    background-color: var(--white);
}

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

/* ===================================
   Modal Styles
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.modal-content.modal-small {
    max-width: 500px;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px 15px 0 0;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 30px;
    color: var(--slate-gray-dark);
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.modal-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.modal-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-highlight {
    background-color: var(--cream);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    margin: 20px 0;
    font-size: 1.1rem;
}

.modal-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.modal-notice p {
    margin: 0;
    color: #856404;
}

.action-description {
    background-color: var(--off-white);
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--forest-green-dark);
    margin: 15px 0;
}

.modal-cta-text {
    text-align: center;
    font-size: 1rem;
    margin-top: 20px;
}

.modal-body a {
    color: var(--forest-green);
    font-weight: 600;
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 20px 30px;
    background-color: var(--off-white);
    border-radius: 0 0 15px 15px;
    text-align: center;
}

.btn-modal-primary {
    background-color: var(--gold);
    color: var(--forest-green-dark);
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-modal-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-modal-secondary {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modal-secondary:hover {
    background-color: var(--forest-green-dark);
    transform: translateY(-2px);
}

/* Photo Badge Overlay */
.photo-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(26, 77, 46, 0.95);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.7);
    white-space: nowrap;
    z-index: 10;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-image .photo-badge,
.gallery-item .photo-badge {
    opacity: 0.95;
}

.service-card:hover .photo-badge,
.gallery-item:hover .photo-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--slate-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--slate-gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--forest-green);
}

.btn-primary {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(rgba(15, 41, 25, 0.7), rgba(26, 77, 46, 0.8)),
                url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600') center/cover;
    color: var(--white);
    padding: 120px 0;
    position: relative;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.five-star-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.five-star-badge .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 8px;
}

.five-star-badge .rating-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.check-icon {
    background-color: var(--gold);
    color: var(--forest-green-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-hero {
    display: inline-block;
    background-color: var(--gold);
    color: var(--forest-green-dark);
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-hero:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===================================
   Social Proof Banner
   =================================== */
.social-proof {
    background-color: var(--forest-green-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stars-large {
    font-size: 2.5rem;
    color: var(--gold);
}

.social-proof h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.social-proof p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--forest-green-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.15);
    border-color: var(--forest-green-light);
}

.service-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #ffffff 0%, #fefef9 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--forest-green-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--forest-green-dark);
    margin-bottom: 8px;
}

.service-subtitle {
    color: var(--slate-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card > p {
    color: var(--slate-gray-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--slate-gray-dark);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-service:hover {
    background-color: var(--forest-green-dark);
    transform: translateX(5px);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 46, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-info h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-info p {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.gallery-cta {
    text-align: center;
    padding: 40px 0 0;
}

.gallery-cta p {
    font-size: 1.3rem;
    color: var(--slate-gray-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-gallery {
    display: inline-block;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-gallery:hover {
    background-color: var(--forest-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.3);
}

/* ===================================
   Video Section
   =================================== */
.video-section {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.video-content h2 {
    font-size: 2.5rem;
    color: var(--forest-green-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.video-content p {
    font-size: 1.15rem;
    color: var(--slate-gray-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.video-features {
    list-style: none;
}

.video-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--slate-gray-dark);
    font-weight: 500;
}

.video-container {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-note {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 46, 0.95);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.video-note strong {
    color: var(--gold-light);
}

/* ===================================
   Before/After Section
   =================================== */
.before-after-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.before-after-item {
    text-align: center;
}

.comparison-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.before-image,
.after-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.before-after-item:hover .before-image img,
.before-after-item:hover .after-image img {
    transform: scale(1.05);
}

.label {
    position: absolute;
    top: 15px;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-label {
    left: 15px;
    background-color: var(--slate-gray);
    color: var(--white);
}

.after-label {
    right: 15px;
    background-color: var(--gold);
    color: var(--forest-green-dark);
}

.before-after-item h4 {
    font-size: 1.5rem;
    color: var(--forest-green-dark);
    margin-bottom: 10px;
}

.before-after-item p {
    font-size: 1.05rem;
    color: var(--slate-gray);
}

/* ===================================
   Guarantee Section
   =================================== */
.guarantee {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.95;
}

.guarantee p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===================================
   Google Reviews Section
   =================================== */
.reviews {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

/* Google Summary Card */
.google-summary {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e8eaed;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-logo span {
    font-size: 1.3rem;
    font-weight: 500;
    color: #5f6368;
}

.google-rating {
    text-align: right;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #202124;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    margin-bottom: 8px;
}

.rating-stars .star {
    font-size: 1.5rem;
    color: #fbbc04;
    margin: 0 2px;
}

.rating-count {
    font-size: 0.9rem;
    color: #5f6368;
}

/* Google Review Cards */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.google-review-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border: 1px solid #e8eaed;
    transition: all 0.3s;
    position: relative;
}

.google-review-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars-small {
    display: flex;
    gap: 1px;
}

.review-stars-small .star {
    font-size: 0.95rem;
    color: #fbbc04;
}

.review-date {
    font-size: 0.8rem;
    color: #5f6368;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #202124;
    margin-bottom: 12px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #5f6368;
    margin-top: 12px;
}

.google-badge svg {
    flex-shrink: 0;
}

/* View All Reviews Button */
.reviews-cta {
    text-align: center;
    padding-top: 20px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    color: #1a73e8;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #1a73e8;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(26,115,232,0.15);
}

.btn-google-reviews:hover {
    background-color: #1a73e8;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26,115,232,0.3);
}

.btn-google-reviews:hover svg path {
    fill: white;
}

.reviews-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--slate-gray);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--forest-green-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--slate-gray-dark);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about-feature {
    flex: 1;
    text-align: center;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.about-feature h4 {
    font-size: 1.1rem;
    color: var(--forest-green-dark);
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

.about-values {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-values h3 {
    font-size: 1.8rem;
    color: var(--forest-green-dark);
    margin-bottom: 25px;
}

.value-item {
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--forest-green);
    line-height: 1.7;
    color: var(--slate-gray-dark);
}

.value-item strong {
    color: var(--forest-green-dark);
    font-size: 1.1rem;
}

/* ===================================
   Quote Form Section
   =================================== */
.quote-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
    color: var(--white);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.quote-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    font-size: 1.05rem;
    font-weight: 500;
    padding-left: 10px;
}

.quote-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    color: var(--forest-green-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.form-note {
    text-align: center;
    color: var(--slate-gray);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--forest-green-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-stars {
    color: var(--gold);
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.demo-notice {
    font-size: 0.9rem;
}

.demo-notice a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ===================================
   Hamburger Menu
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 2px solid var(--forest-green);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(26, 77, 46, 0.05);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--forest-green);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active {
    border-color: var(--forest-green-light);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-cta {
    display: none;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

    .nav-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, #f0f7f2 0%, var(--cream) 50%, #e8f5e9 100%);
        border-radius: 16px;
        padding: 28px 24px;
        gap: 0;
        margin-top: 12px;
        box-shadow: 0 8px 32px rgba(26, 77, 46, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(26, 77, 46, 0.1);
        position: relative;
        overflow: hidden;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--forest-green-light), var(--gold), var(--forest-green-light));
        border-radius: 16px 16px 0 0;
    }

    .nav-links.open {
        display: flex;
        animation: menuSlideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(26, 77, 46, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 8px;
        padding-top: 8px;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--slate-gray-dark);
        transition: all 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background-color: rgba(26, 77, 46, 0.06);
        color: var(--forest-green);
        transform: translateX(4px);
    }

    .nav-links li:nth-child(1) a::before { content: '\1F3E1'; }
    .nav-links li:nth-child(2) a::before { content: '\1F331'; }
    .nav-links li:nth-child(3) a::before { content: '\2B50'; }
    .nav-links li:nth-child(4) a::before { content: '\1F4DE'; }

    .mobile-cta .btn-primary {
        display: block;
        text-align: center;
        width: 100%;
        padding: 14px 28px;
        border-radius: 12px;
        font-size: 1.05rem;
        background: linear-gradient(135deg, var(--forest-green), var(--forest-green-dark));
        box-shadow: 0 4px 16px rgba(26, 77, 46, 0.25);
    }

    .mobile-cta .btn-primary:hover {
        box-shadow: 0 6px 20px rgba(26, 77, 46, 0.35);
    }

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

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

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .google-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .google-rating {
        text-align: center;
    }

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

@media (max-width: 640px) {
    .hero {
        padding: 80px 0;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .about-features {
        flex-direction: column;
    }

    .review-featured {
        padding: 30px 20px;
    }

    .review-featured blockquote {
        font-size: 1.2rem;
    }

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

    .video-wrapper {
        grid-template-columns: 1fr;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .before-image,
    .after-image {
        height: 250px;
    }

    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header h2,
    .modal-header h3 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body p,
    .modal-list li {
        font-size: 0.95rem;
    }

    .btn-modal-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .photo-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        max-width: 80%;
        white-space: normal;
        line-height: 1.3;
    }
}