:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f772d;
    --accent-color: #d97706;
    --dark-text: #1f2937;
    --light-text: #f3f4f6;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.top-navigation-bar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.company-brand i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.main-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.main-navigation li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-navigation li a:hover,
.main-navigation li a.active-page {
    background: var(--accent-color);
    color: #ffffff;
}

.hero-banner {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.85) 0%, rgba(79, 119, 45, 0.75) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.hero-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.primary-action-btn,
.secondary-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 50px;
}

.primary-action-btn {
    background: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

.primary-action-btn:hover {
    background: #b45309;
    border-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

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

.secondary-action-btn:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.company-intro-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.intro-visual {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.learn-more-link:hover {
    gap: 1rem;
}

.benefits-showcase {
    padding: 5rem 0;
    background: #ffffff;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-preview {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-subtext {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 0 1.5rem 1.5rem;
}

.view-all-services-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-all-services-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 5rem 0;
    background: #ffffff;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    height: 100%;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.author-location {
    font-size: 0.9rem;
    color: #6b7280;
}

.contact-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.contact-preview .section-headline {
    color: #ffffff;
}

.contact-intro-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #f3f4f6;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

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

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-us-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-us-btn:hover {
    background: #b45309;
    transform: translateY(-2px);
}

.site-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 3rem 0 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-message {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cookie-btn-accept,
.cookie-btn-decline {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: var(--secondary-color);
}

.cookie-btn-decline {
    background: #e5e7eb;
    color: var(--dark-text);
}

.cookie-btn-decline:hover {
    background: #d1d5db;
}

.cookie-learn-more {
    color: var(--accent-color);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-learn-more:hover {
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .hero-main-heading {
        font-size: 2.2rem;
    }

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

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

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom .text-right {
        text-align: left !important;
        margin-top: 1rem;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 1.5rem;
    }
}

.form-container {
    background: #ffffff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
}

.form-submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.success-message {
    display: none;
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.success-message.show {
    display: block;
}

.team-member-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

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

.team-member-info {
    padding: 1.5rem;
}

.team-member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
    height: 350px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #ffffff;
    padding: 2rem 1.5rem;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.thank-you-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.thank-you-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}

.thank-you-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thank-you-box h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.back-home-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}
