/* ===================================
   CSS Variables - Logo Color Palette
   =================================== */

:root {
    --primary-green: #3d5a4f;
    --primary-green-dark: #2d4a3e;
    --primary-green-light: #4d6a5f;
    --accent-brown: #a67c52;
    --accent-brown-dark: #8b6239;
    --accent-brown-light: #c29563;
    --bg-cream: #f5f0e8;
    --bg-white: #ffffff;
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-green-dark);
}

/* ===================================
   Container & Layout
   =================================== */

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

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    text-align: center;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

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

.highlight-icon {
    font-size: 1.25rem;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-brown);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--accent-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 1.25rem;
}

/* ===================================
   Services Section
   =================================== */

.services {
    background-color: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 90, 79, 0.15);
}

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

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    text-align: right;
}

.service-details.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
}

.service-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 12px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.service-details li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-details strong {
    color: var(--primary-green-dark);
}

.service-note {
    background: rgba(61, 90, 79, 0.05);
    padding: 12px 16px;
    border-right: 3px solid var(--accent-brown);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

.service-expand-btn {
    background: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.service-expand-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
}

.service-expand-btn.expanded {
    background: var(--text-medium);
}

.service-expand-btn.expanded::after {
    content: " ↑";
}

/* ===================================
   Why Us Section
   =================================== */

.why-us {
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   Service Area Section
   =================================== */

.service-area {
    background: linear-gradient(135deg, #e8ede6 0%, #d4dfd0 100%);
    text-align: center;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.area-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-right: 3px solid var(--accent-brown);
}

.area-note {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 24px;
}

.area-note a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

/* ===================================
   Google Reviews Section
   =================================== */

.google-reviews {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-cream) 100%);
}

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

.reviews-header {
    margin-bottom: 40px;
}

.reviews-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-brown);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-green), transparent);
}

.reviews-cta {
    margin-bottom: 40px;
}

.reviews-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    padding: 16px 40px;
    margin-bottom: 16px;
}

.google-icon {
    font-size: 1.5rem;
}

.reviews-encourage {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 32px 24px;
    background: rgba(61, 90, 79, 0.05);
    border-radius: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green-dark);
}

.badge-icon {
    font-size: 1.25rem;
    color: var(--accent-brown);
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    background-color: var(--bg-cream);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 8px;
}

.contact-link:hover {
    color: var(--accent-brown-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green-dark);
}

.required {
    color: #c92a2a;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #d4dfd0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: #ffffff;
    margin-top: 8px;
}

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

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--primary-green-dark);
    color: #e8ede6;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d4dfd0;
}

.footer-section a {
    color: var(--accent-brown-light);
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--primary-green);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #b8c5b0;
}

/* ===================================
   Responsive Design - Tablet
   =================================== */

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-logo {
        max-width: 320px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.875rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

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

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

    .areas-list {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }

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

/* ===================================
   Responsive Design - Desktop
   =================================== */

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 100px 0;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero-logo {
        max-width: 400px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .service-card {
        padding: 40px 32px;
    }
}

/* ===================================
   Utilities & Animations
   =================================== */

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Print Styles */
@media print {
    .hero-cta,
    .contact-form,
    .btn {
        display: none;
    }
}
