/* =========================================
   FamTir - Natural Resource Management
   Main Stylesheet
   ========================================= */

/* === CSS Variables === */
:root {
    --green-dark: #1b4332;
    --green-main: #2d6a4f;
    --green-mid: #40916c;
    --green-light: #52b788;
    --green-pale: #b7e4c7;
    --green-ghost: #d8f3dc;
    --earth-dark: #3d2b1f;
    --earth-mid: #6b4c3b;
    --earth-light: #a0785a;
    --earth-pale: #e8d5c4;
    --stone-dark: #1a1a2e;
    --stone-mid: #374151;
    --stone-light: #6b7280;
    --stone-pale: #f3f4f6;
    --white: #ffffff;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    color: var(--stone-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Section Styles === */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header.text-left { text-align: left; margin: 0 0 40px; }

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-mid);
    background: var(--green-ghost);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--green-dark);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--stone-light);
    font-size: 17px;
    line-height: 1.7;
}

/* === Navigation === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
}

.site-header.scrolled .logo-text { color: var(--green-dark); }

.footer-logo .logo-text { color: var(--white); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.site-header.scrolled .nav-link { color: var(--stone-mid); }

.nav-link:hover {
    color: var(--green-light);
    background: rgba(82, 183, 136, 0.1);
}

.site-header.scrolled .nav-link:hover { color: var(--green-mid); }

.nav-link.nav-cta {
    background: var(--green-main);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
}

.nav-link.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.site-header.scrolled .hamburger span { background: var(--stone-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.88) 0%, rgba(45, 106, 79, 0.72) 50%, rgba(27, 67, 50, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-inner { max-width: 720px; }

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-pale);
    border: 1px solid rgba(183, 228, 199, 0.4);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeDown 0.6s ease;
}

.hero-title {
    font-size: clamp(38px, 6vw, 72px);
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeDown 0.7s ease 0.1s both;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--green-pale);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeDown 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeDown 0.7s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(82, 183, 136, 0.4);
}

.btn-primary:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(82, 183, 136, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.4s both;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--green-pale);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* === Benefits Section === */
.benefits-section {
    padding: 100px 0;
    background: var(--stone-pale);
}

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

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--green-main);
    transition: var(--transition);
    border-radius: 0 4px 4px 0;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-ghost);
}

.benefit-card:hover::before { height: 100%; }

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--green-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: var(--green-main);
}

.benefit-card:hover .benefit-icon {
    background: var(--green-main);
}

.benefit-card:hover .benefit-icon svg { color: var(--white); }

.benefit-card h3 {
    font-size: 18px;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--stone-light);
    font-size: 15px;
    line-height: 1.7;
}

/* === Services Section === */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid #eee;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img { transform: scale(1.08); }

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay { opacity: 1; }

.service-link {
    background: var(--white);
    color: var(--green-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 100px;
    transform: translateY(10px);
    transition: var(--transition);
}

.service-card:hover .service-link { transform: translateY(0); }

.service-body { padding: 28px; }

.service-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-mid);
    display: block;
    margin-bottom: 8px;
}

.service-body h3 {
    font-size: 20px;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.service-body p {
    color: var(--stone-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features { padding: 0; }

.service-features li {
    font-size: 13px;
    color: var(--stone-mid);
    padding: 6px 0;
    border-bottom: 1px solid var(--stone-pale);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-features li:last-child { border-bottom: none; }

/* === Process Section === */
.process-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-main) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.process-section .section-tag {
    background: rgba(183, 228, 199, 0.15);
    color: var(--green-pale);
}

.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,0.7); }

.process-timeline { position: relative; max-width: 900px; margin: 0 auto; }

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    margin-bottom: 48px;
}

.process-step:last-child { margin-bottom: 0; }

.step-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 16px);
    background: rgba(82, 183, 136, 0.3);
    transform: translateX(-50%);
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.15);
    border: 2px solid rgba(82, 183, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step-circle svg {
    width: 32px;
    height: 32px;
    color: var(--green-pale);
}

.process-step:hover .step-circle {
    background: var(--green-light);
    border-color: var(--green-pale);
}

.process-step[data-step]::before {
    content: attr(data-step);
    position: absolute;
    top: -8px;
    left: 52px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--green-pale);
    background: var(--green-dark);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 1px;
}

.step-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    transition: var(--transition);
}

.process-step:hover .step-content {
    background: rgba(255,255,255,0.1);
    border-color: rgba(82,183,136,0.4);
}

.step-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.step-duration {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-pale);
    background: rgba(82, 183, 136, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(82, 183, 136, 0.3);
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 100px 0;
    background: var(--stone-pale);
    overflow: hidden;
}

.testimonials-slider { position: relative; overflow: hidden; }

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--green-ghost);
}

@media (min-width: 768px) {
    .testimonial-card { min-width: calc(50% - 12px); }
}

@media (min-width: 1024px) {
    .testimonial-card { min-width: calc(33.333% - 16px); }
}

.testimonial-rating { margin-bottom: 16px; }

.testimonial-rating span {
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--stone-mid);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--green-ghost);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-ghost);
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--green-dark);
}

.author-info span {
    font-size: 13px;
    color: var(--stone-light);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    color: var(--green-main);
}

.slider-btn:hover {
    background: var(--green-main);
    border-color: var(--green-main);
}

.slider-btn:hover svg { color: var(--white); }

.slider-dots { display: flex; gap: 8px; }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-ghost);
    border: 2px solid var(--green-pale);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--green-main);
    border-color: var(--green-main);
    transform: scale(1.3);
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.faq-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 600px;
}

.faq-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green-dark);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--green-pale);
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-item {
    border-bottom: 1px solid var(--stone-pale);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    transition: var(--transition);
    background: none;
    border: none;
}

.accordion-header:hover { color: var(--green-mid); }
.accordion-header.active { color: var(--green-mid); }

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--stone-pale);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--stone-mid);
    border-radius: 2px;
    transition: var(--transition);
}

.accordion-icon::before { width: 10px; height: 2px; }
.accordion-icon::after { width: 2px; height: 10px; }

.accordion-header.active .accordion-icon {
    background: var(--green-main);
}

.accordion-header.active .accordion-icon::before { background: var(--white); }
.accordion-header.active .accordion-icon::after {
    background: var(--white);
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body.open { max-height: 400px; }

.accordion-body p {
    color: var(--stone-light);
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 20px;
}

/* === CTA Banner === */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-mid) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 36px;
}

.btn-cta {
    display: inline-block;
    background: var(--green-light);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(82, 183, 136, 0.4);
}

.btn-cta:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* === Contact Section === */
.contact-section {
    padding: 100px 0;
    background: var(--stone-pale);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--green-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green-main);
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p, .contact-details a {
    font-size: 15px;
    color: var(--stone-mid);
    line-height: 1.6;
}

.contact-details a:hover { color: var(--green-main); }

/* === Contact Form === */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--stone-mid);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--stone-dark);
    background: var(--stone-pale);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

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

.field-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    min-height: 18px;
}

.form-consent { display: flex; flex-direction: column; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--stone-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--green-pale);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--green-main);
    border-color: var(--green-main);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.checkbox-label a { color: var(--green-main); text-decoration: underline; }

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--green-main), var(--green-mid));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green-main));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.4);
}

/* === Form Success === */
#formSuccess {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: var(--radius-md);
    border: 2px solid #86efac;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(45,106,79,0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

#formSuccess h3 {
    font-size: 28px;
    color: var(--green-dark);
    margin-bottom: 12px;
}

#formSuccess p {
    color: var(--stone-mid);
    font-size: 16px;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
}

/* === Footer === */
.site-footer { background: var(--green-dark); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--green-pale);
    padding-left: 4px;
}

.footer-contact-list { gap: 16px !important; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list svg {
    width: 16px;
    height: 16px;
    color: var(--green-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list span,
.footer-contact-list a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.footer-contact-list a:hover { color: var(--green-pale); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-legal-links a:hover { color: var(--green-pale); }

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 9999;
    border: 1px solid var(--green-ghost);
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { transform: translateY(120%); pointer-events: none; }

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }

.cookie-text h4 {
    font-size: 16px;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--stone-light);
    line-height: 1.6;
}

.cookie-text a { color: var(--green-main); text-decoration: underline; }

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn-customize,
.cookie-btn-reject,
.cookie-btn-accept {
    padding: 10px 18px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-customize {
    background: var(--stone-pale);
    color: var(--stone-mid);
}

.cookie-btn-customize:hover { background: #e5e7eb; }

.cookie-btn-reject {
    background: transparent;
    color: var(--stone-mid);
    border: 2px solid var(--stone-pale);
}

.cookie-btn-reject:hover {
    border-color: var(--stone-light);
    color: var(--stone-dark);
}

.cookie-btn-accept {
    background: var(--green-main);
    color: var(--white);
    border: 2px solid var(--green-main);
}

.cookie-btn-accept:hover { background: var(--green-dark); border-color: var(--green-dark); }

.cookie-customize-panel {
    border-top: 1px solid var(--stone-pale);
    margin-top: 20px;
    padding-top: 20px;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--stone-pale);
    border-radius: var(--radius-sm);
}

.cookie-option-info strong {
    display: block;
    font-size: 13px;
    color: var(--stone-dark);
}

.cookie-option-info span {
    font-size: 11px;
    color: var(--stone-light);
}

.cookie-toggle { position: relative; cursor: pointer; }
.cookie-toggle.disabled { cursor: not-allowed; opacity: 0.6; }
.cookie-toggle input { display: none; }

.toggle-slider {
    display: block;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 100px;
    position: relative;
    transition: var(--transition);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .toggle-slider { background: var(--green-main); }
.cookie-toggle input:checked + .toggle-slider::after { transform: translateX(20px); }

/* === Animations === */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos][data-aos-delay="600"] { transition-delay: 0.6s; }

/* === Responsive === */
@media (max-width: 1024px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: var(--shadow-md);
        gap: 4px;
    }

    .nav-menu.open { display: flex; }
    .nav-link { color: var(--stone-dark) !important; }

    .hamburger { display: flex; }

    .hero-stats { gap: 24px; }
    .stat-number { font-size: 28px; }

    .process-step { grid-template-columns: 60px 1fr; gap: 20px; }
    .step-circle { width: 60px; height: 60px; }
    .step-circle svg { width: 24px; height: 24px; }
    .step-connector { left: 30px; top: 62px; }
    .process-step[data-step]::before { left: 40px; }

    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }

    .cookie-banner-inner { flex-direction: column; }
    .cookie-actions { width: 100%; }
    .cookie-btn-customize, .cookie-btn-reject, .cookie-btn-accept { flex: 1; }

    .testimonial-card { min-width: 100%; }

    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal-links { justify-content: center; }
    .section-header { margin-bottom: 40px; }
}