/* =============================================
   HeEtonIT – Zarządzanie Zasobami Naturalnymi
   Main Stylesheet
   ============================================= */

/* ---- 1. CSS Variables & Reset ---- */
:root {
    --color-forest: #1a3d2b;
    --color-forest-mid: #2d6a4f;
    --color-forest-light: #52b788;
    --color-forest-pale: #b7e4c7;
    --color-earth: #8b5e3c;
    --color-earth-light: #d4a574;
    --color-sky: #e8f5e9;
    --color-accent: #40916c;
    --color-accent-hover: #1b4332;
    --color-gold: #d4a017;
    --color-text-dark: #1a2e1f;
    --color-text-mid: #3a5040;
    --color-text-light: #6b8f71;
    --color-white: #ffffff;
    --color-off-white: #f7fdf9;
    --color-border: #d8eedf;
    --color-bg-light: #f0f9f2;
    --color-bg-dark: #0d2318;

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 12px rgba(26, 61, 43, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 61, 43, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 61, 43, 0.18);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::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(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ---- 2. Container & Layout Utilities ---- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- 3. Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ---- 4. Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary-custom {
    background: var(--color-forest-light);
    color: var(--color-white);
    border-color: var(--color-forest-light);
}

.btn-primary-custom:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-white);
}

/* ---- 5. Section Headers ---- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--color-forest-pale);
    color: var(--color-forest-mid);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
}

.section-header.light .section-title {
    color: var(--color-white);
}

.section-header.light .section-subtitle {
    color: rgba(255,255,255,0.8);
}

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

.navbar.scrolled {
    background: rgba(13, 35, 24, 0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-white);
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-link {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

.nav-link.nav-cta {
    background: var(--color-forest-light);
    color: var(--color-white);
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    background: var(--color-forest-pale);
    color: var(--color-forest);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,35,24,0.88) 0%, rgba(45,106,79,0.70) 50%, rgba(13,35,24,0.80) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(82, 183, 136, 0.2);
    border: 1px solid rgba(82, 183, 136, 0.4);
    color: var(--color-forest-pale);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    animation: fadeInDown 0.8s ease both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 800px;
}

.hero-title .highlight {
    color: var(--color-forest-light);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-forest-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

/* ---- 8. Benefits Section ---- */
.benefits-section {
    padding: 100px 0;
    background: var(--color-off-white);
}

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

.benefit-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-forest-light), var(--color-forest-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-forest-light);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

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

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

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

.service-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.service-card.featured .service-image {
    height: auto;
    min-height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 35, 24, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.service-btn {
    background: var(--color-forest-light);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.service-content {
    padding: 28px;
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--color-text-mid);
    padding-left: 20px;
    position: relative;
}

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

/* ---- 10. Process Section ---- */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-forest) 50%, var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-forest-light), var(--color-forest-light), transparent);
    opacity: 0.4;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    padding: 32px 0;
}

.step-connector {
    display: none;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-forest-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(82,183,136,0.15);
    transition: var(--transition);
}

.process-step:hover .step-circle {
    box-shadow: 0 0 0 12px rgba(82,183,136,0.25);
    transform: scale(1.1);
}

.step-content {
    padding: 8px 0;
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.step-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
}

.step-duration {
    display: inline-block;
    background: rgba(82,183,136,0.15);
    border: 1px solid rgba(82,183,136,0.3);
    color: var(--color-forest-pale);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    margin-top: 14px;
}

/* ---- 11. Testimonials Section ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-forest-pale);
    line-height: 1;
}

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

.testimonial-card.featured-testimonial {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-mid) 100%);
    border-color: transparent;
}

.featured-testimonial::before {
    color: rgba(255,255,255,0.15);
}

.featured-testimonial .testimonial-rating {
    color: var(--color-gold);
}

.featured-testimonial .testimonial-text {
    color: rgba(255,255,255,0.9);
}

.featured-testimonial strong {
    color: var(--color-white) !important;
}

.featured-testimonial span {
    color: rgba(255,255,255,0.7) !important;
}

.testimonial-rating {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.93rem;
    color: var(--color-text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Partners Strip */
.partners-strip {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    border: 1px solid var(--color-border);
}

.partners-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 10px 20px;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: var(--color-forest-light);
    color: var(--color-forest-mid);
}

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

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

.faq-header-col .section-title {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.faq-header-col .section-tag {
    margin-bottom: 12px;
}

.faq-header-col p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-cta-btn {
    margin-bottom: 32px;
}

.faq-image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-image-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.faq-image-box:hover img {
    transform: scale(1.04);
}

.faq-list-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    transition: var(--transition);
    gap: 16px;
}

.faq-question span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.faq-question:hover span {
    color: var(--color-forest-mid);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-forest-mid);
    transition: var(--transition);
    line-height: 1;
}

.faq-item.active .faq-toggle {
    background: var(--color-forest-light);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-item.active .faq-question span {
    color: var(--color-forest-mid);
}

.faq-answer {
    display: none;
    padding: 0 0 22px;
}

.faq-answer p {
    font-size: 0.93rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ---- 13. Contact Section ---- */
.contact-section {
    padding: 100px 0;
    background: var(--color-off-white);
}

.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: 18px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--color-forest-light);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.contact-details a {
    color: var(--color-forest-mid);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--color-forest-light);
}

.contact-details span {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
}

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

/* ---- 14. Contact Form ---- */
.form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.form-wrapper h3 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-wrapper > p {
    font-size: 0.93rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--color-text-dark);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-forest-light);
}

.form-checkbox label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.83rem;
    color: var(--color-text-light);
    line-height: 1.5;
    cursor: pointer;
}

.field-error {
    display: block;
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 5px;
    min-height: 18px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    margin-top: 8px;
}

/* ---- 15. Success Message ---- */
#formSuccess {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 24px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

#formSuccess h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a6b2f;
    margin-bottom: 10px;
}

#formSuccess p {
    color: #2d7a42;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- 16. Footer ---- */
.main-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.75);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
    color: var(--color-white);
}

.footer-nav-col h4,
.footer-contact-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 20px;
}

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

.footer-nav-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-nav-col a:hover {
    color: var(--color-forest-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.fc-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: var(--color-forest-light);
}

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

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

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

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

.footer-legal-links a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--color-forest-light);
}

/* ---- 17. Cookie Consent ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-bg-dark);
    border-top: 3px solid var(--color-forest-light);
    padding: 20px 24px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

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

.cookie-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-forest-light);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept {
    background: var(--color-forest-light);
    color: var(--color-white);
    border-color: var(--color-forest-light);
}

.cookie-accept:hover {
    background: var(--color-forest-mid);
    border-color: var(--color-forest-mid);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border-color: rgba(255,255,255,0.2);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}

.cookie-customize {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border-color: transparent;
    padding: 10px 14px;
}

.cookie-customize:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.cookie-customize-panel {
    max-width: 1240px;
    margin: 16px auto 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.cookie-option-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-white);
    margin-bottom: 3px;
}

.cookie-option-info span {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.5);
}

.cookie-toggle {
    width: 18px;
    height: 18px;
    accent-color: var(--color-forest-light);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

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

/* Scroll Reveal */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- 19. Responsive Design ---- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .service-card.featured {
        grid-column: span 1;
        display: block;
    }
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header-col {
        order: 1;
    }

    .faq-list-col {
        order: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

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

    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        gap: 28px;
    }

    .process-timeline::before {
        left: 36px;
    }

    .process-step {
        grid-template-columns: 72px 1fr;
        gap: 20px;
    }

    .step-circle {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

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

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

    .hero-actions .btn {
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
    }

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

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