/* ==========================================================================
   Arbora LT — Light Theme Design System
   Matches the approved screenshot design
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --arbora-green: #2D6A1E;
    --arbora-green-light: #3A8428;
    --arbora-green-lighter: #E8F2E4;
    --arbora-green-bg: #F0F6ED;
    --arbora-dark: #1C2E1A;
    --arbora-dark-light: #243822;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --container-max: 76rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-full: 9999px;
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.8;
    font-size: 14px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ---------- Layout ---------- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 640px) {
    .section-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* ---------- Typography ---------- */
.section-label {
    color: var(--arbora-green);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 2.5rem; }
}

.text-green { color: var(--arbora-green); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background-color: var(--arbora-green);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-primary:hover {
    background-color: var(--arbora-green-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 30, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-main);
}

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

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-full { width: 100%; }

/* ---------- Icons ---------- */
.icon-sm { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-md { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* ==========================================================================
   NAVBAR — Dark green bg, white text
   ========================================================================== */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--arbora-dark);
    transition: box-shadow var(--transition-normal);
}

.site-navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .navbar-inner { height: 4.5rem; }
}

.navbar-logo img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .navbar-logo img { height: 2.25rem; }
}

/* Desktop nav links */
.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-links { display: flex; }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link-underline {
    display: block;
    height: 2px;
    width: 0;
    background: var(--arbora-green-light);
    border-radius: 1px;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 2px;
}

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

/* Mobile menu button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* Mobile menu panel */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--arbora-dark);
}

.mobile-menu.open { display: flex; }

@media (min-width: 768px) {
    .mobile-menu { display: none !important; }
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    transition: color var(--transition-normal);
}

.mobile-menu a:hover { color: var(--white); }

/* Navbar CTA button — green pill on dark navbar */
.btn-navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--arbora-green);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    font-family: var(--font-main);
}

.btn-navbar-cta:hover {
    background: var(--arbora-green-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 30, 0.3);
}

/* ==========================================================================
   HERO — Split layout: text left, 2x2 photo grid right
   ========================================================================== */
.hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: var(--white);
}

@media (min-width: 768px) {
    .hero { padding-top: 7rem; padding-bottom: 4rem; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-content {
    max-width: 32rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .hero-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.25rem; }
}

.hero-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 28rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .hero-stat-value { font-size: 1.75rem; }
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 0.125rem;
}

/* Photo grid */
.hero-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    aspect-ratio: 4 / 5;
}

/* ==========================================================================
   SERVICES — 2x2 cards with overlay text
   ========================================================================== */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-header-right {
    max-width: 26rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
    text-align: right;
}

@media (max-width: 767px) {
    .services-header-right { text-align: left; }
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(10, minmax(0, 1fr));
        height: 36vw;
        min-height: 360px;
        max-height: 520px;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

@media (min-width: 640px) {
    .service-card {
        aspect-ratio: unset;
        min-height: 0;
    }

    /* Masonry interlocking: tall/short cards on alternating diagonal */
    .service-card:nth-child(1) { grid-row: 1 / 7; }
    .service-card:nth-child(2) { grid-row: 1 / 5; }
    .service-card:nth-child(3) { grid-row: 7 / 11; }
    .service-card:nth-child(4) { grid-row: 5 / 11; }
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 45%, transparent 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.75rem;
    color: var(--white);
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .service-card-title { font-size: 1.25rem; }
}

.service-card-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .service-card-desc { font-size: 0.875rem; }
}

.services-footer {
    text-align: center;
    margin-top: 2rem;
}

.services-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color var(--transition-normal);
}

.services-footer a:hover { color: var(--arbora-green); }

/* ==========================================================================
   VALUES — Numbered cards on light bg
   ========================================================================== */
.values-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

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

@media (min-width: 640px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: var(--arbora-green);
    box-shadow: 0 4px 16px rgba(45, 106, 30, 0.08);
}

.value-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.value-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(145deg, #c8e0c0 0%, var(--arbora-green-lighter) 40%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--arbora-green);
}

.value-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(145deg, #c8e0c0 0%, var(--arbora-green-lighter) 40%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--arbora-green);
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.partner-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--arbora-green);
    flex-shrink: 0;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
}

.value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================================================
   GALLERY — Horizontal scroll strip on dark bg
   ========================================================================== */
.gallery-section {
    padding: 4rem 0 2.5rem;
    background: linear-gradient(160deg, #2D5A24 0%, #1C3A1A 40%, var(--arbora-dark) 100%);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.gallery-header .section-label { color: var(--arbora-green-lighter); }
.gallery-header .section-title { color: var(--white); }

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.gallery-link:hover {
    border-color: var(--arbora-green-light);
    background: var(--arbora-green-light);
    color: var(--white);
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: 1.25rem;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    scrollbar-width: none;
    will-change: scroll-position;
}

@media (min-width: 640px) {
    .gallery-scroll { scroll-padding-left: 2rem; }
}

@media (min-width: 1024px) {
    .gallery-scroll { scroll-padding-left: 2.5rem; }
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-scroll { cursor: grab; }
.gallery-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-scroll.dragging img { pointer-events: none; }

.gallery-item {
    flex: 0 0 auto;
    width: 18rem;
    scroll-snap-align: start;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gallery-item:first-child {
    margin-left: 1.25rem;
}

.gallery-item:last-child {
    margin-right: 1.25rem;
}

@media (min-width: 640px) {
    .gallery-item:first-child { margin-left: 2rem; }
    .gallery-item:last-child { margin-right: 2rem; }
}

@media (min-width: 1024px) {
    .gallery-item:first-child { margin-left: max(2.5rem, calc((100% - var(--container-max)) / 2 + 2.5rem)); }
    .gallery-item:last-child { margin-right: 2.5rem; }
}

@media (min-width: 768px) {
    .gallery-item { width: 22rem; }
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

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

.gallery-caption {
    padding: 0.875rem 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.gallery-caption-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-caption-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   GALLERY GRID — full-page gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-grid .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-grid .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-item-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76, 175, 80, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-grid .gallery-item:hover .gallery-item-hover-overlay {
    opacity: 1;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-item-bar {
    width: 3px;
    height: 1.25rem;
    background: var(--arbora-green);
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .gallery-grid .gallery-item.featured {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid .gallery-item.featured {
        grid-column: span 1;
    }
}

/* ==========================================================================
   TESTIMONIALS — 3 review cards
   ========================================================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

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

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

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: border-color var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--arbora-green);
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: #FBBF24;
    fill: #FBBF24;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--arbora-green-lighter) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--arbora-green);
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ==========================================================================
   PARTNERS — Logo row on light bg
   ========================================================================== */
.partners-section {
    padding: 3.5rem 0;
    background: var(--gray-50);
}

.partners-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

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

.partner-logo {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    border-color: var(--arbora-green);
    color: var(--arbora-green);
}

/* ==========================================================================
   CTA — Green background "Pradėkime pokalbį"
   ========================================================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--arbora-green-bg);
    text-align: center;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    background: var(--arbora-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .cta-title { font-size: 2.25rem; }
}

.cta-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    max-width: 28rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-cta-outline:hover {
    border-color: var(--arbora-green);
    color: var(--arbora-green);
}

/* ==========================================================================
   FOOTER — Compact dark footer
   ========================================================================== */
.site-footer {
    background: var(--arbora-dark);
    padding: 1.75rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo img {
    height: 1.75rem;
    width: auto;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-normal);
}

.footer-nav a:hover { color: var(--white); }

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-right a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-normal);
}

.footer-right a:hover { color: var(--white); }

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.page-header {
    padding: 7rem 0 3rem;
    text-align: center;
    background: var(--gray-50);
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
}

.page-header p {
    color: var(--gray-500);
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Services inner page */
.services-page-section {
    padding: 3rem 0;
}

.services-page-section + .services-page-section {
    border-top: 1px solid var(--gray-200);
}

.services-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .services-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-list { grid-template-columns: repeat(3, 1fr); }
}

.service-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.service-item:hover {
    border-color: var(--arbora-green);
    box-shadow: 0 2px 12px rgba(45, 106, 30, 0.08);
}

.service-item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--gray-500);
    font-size: 0.8125rem;
    line-height: 1.7;
}

/* Permits page */
.permits-content {
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.permits-block { margin-bottom: 2.5rem; }

.permits-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--arbora-green);
}

.permits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.permits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.permits-list li svg {
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: var(--arbora-green);
}

.permits-highlight {
    background: var(--arbora-green-lighter);
    border-left: 4px solid var(--arbora-green);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* About page */
.about-page-section {
    padding: 3rem 0 5rem;
}
.about-content {
    max-width: 48rem;
    margin: 0 auto;
}

.about-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .about-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.about-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--arbora-green);
}

.about-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

/* About — Values grid */
.about-values-block {
    margin-top: 4rem;
    margin-bottom: 3rem;
}
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
@media (min-width: 640px) {
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .about-values-grid { grid-template-columns: repeat(4, 1fr); }
}
.about-value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}
.about-value-card:hover {
    border-color: var(--arbora-green);
    box-shadow: 0 4px 16px rgba(45, 106, 30, 0.08);
}
.about-value-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(145deg, #c8e0c0 0%, var(--arbora-green-lighter) 40%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.about-value-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--arbora-green);
}
.about-value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.about-value-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* About — Partners block */
.about-partners-block {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}
.about-partners-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.about-partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.about-partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition-normal);
}
.about-partner-pill:hover {
    border-color: var(--arbora-green);
    color: var(--arbora-green);
}
.about-partner-pill svg {
    width: 1rem;
    height: 1rem;
    color: var(--arbora-green);
    flex-shrink: 0;
}

/* Team section */
.team-section {
    padding: 4rem 0;
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}
.team-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}
.team-card:hover {
    border-color: var(--arbora-green);
    box-shadow: 0 4px 16px rgba(45,106,30,0.08);
}
.team-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--arbora-green), var(--arbora-green-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.team-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Certificates section */
.certificates-section {
    padding: 4rem 0;
    background: var(--gray-50);
}
.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 640px) {
    .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
.cert-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}
.cert-card:hover {
    border-color: var(--arbora-green);
    box-shadow: 0 4px 16px rgba(45,106,30,0.08);
}
.cert-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--arbora-green-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--arbora-green);
}
.cert-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}
.cert-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.25rem;
}
.cert-issuer {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}
.cert-year {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--arbora-green-lighter);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--arbora-green);
}

/* Contact form */
.contact-form label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-900);
    font-family: var(--font-main);
    font-size: 0.9375rem;
    transition: border-color var(--transition-normal);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--arbora-green);
}

.contact-form textarea { min-height: 7rem; resize: vertical; }

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background-color: var(--arbora-green);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
    background-color: var(--arbora-green-light);
}

/* Contact page grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    transition: all var(--transition-normal);
}

a.contact-detail:hover {
    background: var(--arbora-green-lighter);
}

.contact-detail-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--arbora-green-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--arbora-green);
}

.contact-detail-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.contact-detail-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: color var(--transition-normal);
}

a.contact-detail:hover .contact-detail-value {
    color: var(--arbora-green);
}

/* Contact page — redesigned two-panel layout */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 64rem;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
    .contact-page-grid { grid-template-columns: 2fr 3fr; }
}

/* Left: dark company panel */
.contact-company-panel {
    background: #1C2E1A !important;
    color: #fff !important;
    padding: 2.5rem;
}
.contact-company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--arbora-green-light);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}
.contact-company-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-company-row {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.contact-company-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--arbora-green-light);
    margin-top: 0.125rem;
}
.contact-company-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.125rem;
}
.contact-company-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}
.contact-company-value a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.contact-company-value a:hover {
    color: var(--arbora-green-light);
}

/* Right: form panel */
.contact-form-panel {
    background: var(--gray-50);
    padding: 2.5rem;
}
.contact-form-heading {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

/* CF7 form rows */
.contact-form-panel .wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 640px) {
    .contact-form-panel .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* File upload styling */
.contact-form-panel .wpcf7-form .file-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: border-color var(--transition-normal);
    margin-top: 0.5rem;
}
.contact-form-panel .wpcf7-form .file-upload-area:hover {
    border-color: var(--arbora-green);
}

/* Privacy checkbox */
.contact-form-panel .wpcf7-form .privacy-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 1rem 0;
}
.contact-form-panel .wpcf7-form .privacy-row a {
    color: var(--arbora-green);
    font-weight: 600;
}

/* CF7 file input styling */
.contact-form-panel .wpcf7-form input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    cursor: pointer;
}

/* Submit button row */
.contact-form-panel .wpcf7-form .submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.card-glass {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.fade-in.visible {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.stagger-children .fade-in:nth-child(1) { animation-delay: 0.05s; }
.stagger-children .fade-in:nth-child(2) { animation-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { animation-delay: 0.15s; }
.stagger-children .fade-in:nth-child(4) { animation-delay: 0.2s; }
.stagger-children .fade-in:nth-child(5) { animation-delay: 0.25s; }
.stagger-children .fade-in:nth-child(6) { animation-delay: 0.3s; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.relative { position: relative; }
.z-10 { z-index: 10; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   GUTENBERG BLOCK COMPATIBILITY
   ========================================================================== */
.wp-block-group {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.hero-photo-grid .wp-block-image,
.gallery-scroll .wp-block-image,
.gallery-grid .wp-block-image {
    margin: 0;
}

.wp-block-image figure,
.wp-block-image img {
    margin: 0;
}

/* ==========================================================================
   PROCESS STEPS (Kaip dirbame)
   ========================================================================== */
.process-section {
    padding: 5rem 0;
    background: var(--off-white);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.process-step {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: box-shadow var(--transition-normal);
}
.process-step:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--arbora-green);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}
.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.5rem;
}
.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
}
.faq-list {
    max-width: 48rem;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}
.faq-item:hover {
    border-color: var(--arbora-green-light);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--arbora-dark);
    text-align: left;
    gap: 1rem;
}
.faq-question:hover {
    color: var(--arbora-green);
}
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color var(--transition-normal);
    color: var(--gray-400);
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--arbora-green);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* DUK page — grouped FAQ sections */
.faq-section--grouped {
    padding: 2rem 0;
}
.faq-section--grouped:first-of-type {
    padding-top: 3rem;
}
.faq-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 1.25rem;
}
.faq-group-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.faq-group-title a:hover {
    color: var(--arbora-green);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
    padding: 5rem 0;
    background: var(--off-white);
}
.pricing-description {
    text-align: center;
    color: var(--gray-600);
    max-width: 40rem;
    margin: 1rem auto 0;
    font-size: 1rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow var(--transition-normal);
}
.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.pricing-card--highlighted {
    border-color: var(--arbora-green);
    box-shadow: 0 4px 20px rgba(45,106,30,0.15);
}
.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--arbora-green);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--arbora-green);
    line-height: 1.2;
}
.pricing-period {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}
.pricing-feature svg {
    color: var(--arbora-green);
    flex-shrink: 0;
}
.pricing-footer {
    text-align: center;
    color: var(--gray-500);
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   CONTACT MAP
   ========================================================================== */
.contact-map {
    margin-top: 3rem;
}

/* ==========================================================================
   BLOG / ARCHIVE
   ========================================================================== */
.blog-archive {
    padding: 3rem 0 5rem;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.post-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}
.post-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.post-card-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.post-card-body {
    padding: 1.5rem;
}
.post-card-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}
.post-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.post-card-title a {
    color: inherit;
    text-decoration: none;
}
.post-card-title a:hover {
    color: var(--arbora-green);
}
.post-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.post-card-link {
    font-weight: 600;
    color: var(--arbora-green);
    text-decoration: none;
    font-size: 0.9rem;
}
.post-card-link:hover {
    text-decoration: underline;
}

/* Single post */
.single-post-content {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 0 5rem;
}
.single-post-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--arbora-dark);
    margin-bottom: 0.75rem;
}
.single-post-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}
.single-post-content .entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}
.single-post-content .entry-content h2,
.single-post-content .entry-content h3 {
    color: var(--arbora-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.single-post-content .entry-content p {
    margin-bottom: 1.25rem;
}
.single-post-content .entry-content img {
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.pagination a {
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}
.pagination a:hover {
    background: var(--arbora-green-lighter);
    border-color: var(--arbora-green);
    color: var(--arbora-green);
}
.pagination .current {
    background: var(--arbora-green);
    color: var(--white);
    border: 1px solid var(--arbora-green);
}

/* ==========================================================================
   SERVICE DETAIL (Individual service pages)
   ========================================================================== */
.service-detail-section {
    padding: 4rem 0;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: box-shadow var(--transition-normal);
}
.service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-detail-icon--problem {
    background: #FEF3C7;
    color: #D97706;
}
.service-detail-icon--solution {
    background: var(--arbora-green-lighter);
    color: var(--arbora-green);
}
.service-detail-icon--benefits {
    background: #DBEAFE;
    color: #2563EB;
}
.service-detail-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.75rem;
}
.service-detail-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}
.service-detail-benefits {
    list-style: none;
}
.service-detail-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}
.service-detail-benefits svg {
    color: var(--arbora-green);
    flex-shrink: 0;
}

/* Service rich content (SEO text) */
.service-content-section {
    padding: 4rem 0;
    background: var(--white);
}
.service-content-inner {
    max-width: 48rem;
    margin: 0 auto;
}
.service-content-text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.9;
}
.service-content-text p {
    margin-bottom: 1.25rem;
}
.service-content-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.service-content-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.service-content-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.3rem 0;
}
.service-content-text ul li::before {
    content: '✓';
    color: var(--arbora-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Service gallery grid */
.service-gallery-section {
    padding: 5rem 0;
    background: var(--gray-50);
}
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .service-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-gallery-item:hover img {
    transform: scale(1.05);
}

/* Service item links on Paslaugos hub */
.service-item-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.service-item-link:hover {
    color: var(--arbora-green);
}
.service-link-arrow {
    margin-left: 0.25rem;
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}
.service-item:hover .service-link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Category SVG icon in section heading */
.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--arbora-green-lighter);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}
.category-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--arbora-green);
}

/* Service Card V2 — image background with hover overlay */
.service-card-v2 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 4 / 3;
    text-decoration: none;
    color: var(--white);
}
.service-card-v2 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.service-card-v2:hover img {
    transform: scale(1.08);
}
.service-card-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: background var(--transition-normal);
}
.service-card-v2:hover .service-card-v2-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.15) 100%);
}
.service-card-v2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}
.service-card-v2-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0;
    transition: margin var(--transition-normal);
}
.service-card-v2:hover .service-card-v2-title {
    margin-bottom: 0.5rem;
}
.service-card-v2-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.service-card-v2:hover .service-card-v2-desc {
    max-height: 6rem;
    opacity: 1;
}

/* Override services-list grid for card v2 layout */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .services-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-list { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   PROJECTS / PORTFOLIO
   ========================================================================== */
.projects-archive {
    padding: 3rem 0 5rem;
}
.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.project-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.project-filter-btn:hover {
    border-color: var(--arbora-green);
    color: var(--arbora-green);
}
.project-filter-btn.active {
    background: var(--arbora-green);
    border-color: var(--arbora-green);
    color: var(--white);
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.project-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}
.project-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.project-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.project-card-body {
    padding: 1.5rem;
}
.project-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.project-category-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--arbora-green-lighter);
    color: var(--arbora-green);
    font-size: 0.75rem;
    font-weight: 600;
}
.project-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arbora-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.project-card-title a {
    color: inherit;
    text-decoration: none;
}
.project-card-title a:hover {
    color: var(--arbora-green);
}
.project-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Single project */
.single-project-content {
    padding: 3rem 0 5rem;
}
.single-project-image {
    margin-bottom: 2rem;
}
.single-project-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    max-height: 500px;
    object-fit: cover;
}
.project-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}
.project-navigation a {
    color: var(--arbora-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.project-navigation a:hover {
    text-decoration: underline;
}
