/* ================================================================
   AK-VIT CORPORATE WEBSITE
   ================================================================ */

:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --green: #059669;
    --green-dark: #047857;
    --green-light: #10b981;
    --dark: #1f2937;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

/* ── Navbar ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .3s, background .3s;
}

.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    background: rgba(255,255,255,.98);
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 0;
}

.site-nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-nav-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.site-nav-menu {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.site-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .1rem;
    margin: 0;
    padding: 0;
}

.site-nav-link {
    display: block;
    padding: .5rem .9rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-radius: .5rem;
    transition: all .2s;
}

.site-nav-link:hover {
    color: var(--green);
    background: rgba(5,150,105,.06);
}

.site-nav-link.active {
    color: var(--green);
    font-weight: 600;
}

.site-nav-dealer-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.2rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--green);
    border-radius: .5rem;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    margin-left: .75rem;
}

.site-nav-dealer-btn:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5,150,105,.3);
}

.site-nav-mobile-actions {
    display: none;
    align-items: center;
    gap: .5rem;
}

.site-nav-dealer-btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--green);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .4rem .7rem;
    border-radius: .5rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

.site-nav-dealer-btn-mobile:hover {
    background: var(--green-dark);
    color: #fff;
}

.site-nav-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: 8px 9px;
    cursor: pointer;
}

.site-nav-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 1px;
    transition: all .3s;
}

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

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

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

@media (max-width: 991px) {
    .site-nav-mobile-actions { display: flex; }
    .site-nav-toggler { display: flex; }

    .site-nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        padding: 1rem;
        gap: .5rem;
    }

    .site-nav-menu.open { display: flex; }

    .site-nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav-link {
        padding: .75rem 1rem;
    }

    .site-nav-dealer-btn {
        margin-left: 0;
        justify-content: center;
        padding: .75rem 1rem;
    }
}
/* ── Transparent Navbar for Hero ── */
.site-nav.nav-transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-nav.nav-transparent .site-nav-link {
    color: var(--white);
}
.site-nav.nav-transparent .site-nav-toggler {
    border-color: rgba(255,255,255,0.4);
}
.site-nav.nav-transparent .site-nav-toggler span {
    background: var(--white);
}

.site-nav.nav-transparent.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-nav.nav-transparent.scrolled .site-nav-link {
    color: var(--dark);
}
.site-nav.nav-transparent.scrolled .site-nav-link:hover {
    color: var(--green);
}
.site-nav.nav-transparent.scrolled .site-nav-toggler {
    border-color: #e5e7eb;
}
.site-nav.nav-transparent.scrolled .site-nav-toggler span {
    background: var(--dark);
}


/* ── Hero Slider ── */
.hero-section {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--dark);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 3rem 0;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    border-radius: .6rem;
    text-decoration: none;
    transition: all .25s;
}

.hero-btn:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,38,38,.35);
}

.hero-static {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-static .hero-content {
    max-width: 650px;
}

@media (max-width: 768px) {
    .hero-section { margin-top: 64px; }
    .hero-slide, .hero-static { min-height: 400px; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
}


/* ── Hero Split-Screen ── */
.hero-split {
    display: flex !important;
    flex-direction: row;
    height: 100vh;
    background: linear-gradient(135deg, #1a5c2e 0%, #2d8a4e 50%, #3da861 100%);
}

.hero-split-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    z-index: 2;
}

.hero-split-left .hero-content {
    max-width: 520px;
    padding: 0;
}

.hero-split-left .hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-split-left .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-shadow: none;
}

.hero-split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-split-img {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
    animation: heroFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-split-left {
        flex: none;
        padding: 6rem 2rem 2rem;
        text-align: center;
    }
    .hero-split-left .hero-title {
        font-size: 2rem;
    }
    .hero-split-right {
        flex: 1;
        padding: 1rem;
    }
    .hero-split-img {
        max-width: 70%;
        max-height: 45vh;
    }
}

/* ── Hero Scroll Indicator ── */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    z-index: 10;
}
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 3px;
    z-index: 11;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { bottom: 42px; opacity: 1; }
    50% { bottom: 34px; opacity: 0.3; }
}

/* ── Section Titles ── */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* ── About Preview ── */
.about-preview {
    padding: 5rem 0;
    background: var(--white);
}

.about-preview-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
}

.about-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--green);
    background: transparent;
    border: 2px solid var(--green);
    border-radius: .5rem;
    text-decoration: none;
    transition: all .2s;
    margin-top: 1.5rem;
}

.about-preview-btn:hover {
    background: var(--green);
    color: var(--white);
}

/* ── Product Cards ── */
.products-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: all .3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e5e7eb;
}

.product-card-body {
    padding: 1.25rem;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .35rem;
}

.product-card-cat {
    font-size: .8rem;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.product-card-desc {
    font-size: .9rem;
    color: var(--gray);
    margin-top: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Product Watermark (Package Label Style) ── */
.product-watermark-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-watermark-label {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 140px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-top: 4px solid var(--red);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.product-watermark-label::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 33%;
    width: 34%;
    height: 4px;
    background: #f59e0b;
}

.product-watermark-label::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 67%;
    right: 0;
    height: 4px;
    background: var(--green);
}

.product-watermark-label img {
    display: block;
    width: 100%;
    height: auto;
}

.product-card:hover .product-watermark-label {
    transform: scale(1.05);
}

.product-watermark-lg {
    top: 25px;
    left: 25px;
    width: 200px;
    padding: 15px 18px;
}

/* ── Certificates Strip ── */
.cert-section {
    padding: 4rem 0;
    background: var(--white);
}

.cert-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.cert-slider {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: scrollCerts 30s linear infinite;
}

.cert-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollCerts {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 16px)); }
}

.cert-slider .cert-card {
    width: 220px;
    flex-shrink: 0;
}

.cert-card {
    position: relative;
    background: var(--white);
    padding: 1.15rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
}

.cert-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    color: var(--white);
    background: var(--green);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 6px 12px rgba(0,0,0,.18);
    border: 3px solid var(--white);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-color: rgba(5,150,105, 0.3);
}

.cert-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: .5rem;
}

.cert-card-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
}

/* Lightbox */
.cert-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: certFadeIn .2s ease;
}
.cert-lightbox.active { display: flex; }
.cert-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: .5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.cert-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,.15);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.cert-lightbox-close:hover { background: rgba(255,255,255,.3); }
@keyframes certFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Contact CTA ── */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    background: var(--white);
    border-radius: .6rem;
    text-decoration: none;
    transition: all .25s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    color: var(--green-dark);
}

/* ── Inner Page Header ── */
.page-header {
    margin-top: 76px;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, var(--gray-light) 100%);
    border-bottom: 1px solid #e5e7eb;
}

.page-header-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .25rem;
}

.page-header-breadcrumb {
    font-size: .85rem;
    color: var(--gray);
}

.page-header-breadcrumb a {
    color: var(--green);
    text-decoration: none;
}

@media (max-width: 768px) {
    .page-header { margin-top: 64px; padding: 2.5rem 0; }
    .page-header-title { font-size: 1.5rem; }
}

/* ── Inner Page Content ── */
.page-content {
    padding: 4rem 0;
}

/* ── About Page ── */
.about-hero-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    object-fit: cover;
}

.about-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 1rem;
}

.about-stat-item {
    text-align: center;
    min-width: 140px;
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.2;
}

.about-stat-label {
    font-size: .85rem;
    color: var(--gray);
    font-weight: 600;
    margin-top: .25rem;
}

.about-policy-card {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
}

.about-policy-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.about-policy-card p {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
}

.about-mv-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: all .3s;
}

.about-mv-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

.about-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.about-mv-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .75rem;
}

.about-mv-card p {
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: .5rem;
}

/* ── Branches ── */
.branch-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: all .3s ease;
    position: relative;
    text-align: center;
}

.branch-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    transform: translateY(-4px);
}

.branch-card-merkez {
    border: 2px solid var(--green);
    background: linear-gradient(135deg, rgba(5,150,105,0.03) 0%, rgba(16,185,129,0.06) 100%);
}

.branch-merkez-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
    letter-spacing: .5px;
}

.branch-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--green);
    transition: all .3s;
}

.branch-card:hover .branch-icon-circle {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.branch-icon-merkez {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
}

.branch-city {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .75rem;
}

.branch-info {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.7;
    text-align: left;
}

.branch-info-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .5rem;
}

.branch-info-item i {
    color: var(--green);
    font-size: .9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Contact Form ── */
.contact-form .form-label {
    font-size: .85rem;
    font-weight: 600;
    color: #374151;
}

.contact-form .form-control {
    border-radius: .5rem;
    padding: .65rem .9rem;
    border: 1.5px solid #e5e7eb;
    transition: all .2s;
}

.contact-form .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}

.contact-form .btn-submit {
    padding: .75rem 2rem;
    font-weight: 700;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: .5rem;
    transition: all .2s;
}

.contact-form .btn-submit:hover {
    background: var(--green-dark);
}

.contact-info-card {
    background: var(--gray-light);
    border-radius: .75rem;
    padding: 2rem;
    height: 100%;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .9rem;
}

.contact-info-item i {
    color: var(--green);
    font-size: 1.1rem;
    margin-top: .15rem;
}

/* ── Footer ── */
.site-footer {
    background: #111827;
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: .35rem;
    padding: 4px 8px;
}

.footer-desc {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
}

.footer-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .6rem;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
}

.footer-contact li i {
    color: var(--green-light);
    margin-top: .2rem;
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: .4rem;
    color: rgba(255,255,255,.5);
    font-size: 1rem;
    transition: all .2s;
}

.footer-social a:hover {
    background: var(--green);
    color: var(--white);
}

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

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    margin: 0;
}

/* ── Utilities ── */
.text-green { color: var(--green) !important; }
.text-red { color: var(--red) !important; }
.bg-green { background: var(--green) !important; }

/* ── Responsive ── */
@media (max-width: 576px) {
    .section-title { font-size: 1.5rem; }
    .cta-title { font-size: 1.5rem; }
    .about-preview { padding: 3rem 0; }
    .products-section { padding: 3rem 0; }
    .cert-section { padding: 3rem 0; }
    .page-content { padding: 2.5rem 0; }
}

/* ── IBAN Modal ── */
.iban-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.iban-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.iban-modal {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform .3s;
}
.iban-modal-overlay.active .iban-modal {
    transform: translateY(0);
}
.iban-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
}
.iban-modal h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.iban-company {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: .75rem;
    padding: .75rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.25rem;
    text-align: center;
}
.iban-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    margin-bottom: .75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}
.iban-bank {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    width: 100%;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.iban-number {
    font-size: .95rem;
    color: var(--gray);
    font-family: 'Courier New', monospace;
    letter-spacing: .5px;
    flex: 1;
}
.iban-copy-btn {
    background: var(--white);
    border: 1px solid #d1d5db;
    border-radius: .5rem;
    padding: .4rem .85rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: all .2s;
    white-space: nowrap;
}
.iban-copy-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.iban-copy-btn.copied {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* ── IBAN Button on Contact Page ── */
.btn-iban-open {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    border: none;
    border-radius: .6rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    width: 100%;
    justify-content: center;
}
.btn-iban-open:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5,150,105,.35);
}

/* ── Floating Action Button ── */
.fab-iban {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    border: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(5,150,105,.4);
    z-index: 999;
    transition: all .3s;
}
.fab-iban:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(5,150,105,.5);
}
@media (max-width: 991px) {
    .fab-iban {
        display: none !important;
    }
}

/* ── Splash Screen / Preloader ── */
html.hide-splash .preloader {
    display: none !important;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader-logo {
    max-width: 180px;
    height: auto;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
}
.preloader-steps {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}
.preloader-text {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textPulse 2s infinite ease-in-out;
}
@keyframes textPulse {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}
.chicken-print {
    opacity: 0;
    animation: walk 2.5s infinite;
    transform: rotate(90deg);
}
.chicken-print.step-1 {
    animation-delay: 0s;
}
.chicken-print.step-2 {
    animation-delay: 0.35s;
}
.chicken-print.step-3 {
    animation-delay: 0.70s;
}
.chicken-print.step-4 {
    animation-delay: 1.05s;
}
.chicken-print.step-5 {
    animation-delay: 1.40s;
}
@keyframes walk {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .7; transform: scale(0.95); }
}
