/* Reset and 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;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #faf9f6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

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

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: #2d5a27;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d1a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: #6b7280;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #1a1a1a;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2d5a27;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger__line {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger--open .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger--open .burger__line:nth-child(2) {
    opacity: 0;
}

.burger--open .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #faf9f6;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu__list {
    list-style: none;
    text-align: center;
}

.mobile-menu__item {
    margin: 1.5rem 0;
}

.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #2d5a27;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header__title {
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
}

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

.hero__text {
    padding-right: 2rem;
}

.hero__title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #2d5a27;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content Block */
.content-block {
    padding: 4rem 0;
    background-color: #f8f7f4;
}

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

.content-block__text {
    padding-right: 2rem;
}

.content-block__paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.content-block__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

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

.content-section__content--single {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.content-section__text--full {
    max-width: none;
}

.content-section__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
    padding: 4rem 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card__image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.service-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card__title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card__description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card__features {
    list-style: none;
    padding: 0;
}

.service-card__features li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card__features li::before {
    content: '✓';
    color: #2d5a27;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services List */
.services-list {
    padding: 4rem 0;
    background-color: #f8f7f4;
}

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

.services-list__text {
    padding-right: 2rem;
}

.services-list__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-numbered {
    counter-reset: service-counter;
    list-style: none;
    padding: 0;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-item p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-pricing {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.service-pricing p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.service-pricing p:first-child {
    margin-top: 0;
}

.service-pricing p:last-child {
    margin-bottom: 0;
}

.service-pricing strong {
    color: #1a1a1a;
}

.service-pricing em {
    color: #6b7280;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #2d5a27;
    color: #faf9f6;
    text-align: center;
}

.cta-section__title {
    color: #faf9f6;
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #faf9f6;
    color: #2d5a27;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #faf9f6;
}

.cta-button:hover {
    background-color: transparent;
    color: #faf9f6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info h2,
.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-details-simple {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f7f4;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-detail h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-detail a {
    color: #2d5a27;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #1a3d1a;
}

/* Form */
.form {
    max-width: 500px;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

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

.form-submit {
    width: 100%;
    background-color: #2d5a27;
    color: #faf9f6;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #1a3d1a;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #faf9f6;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #faf9f6;
    margin-bottom: 1rem;
}

.footer__logo a {
    color: inherit;
    text-decoration: none;
}

.footer__tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer__nav-list,
.footer__legal-list {
    list-style: none;
}

.footer__nav-item,
.footer__legal-item {
    margin-bottom: 0.75rem;
}

.footer__nav-link,
.footer__legal-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover,
.footer__legal-link:hover {
    color: #faf9f6;
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .header__content {
        padding: 1rem 0;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero__content,
    .content-block__content,
    .content-section__content,
    .contact-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__text,
    .content-block__text {
        padding-right: 0;
        text-align: center;
    }

    .hero {
        padding: 2rem 0 4rem;
    }

    .content-block,
    .content-section {
        padding: 2rem 0;
    }

    .page-header {
        padding: 2rem 0;
    }

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

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    main {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-section__text {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}