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

:root {
    --color-primary: #2c5530;
    --color-primary-dark: #1e3d22;
    --color-primary-light: #4a7c4f;
    --color-secondary: #c9a962;
    --color-secondary-dark: #b08f4a;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #1a1a1a;
    --color-border: #e0e0e0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.hero-split {
    min-height: 100vh;
    display: flex;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    max-width: 50%;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.stats-bar {
    background: var(--color-primary);
    padding: 3rem 2rem;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.split-section {
    display: flex;
    min-height: 600px;
}

.split-section.split-reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    margin-bottom: 1rem;
}

.services-header p {
    color: var(--color-text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 280px;
    max-width: 300px;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-split {
    background: var(--color-bg-alt);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.author-location {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.process-section {
    padding: 6rem 2rem;
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.process-step {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.gallery-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1 1 300px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
}

.gallery-item.gallery-large {
    flex: 2 1 600px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-weight: 500;
}

.cta-section {
    padding: 6rem 2rem;
    background: var(--color-primary);
}

.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    flex: 1;
}

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

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
}

.cta-form {
    flex: 1;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

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

.trust-section {
    padding: 3rem 2rem;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1 1 180px;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: var(--color-secondary-dark);
    color: var(--color-text);
    transform: translateY(-2px);
}

.page-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

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

.page-hero-content h1 {
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.values-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.value-card {
    flex: 1 1 280px;
    max-width: 300px;
    padding: 2rem;
}

.value-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.numbers-section {
    padding: 4rem 2rem;
    background: var(--color-primary);
}

.numbers-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.number-item {
    text-align: center;
    color: #fff;
}

.number-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.testimonials-section {
    padding: 6rem 2rem;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.testimonial-stars {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cta-about .cta-inner {
    flex-direction: column;
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-actions .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.cta-actions .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.services-full {
    padding: 6rem 2rem;
}

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

.service-full-item {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.services-full-alt .service-full-item {
    flex-direction: row-reverse;
}

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    margin-bottom: 1rem;
}

.service-full-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    flex: 1 1 45%;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.service-pricing {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.services-full-alt .service-pricing {
    background: var(--color-bg);
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.service-full-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.services-grid-section {
    padding: 6rem 2rem;
}

.services-grid-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.services-detailed-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-detailed-card {
    flex: 1 1 280px;
    max-width: 300px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.service-detailed-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.service-detailed-icon svg {
    width: 100%;
    height: 100%;
}

.service-detailed-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-detailed-card > p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-mini-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-mini-list li {
    font-size: 0.9rem;
    padding: 0.25rem 0;
    color: var(--color-text);
}

.service-mini-price {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.service-mini-price span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-table-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pricing-header p {
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.pricing-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.pricing-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-table tr:nth-child(even) {
    background: var(--color-bg-alt);
}

.pricing-table td:last-child {
    font-weight: 600;
    color: var(--color-primary);
}

.contact-main {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-text-light) !important;
    margin-top: 0.5rem;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.hours-list span {
    font-weight: 500;
}

.contact-map {
    flex: 1.5;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-weight: 500;
}

.faq-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--color-text-light);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

.cta-contact .cta-inner {
    flex-direction: column;
    text-align: center;
}

.cta-simple h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-simple p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 10rem 2rem 6rem;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-primary);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
}

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.next-steps .step-number {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.next-steps .step-text {
    color: var(--color-text);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 10rem 2rem 4rem;
}

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

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

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        padding: 6rem 2rem 3rem;
    }

    .hero-image {
        height: 400px;
    }

    .split-section {
        flex-direction: column !important;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .split-image {
        height: 400px;
    }

    .cta-inner {
        flex-direction: column;
    }

    .service-full-item {
        flex-direction: column !important;
    }

    .contact-grid {
        flex-direction: column;
    }

    .map-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem;
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem;
        transition: right var(--transition);
    }

    .nav-main.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 5rem 1.5rem 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-inner {
        gap: 1.5rem;
    }

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

    .services-preview,
    .process-section,
    .gallery-section,
    .cta-section,
    .values-section,
    .testimonials-section,
    .services-full,
    .services-grid-section,
    .pricing-table-section,
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .service-includes li {
        flex: 1 1 100%;
    }

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
