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

/* Optimized font loading with font-display: swap */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffff6;
    font-weight: 400;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #137920;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: #5d4280;
    outline: 2px solid #137920;
    outline-offset: 2px;
}

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

.section {
    padding: 4rem 0;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    background-color: #137920;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #5d4280;
    color: #fff;
    outline: 2px solid #137920;
    outline-offset: 2px;
    transform: translateY(-1px);
}

.btn-contact {
    display: inline-block;
    background-color: transparent;
    color: #137920;
    padding: 0.75rem 1.5rem;
    border: 2px solid #137920;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-contact:hover,
.btn-contact:focus {
    background-color: #137920;
    color: #fff;
}

/* ===== Header & Navigation ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
    position: relative;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo a {
    font-size: 1rem;
    font-weight: 700;
    color: #137920;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    display: block;
}

.nav-link.active,
.nav-link:hover {
    color: #137920;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #fffff6 0%, #e8f5e8 25%, #d0edd0 50%, #f0f8f0 75%, #fffff6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(19, 121, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(19, 121, 32, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* ===== Benefits Section ===== */
.benefits {
    background-color: #fff;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #fffff6;
    border: 1px solid #e8f5e8;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #137920;
    margin-bottom: 1rem;
}

/* ===== Stats Section ===== */
.stats {
    background: linear-gradient(135deg, #137920 0%, #0f5f1a 100%);
    color: #fff;
}

.stats h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Services Overview ===== */
.services-overview {
    background-color: #f8fdf8;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e8f5e8;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #137920;
}

.service-card h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #137920;
    font-weight: 500;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: #5d4280;
}

/* ===== Features Section ===== */
.features {
    background-color: #fff;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.features-text {
    display: grid;
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
}

.feature-item h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.features-img:hover {
    transform: scale(1.02);
}

/* ===== Process Section ===== */
.process {
    background: linear-gradient(135deg, #f0f8f0 0%, #e6f5e6 100%);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e8f5e8;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #137920;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.process-cta {
    text-align: center;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.testimonial {
    background-color: #fffff6;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #137920;
    margin: 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    font-weight: 600;
    color: #137920;
    font-style: normal;
}

/* ===== Footer ===== */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #137920;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.2s ease;
}

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

.footer-section address {
    font-style: normal;
    line-height: 1.6;
}

.footer-section address p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #137920;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-popup-content {
    flex: 1;
    min-width: 250px;
}

.cookie-popup-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.cookie-popup-content a {
    color: #137920;
    text-decoration: underline;
}

.cookie-popup-content a:hover {
    color: #9A7BC8;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #137920;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #6B4C87;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== Page Styles ===== */
.page-header {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Service Sections ===== */
.service-section {
    padding: 4rem 0;
    background-color: #fff;
}

.service-section.alt {
    background-color: #fffff6;
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text {
    padding: 1rem 0;
}

.service-text h2 {
    color: #137920;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.02);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #137920 0%, #0f5f1a 100%);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== About Page Styles ===== */
.about-section {
    padding: 4rem 0;
    background-color: #fff;
}

.about-section.alt {
    background-color: #fffff6;
}

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

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text h2 {
    color: #137920;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* ===== History Section ===== */
.history-content {
    text-align: center;
}

.history-content h2 {
    color: #137920;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.history-item {
    background-color: #fffff6;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    text-align: center;
    transition: transform 0.2s ease;
}

.history-item:hover {
    transform: translateY(-5px);
}

.history-year {
    background-color: #137920;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.history-item h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.history-item p {
    color: #555;
    line-height: 1.6;
}

/* ===== Values Section ===== */
.values-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    padding: 4rem 0;
    text-align: center;
}

.values-section h2 {
    color: #2c2c2c;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    transition: transform 0.2s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

/* ===== Projects Page Styles ===== */
.portfolio-section {
    padding: 4rem 0;
    background-color: #fff;
}

.portfolio-section h2 {
    text-align: center;
    color: #137920;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #fffff6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 2rem;
}

.project-type {
    background-color: #137920;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-content h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-location {
    color: #137920;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-result {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background-color: #e8f5e8;
    color: #137920;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== Case Study Styles ===== */
.case-study-section {
    padding: 4rem 0;
    background-color: #f8fdf8;
}

.case-study-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-study-header h3 {
    color: #137920;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.case-location {
    color: #555;
    font-style: italic;
}

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

.case-block {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #137920;
}

.case-block h4 {
    color: #137920;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.case-block ul {
    list-style: none;
    padding: 0;
}

.case-block li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.case-block li:last-child {
    border-bottom: none;
}

.case-block li::before {
    content: "✓";
    color: #137920;
    font-weight: bold;
    margin-right: 0.5rem;
}

.case-images {
    margin: 3rem 0;
}

.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.before-image,
.after-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.image-label.before {
    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;
}

.image-label.after {
    background-color: rgba(19, 121, 32, 0.8);
    color: #fff;
}

.case-quote {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #137920;
    margin-top: 2rem;
}

.case-quote blockquote {
    margin: 0;
}

.case-quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.case-quote cite {
    color: #137920;
    font-weight: 600;
    font-style: normal;
}

/* ===== More Projects Teaser ===== */
.more-projects-section {
    padding: 4rem 0;
    background-color: #fff;
}

.more-projects-section h2 {
    text-align: center;
    color: #137920;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.projects-teaser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.teaser-item {
    text-align: center;
    padding: 2rem;
    background-color: #fffff6;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.teaser-number {
    font-size: 3rem;
    font-weight: 700;
    color: #137920;
    margin-bottom: 1rem;
}

.teaser-item h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.teaser-item p {
    color: #555;
    line-height: 1.6;
}

/* ===== Contact Form Styles ===== */
.contact-form-section {
    padding: 4rem 0;
    background-color: #fff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: #137920;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit {
    background-color: #e8f5e8;
    color: #137920;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
}

.contact-form {
    background-color: #fffff6;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

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

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

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

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

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e8f5e8;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #137920;
    border-color: #137920;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.privacy-checkbox {
    margin-top: 1rem;
}

.error-message {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ===== Contact Info Styles ===== */
.contact-info-section {
    padding: 4rem 0;
    background-color: #f8fdf8;
}

.contact-info-section h2 {
    text-align: center;
    color: #137920;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.6;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.office-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.office-card h3 {
    color: #137920;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.office-details address {
    font-style: normal;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.service-areas {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8f5e8;
}

.response-guarantee {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    text-align: center;
}

.guarantee-content h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.guarantee-content p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* ===== Maps Section ===== */
.maps-section {
    padding: 4rem 0;
    background-color: #fff;
}

.maps-section h2 {
    text-align: center;
    color: #137920;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.map-container {
    background-color: #fffff6;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.map-container h3 {
    color: #137920;
    margin-bottom: 1rem;
    text-align: center;
}

.map-embed {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-description {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* ===== Legal Pages Styles ===== */
.legal-section {
    padding: 4rem 0;
    background-color: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-updated {
    background-color: #f8fdf8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #137920;
}

.legal-intro {
    background-color: #fffff6;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid #e8f5e8;
}

.legal-content h2 {
    color: #137920;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content h4 {
    color: #137920;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.contact-info {
    background-color: #f8fdf8;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e8f5e8;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Cookie Policy Specific Styles */

.cookie-settings-section {
    background-color: #f8fdf8;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    border: 1px solid #e8f5e8;
}

.cookie-controls {
    margin: 2rem 0;
}

.cookie-category {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e8f5e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category h4 {
    margin: 0 0 0.5rem 0;
    color: #137920;
}

.cookie-category p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: #137920;
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(26px);
}

.toggle-switch.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.toggle-switch .label {
    margin-left: 70px;
    font-weight: 500;
    color: #2c2c2c;
}

/* ===== Thank You Page Styles ===== */
.thank-you-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #fffff6 0%, #e8f5e8 100%);
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    background-color: #137920;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: checkmarkPop 0.6s ease-in-out;
}

.checkmark {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-content h1 {
    color: #137920;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    transition: transform 0.2s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: #137920;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.response-time {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    margin: 3rem 0;
}

.response-info h3 {
    color: #137920;
    margin-bottom: 1rem;
}

.response-info p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.additional-info-section {
    padding: 4rem 0;
    background-color: #fff;
}

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

.info-card {
    background-color: #fffff6;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.info-card h3 {
    color: #137920;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.inspiration-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.inspiration-links a {
    background-color: #e8f5e8;
    color: #137920;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.inspiration-links a:hover {
    background-color: #137920;
    color: #fff;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f8fdf8;
}

.faq-section h2 {
    text-align: center;
    color: #137920;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.faq-item h4 {
    color: #137920;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .hero-subtitle {
        display: none;
    }
 
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

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

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

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    /* Hero */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    /* Grids */
    .benefits-grid,
    .services-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .service-content.reverse {
        direction: ltr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .service-text h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .about-content.reverse {
        direction: ltr;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .history-content h2,
    .values-section h2 {
        font-size: 1.8rem;
    }

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

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

    /* Projects page mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .image-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    /* Contact page mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

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

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

    /* Legal pages mobile */

    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .toggle-switch .label {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    /* Thank you page mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .inspiration-links {
        justify-content: center;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    /* Cards */
    .benefit-card,
    .service-card,
    .feature-item,
    .process-step,
    .testimonial {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cookie Popup */
    .cookie-popup-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-popup-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }
    .container {
        padding: 0 15px;
    }

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

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

    .benefit-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Cookie Popup */
    .cookie-popup {
        padding: 15px;
    }
    
    .cookie-popup-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
} 