:root {
    --ink: #0c0c0c;
    --ink-muted: #3d3d3d;
    --paper: #ffffff;
    --canvas: #f6f6f6;
    --hairline: #ebebeb;
    --rule: #d8d8d8;
    --muted-text: #6e6e6e;
    --primary: var(--ink);
    --dark: var(--ink);
    --text-on-dark: #fafafa;
    --muted: var(--muted-text);
    --fw-body: 400;
    --fw-heading: 700;
    --lh-body: 1.6;
    --lh-subheading: 1.35;
    --lh-heading: 1.18;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: var(--fw-body);
    line-height: var(--lh-body);
    background: var(--canvas);
    color: var(--ink);
}

p,
li,
small,
label,
input,
textarea {
    font-weight: var(--fw-body);
    line-height: var(--lh-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: var(--fw-heading);
    line-height: var(--lh-heading);
    letter-spacing: -0.01em;
}

.hero-subtitle,
.page-hero-kicker,
.about-kicker,
.gallery-kicker,
.free-survey-kicker,
.contact-page-aside-kicker,
.contact-page-form-kicker {
    font-weight: var(--fw-heading) !important;
    line-height: var(--lh-subheading) !important;
}

.hero-content h1,
.page-hero-title,
.about-page-heading,
.service-detail-aside-title,
.contact-map-title {
    font-weight: var(--fw-heading) !important;
    line-height: var(--lh-heading) !important;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
}

.topbar {
    background: rgba(12, 12, 12, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

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

.topbar-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}

.brand-image {
    height: 62px;
    width: auto;
    display: block;
}

.brand-meta {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    color: #111111;
}

.brand-meta strong {
    font-size: 21px;
    letter-spacing: 0.8px;
    color: #111111;
}

.brand-meta small {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 2.2px;
    color: #525252;
    font-weight: 700;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--paper);
    background: var(--primary);
    font-weight: 700;
}

.logo-k {
    font-size: 22px;
}

.brand-text strong {
    display: block;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 1px;
    color: #ffffff;
}

.brand-text span {
    display: block;
    margin-top: 1px;
    color: var(--muted-text);
    font-size: 12px;
    font-weight: 600;
}

.main-nav {
    margin-top: 8px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--hairline);
    backdrop-filter: blur(12px);
    padding: 0 16px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-list a {
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.caret {
    font-size: 10px;
    margin-left: 6px;
}

.nav-item-has-dropdown {
    position: relative;
}

.nav-item-has-dropdown > .nav-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    min-width: 288px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 140;
}

.nav-submenu li {
    margin: 0;
}

.nav-submenu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.18s ease;
}

.nav-submenu a:hover {
    background: #f3f3f3;
    color: #000000;
    padding-left: 23px;
}

@media (min-width: 821px) {
    .nav-item-has-dropdown:hover,
    .nav-item-has-dropdown:focus-within {
        z-index: 160;
    }

    /* Fare ile üst bağlantıdan alta geçerken ara boşlukta menünün kapanmaması */
    .nav-submenu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 18px;
    }

    .nav-submenu {
        display: block;
        top: calc(100% + 4px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, 10px, 0);
        transition:
            opacity 0.2s ease,
            transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
            visibility 0.2s;
    }

    .nav-item-has-dropdown:hover > .nav-submenu,
    .nav-item-has-dropdown:focus-within > .nav-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }
}

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

.lang-switch {
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--paper);
    color: var(--ink-muted);
    font-weight: 500;
    cursor: pointer;
}

.contact-btn {
    background: var(--primary);
    color: var(--paper);
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 17px;
}

.brand-nav {
    text-decoration: none;
    min-width: 186px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--ink-muted);
    border: 1px solid var(--rule);
    border-radius: 4px;
    font-size: 22px;
    padding: 4px 10px;
}

.hero {
    position: relative;
    min-height: 845px;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 3s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.07);
}

.hero-slide-1 {
    background-image: url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fm=webp&fit=crop&w=1800&q=75");
}

.hero-slide-2,
.hero-slide-3 {
    /* Arka plan JS ile data-hero-bg üzerinden yüklenir (ilk boyama için daha az kaynak). */
    background-image: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-subtitle {
    margin: 0 0 16px;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
}

.hero-content h1 {
    margin: 0;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-btn {
    margin-top: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 28px;
    font-weight: 700;
    color: var(--paper);
    text-decoration: none;
    background: var(--primary);
    border: 1px solid var(--ink);
}

/* —— Inner pages: hero band (matches ana sayfa hero — görsel + overlay + kontrastlı tipografi) —— */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: min(520px, 72vh);
    padding: 112px 0 68px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.page-hero--about .page-hero-bg {
    background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fm=webp&fit=crop&w=1800&q=80");
}

.page-hero--service .page-hero-bg {
    background-image: var(--service-hero-bg);
}

.page-hero--contact .page-hero-bg {
    background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fm=webp&fit=crop&w=1800&q=80");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 820px;
    margin: 0 auto;
    padding-inline: 20px;
}

.page-hero-kicker {
    margin: 0 0 14px;
    font-size: clamp(17px, 2.4vw, 26px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.page-hero-title {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
    font-weight: 700;
}

.page-hero-lead {
    margin: 0 auto 32px;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.page-hero-actions .hero-btn {
    margin-top: 0;
}

.page-hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.page-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

@media (max-width: 820px) {
    .page-hero {
        min-height: min(440px, 78vh);
        padding: 88px 0 52px;
    }

    .page-hero-lead {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .page-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-inline: auto;
    }

    .page-hero-actions .hero-btn,
    .page-hero-btn-ghost {
        width: 100%;
    }
}

/* —— Hakkımızda sayfası: hero altı blokları —— */
.about-page-intro {
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
}

.about-page-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    padding: 72px 0 64px;
}

.about-page-kicker {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-text);
}

.about-page-heading {
    margin: 0 0 22px;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.14;
    font-weight: 700;
    color: var(--ink);
}

.about-page-lead {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.62;
    color: var(--ink-muted);
}

.about-page-text {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.68;
    color: var(--muted-text);
}

.about-page-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.about-page-highlights li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
}

.about-page-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 8px;
    height: 8px;
    background: var(--ink);
    border-radius: 1px;
    transform: rotate(45deg);
}

.about-page-intro-visual {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 520px;
}

.about-page-visual-accent {
    position: absolute;
    width: 112px;
    height: 112px;
    left: -22px;
    bottom: 10%;
    border-radius: 50%;
    background: var(--ink);
    opacity: 0.07;
    z-index: 0;
}

.about-page-intro-photo {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    min-height: min(360px, 52vw);
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    border: 10px solid var(--paper);
    outline: 1px solid var(--hairline);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    background-color: var(--canvas);
    background-image: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fm=webp&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
}

.about-page-stats {
    background: linear-gradient(90deg, #080808 0%, #121212 50%, #080808 100%);
    color: #fafafa;
    padding: 52px 0;
}

.about-page-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 20px;
    text-align: center;
}

.about-page-stat-value {
    display: block;
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.about-page-stat-label {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.68);
    max-width: 190px;
    margin-inline: auto;
}

.about-page-values {
    background: var(--canvas);
    padding: 72px 0 84px;
}

.about-page-kicker--center {
    text-align: center;
}

.about-page-heading--center {
    text-align: center;
}

.about-page-values-head {
    max-width: 620px;
    margin: 0 auto 46px;
}

.about-page-values-deck {
    margin: 18px 0 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.58;
    color: var(--muted-text);
}

.about-page-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-page-value-card {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 28px 22px 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.about-page-value-card:hover {
    transform: translateY(-4px);
    border-color: var(--rule);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.about-page-value-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 11px;
    background: var(--ink);
    color: var(--paper);
    font-size: 17px;
    line-height: 1;
}

.about-page-value-title {
    margin: 0 0 11px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.about-page-value-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.58;
    color: var(--muted-text);
}

/* —— Hakkımızda: süreç zaman çizelgesi —— */
.about-page-timeline {
    position: relative;
    background: var(--paper);
    padding: 76px 0 88px;
    border-top: 1px solid var(--hairline);
    overflow: hidden;
}

.about-page-timeline::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 12, 12, 0.05) 0%, transparent 68%);
    pointer-events: none;
}

.about-page-timeline-head {
    position: relative;
    max-width: 560px;
    margin: 0 auto 52px;
    text-align: center;
}

.about-page-timeline-deck {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.58;
    color: var(--muted-text);
}

.about-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: start;
    gap: 8px 26px;
    position: relative;
    padding-bottom: 36px;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 62px;
    bottom: 6px;
    width: 3px;
    margin-left: -1.5px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        var(--ink) 0%,
        var(--ink) 18%,
        var(--hairline) 55%,
        var(--hairline) 100%
    );
}

.about-timeline-marker {
    justify-self: center;
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-top: 4px;
    border-radius: 50%;
    border: 3px solid var(--ink);
    background: var(--paper);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 1),
        0 10px 26px rgba(0, 0, 0, 0.09);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
    position: relative;
    z-index: 1;
}

.about-timeline-marker--final {
    background: var(--ink);
    color: var(--paper);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 1),
        0 12px 28px rgba(0, 0, 0, 0.18);
}

.about-timeline-card {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 22px 24px 23px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.about-timeline-card:hover {
    transform: translateY(-2px);
    border-color: var(--rule);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.about-timeline-card--highlight {
    background: linear-gradient(165deg, #fafafa 0%, #f0f0f0 100%);
    border-color: var(--rule);
}

.about-timeline-phase {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-text);
}

.about-timeline-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
}

.about-timeline-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    color: var(--muted-text);
}

@media (max-width: 640px) {
    .about-page-timeline {
        padding: 56px 0 68px;
    }

    .about-page-timeline-head {
        margin-bottom: 40px;
    }

    .about-timeline-item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 6px 14px;
        padding-bottom: 28px;
    }

    .about-timeline-item:not(:last-child)::after {
        left: 26px;
        top: 52px;
        width: 2px;
        margin-left: -1px;
    }

    .about-timeline-marker {
        width: 46px;
        height: 46px;
        margin-top: 6px;
        font-size: 11px;
        border-width: 2px;
        box-shadow:
            0 0 0 4px rgba(255, 255, 255, 1),
            0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .about-timeline-marker--final {
        box-shadow:
            0 0 0 4px rgba(255, 255, 255, 1),
            0 10px 22px rgba(0, 0, 0, 0.14);
    }

    .about-timeline-card {
        padding: 18px 18px 19px;
    }

    .about-timeline-title {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .about-page-stats-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }
}

@media (max-width: 900px) {
    .about-page-intro-grid {
        grid-template-columns: 1fr;
        padding: 56px 0 52px;
    }

    .about-page-intro-visual {
        justify-self: center;
        max-width: 560px;
    }

    .about-page-visual-accent {
        left: -12px;
        bottom: 8%;
    }

    .about-page-values-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    .about-page-stats-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .about-page-intro-photo {
        border-width: 8px;
        min-height: 260px;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, #25d366 0%, #1fbf5b 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 18px 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 28px rgba(23, 125, 60, 0.42), 0 6px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s ease,
        filter 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(23, 125, 60, 0.5), 0 8px 18px rgba(0, 0, 0, 0.26);
    filter: saturate(1.04);
}

.wa-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    color: #25d366;
    display: inline-grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
}

.wa-chat-panel {
    position: fixed;
    right: 18px;
    bottom: 72px;
    z-index: 100;
    width: min(330px, calc(100vw - 22px));
    background: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 14px;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.2);
    padding: 14px 14px 12px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 14px, 0) scale(0.98);
    transition:
        opacity 0.22s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-chat-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.wa-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #111111;
}

.wa-chat-close {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: #f1f5f2;
    color: #111111;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.wa-chat-help {
    margin: 0 0 10px;
    font-size: 12px;
    color: #5b5b5b;
}

.wa-chat-input {
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 90px;
    max-height: 180px;
    border: 1px solid #d6dfda;
    border-radius: 10px;
    padding: 10px 11px;
    font-family: inherit;
    font-size: 14px;
    color: #111111;
    outline: none;
}

.wa-chat-input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.wa-chat-send {
    margin-top: 10px;
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(145deg, #25d366 0%, #1fbf5b 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.site-footer {
    margin-top: 0;
    background: #f4f4f4;
    color: #222;
    border-top: 1px solid #e0e0e0;
}

.footer-inner {
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 48px 64px;
    align-items: start;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 44px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.footer-tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 40px;
}

.footer-block-title {
    display: block;
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

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

.footer-block li {
    margin-bottom: 8px;
}

.footer-block a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-block a:hover {
    color: #000;
    border-bottom-color: #bbb;
}

.footer-block-contact p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #444;
}

.footer-block-contact a {
    color: #111;
    font-weight: 600;
    border-bottom: none;
}

.footer-block-contact a:hover {
    border-bottom: 1px solid #999;
}

.footer-address {
    margin-top: 4px !important;
    color: #666 !important;
    font-size: 13px !important;
}

.footer-offer-link {
    display: inline-block;
    margin-top: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111 !important;
    border-bottom: 1px solid #333 !important;
    padding-bottom: 2px;
}

.footer-offer-link:hover {
    border-bottom-color: #000 !important;
}

.footer-meta {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid #ddd;
    margin-top: 8px;
}

.footer-social-text {
    margin: 0;
    padding-top: 16px;
    font-size: 13px;
}

.footer-social-text a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.footer-social-text a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-dot {
    margin: 0 10px;
    color: #aaa;
}

.footer-bar {
    background: #eaeaea;
    border-top: 1px solid #dadada;
}

.footer-bar-inner {
    padding: 14px 0;
}

.footer-bar-inner p {
    margin: 0;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.02em;
}

.service-cards-wrap {
    position: relative;
    margin-top: -86px;
    z-index: 5;
    padding-bottom: 56px;
}

.service-cards-centered-wrap {
    padding-bottom: 56px;
}

.about-highlight {
    padding: 14px 0 52px;
    background:
        radial-gradient(circle at 30% 24%, rgba(12, 12, 12, 0.06) 0, rgba(12, 12, 12, 0) 42%),
        var(--paper);
}

.about-highlight .container {
    max-width: 1120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -42px;
}

.about-image-col {
    position: relative;
    padding-left: 12px;
}

.about-accent-circle {
    position: absolute;
    width: 110px;
    height: 110px;
    left: -24px;
    top: 84px;
    border-radius: 50%;
    background: var(--primary);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 340px;
    border: 10px solid #fff;
    box-shadow: 0 14px 32px rgba(13, 24, 44, 0.18);
    background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?auto=format&fm=webp&fit=crop&w=1100&q=80");
    background-size: cover;
    background-position: center;
}

.about-content-col {
    padding-left: 14px;
    border-left: 6px solid var(--primary);
}

.about-kicker {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
}

.about-content-col h2 {
    margin: 0;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.08;
}

.about-badges {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f8fa;
    border-radius: 8px;
    padding: 9px 10px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--primary);
    color: var(--paper);
    display: inline-grid;
    place-items: center;
    font-size: 15px;
}

.about-badge strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.18;
}

.about-contact-row {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--paper);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.about-phone-text small {
    display: block;
    color: var(--muted-text);
    font-size: 13px;
}

.about-phone-text a {
    color: var(--primary);
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
}

.about-socials {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.about-socials a {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--paper);
    text-decoration: none;
    border-radius: 4px;
    display: inline-grid;
    place-items: center;
    font-weight: 600;
}

.contact-strip {
    background: var(--primary);
    padding: 26px 0;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-strip p {
    margin: 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 760px;
}

.contact-strip-btn {
    text-decoration: none;
    color: var(--paper);
    background: linear-gradient(108deg, #1a1a1a 0%, #1a1a1a 78%, #2e2e2e 78%, #2e2e2e 100%);
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.gallery-section {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, var(--canvas) 0%, #eeeeee 100%);
}

.gallery-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 30px;
}

.gallery-kicker {
    margin: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gallery-header h2 {
    margin: 10px 0 18px;
    color: var(--ink);
    font-size: 38px;
    line-height: 1.2;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.gallery-tabs button {
    border: 1px solid var(--rule);
    background: var(--paper);
    color: var(--ink-muted);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}

.gallery-tabs button.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--paper);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 24px rgba(19, 35, 64, 0.18);
}

.gallery-item[data-lazy-bg]:not(.is-bg-loaded) {
    background-color: var(--canvas);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 17, 34, 0) 0%, rgba(8, 17, 34, 0.85) 100%);
    transform: translateY(8px);
    opacity: 0.92;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 20px;
}

.gallery-overlay p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.free-survey-cta {
    padding: 0 0 86px;
    background: linear-gradient(180deg, var(--canvas) 0%, var(--paper) 100%);
}

.free-survey-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(115deg, #121212 0%, #1f1f1f 48%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 30px 34px;
    color: var(--paper);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.free-survey-kicker {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.72);
}

.free-survey-text h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.18;
}

.free-survey-text p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.free-survey-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 260px;
}

.free-survey-phone {
    color: var(--paper);
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
}

.free-survey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ink);
    background: var(--paper);
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 999px;
    min-width: 210px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-cards-centered {
    max-width: 796px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    background: var(--paper);
    border-radius: 10px;
    padding: 18px 16px 15px;
    border: 1px solid var(--hairline);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--rule);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin: 0;
    font-size: 27px;
    line-height: 1.05;
    color: var(--ink);
}

.service-card p {
    margin: 8px 0 10px;
    color: var(--muted-text);
    font-size: 13px;
    min-height: 34px;
}

.service-visual {
    height: 90px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(14, 29, 48, 0.16), rgba(14, 29, 48, 0.75)),
        repeating-linear-gradient(to right, rgba(190, 206, 224, 0.08) 0, rgba(190, 206, 224, 0.08) 1px, transparent 1px, transparent 36px);
    border: 1px solid rgba(187, 205, 225, 0.2);
    position: relative;
    overflow: hidden;
}

.service-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 38%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 240, 252, 0.42), transparent);
    animation: sweep 4s linear infinite;
}

.visual-cam .cam-frame {
    position: absolute;
    inset: 16% 8%;
    border: 4px solid rgba(228, 236, 246, 0.95);
}

.visual-cam .cam-panel {
    position: absolute;
    top: 18%;
    width: 18%;
    height: 60%;
    border: 2px solid rgba(218, 228, 240, 0.95);
    background: rgba(184, 202, 222, 0.1);
    animation: slide-panel 3s ease-in-out infinite;
}

.visual-cam .panel-1 { left: 12%; animation-delay: 0s; }
.visual-cam .panel-2 { left: 30%; animation-delay: 0.2s; }
.visual-cam .panel-3 { left: 48%; animation-delay: 0.4s; }
.visual-cam .panel-4 { left: 66%; animation-delay: 0.6s; }

.visual-kis .kis-base {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 16%;
    height: 4px;
    background: rgba(226, 235, 245, 0.95);
}

.visual-kis .kis-roof {
    position: absolute;
    top: 16%;
    width: 40%;
    height: 3px;
    background: rgba(226, 235, 245, 0.95);
}

.visual-kis .kis-roof.left {
    left: 10%;
    transform-origin: left center;
    transform: rotate(16deg) scaleX(0.2);
    animation: draw-left 3s ease-in-out infinite;
}

.visual-kis .kis-roof.right {
    right: 10%;
    transform-origin: right center;
    transform: rotate(-16deg) scaleX(0.2);
    animation: draw-right 3s ease-in-out infinite;
}

.visual-kis .kis-post {
    position: absolute;
    bottom: 16%;
    width: 4px;
    background: rgba(226, 235, 245, 0.95);
    animation: post-rise 3s ease-in-out infinite;
}

.visual-kis .post-1 { left: 28%; height: 48%; }
.visual-kis .post-2 { left: 50%; height: 58%; }
.visual-kis .post-3 { left: 72%; height: 48%; }

.visual-pergole .pergole-top {
    position: absolute;
    top: 18%;
    left: 12%;
    right: 12%;
    height: 8px;
    background: rgba(226, 235, 245, 0.95);
}

.visual-pergole .pergole-post {
    position: absolute;
    top: 18%;
    bottom: 16%;
    width: 4px;
    background: rgba(226, 235, 245, 0.95);
}

.visual-pergole .pergole-post.left { left: 22%; }
.visual-pergole .pergole-post.right { right: 22%; }

.visual-pergole .pergole-slat {
    position: absolute;
    left: 20%;
    right: 20%;
    height: 5px;
    background: rgba(200, 215, 232, 0.95);
    transform-origin: center;
    animation: slat-open 3s ease-in-out infinite;
}

.visual-pergole .slat-1 { top: 30%; animation-delay: 0s; }
.visual-pergole .slat-2 { top: 40%; animation-delay: 0.12s; }
.visual-pergole .slat-3 { top: 50%; animation-delay: 0.24s; }
.visual-pergole .slat-4 { top: 60%; animation-delay: 0.36s; }

.visual-giyotin .giyotin-frame {
    position: absolute;
    inset: 14% 10%;
    border: 4px solid rgba(228, 236, 246, 0.95);
}

.visual-giyotin .giyotin-rail {
    position: absolute;
    top: 16%;
    bottom: 14%;
    width: 3px;
    background: rgba(226, 235, 245, 0.9);
}

.visual-giyotin .giyotin-rail.left { left: 14%; }
.visual-giyotin .giyotin-rail.right { right: 14%; }

.visual-giyotin .giyotin-panel {
    position: absolute;
    left: 16%;
    right: 16%;
    top: 36%;
    height: 38%;
    border: 2px solid rgba(218, 228, 240, 0.95);
    background: rgba(173, 194, 218, 0.12);
    animation: giyotin-move 3s ease-in-out infinite;
}

.visual-panjur .panjur-box {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 14%;
    height: 10px;
    background: rgba(226, 235, 245, 0.95);
}

.visual-panjur .panjur-slat {
    position: absolute;
    left: 14%;
    right: 14%;
    height: 5px;
    background: rgba(200, 215, 232, 0.95);
    animation: panjur-drop 3s ease-in-out infinite;
}

.visual-panjur .s1 { top: 28%; animation-delay: 0s; }
.visual-panjur .s2 { top: 37%; animation-delay: 0.08s; }
.visual-panjur .s3 { top: 46%; animation-delay: 0.16s; }
.visual-panjur .s4 { top: 55%; animation-delay: 0.24s; }
.visual-panjur .s5 { top: 64%; animation-delay: 0.32s; }

.visual-dusakabin .dus-frame {
    position: absolute;
    inset: 15% 12%;
    border: 4px solid rgba(228, 236, 246, 0.95);
}

.visual-dusakabin .dus-door {
    position: absolute;
    top: 18%;
    width: 34%;
    height: 64%;
    border: 2px solid rgba(218, 228, 240, 0.95);
    background: rgba(174, 194, 218, 0.1);
}

.visual-dusakabin .dus-door.fixed { left: 16%; }

.visual-dusakabin .dus-door.sliding {
    left: 50%;
    animation: dus-slide 3s ease-in-out infinite;
}

.visual-dusakabin .dus-handle {
    position: absolute;
    top: 44%;
    left: 64%;
    width: 3px;
    height: 18%;
    background: rgba(228, 236, 246, 0.95);
    animation: handle-follow 3s ease-in-out infinite;
}

.visual-sineklik .sinek-frame {
    position: absolute;
    inset: 15% 9%;
    border: 4px solid rgba(228, 236, 246, 0.95);
}

.visual-sineklik .sinek-mesh {
    position: absolute;
    inset: 19% 13%;
    background-image:
        repeating-linear-gradient(to right, rgba(165, 182, 202, 0.22) 0, rgba(165, 182, 202, 0.22) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(to bottom, rgba(165, 182, 202, 0.22) 0, rgba(165, 182, 202, 0.22) 1px, transparent 1px, transparent 10px);
    border: 2px solid rgba(211, 222, 236, 0.9);
}

.visual-sineklik .sinek-slider {
    position: absolute;
    top: 48%;
    left: 18%;
    right: 18%;
    height: 2px;
    background: rgba(202, 217, 235, 0.8);
}

.visual-sineklik .sinek-dot {
    position: absolute;
    top: calc(48% - 5px);
    left: 20%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 223, 238, 0.95);
    animation: sinek-dot-move 3s ease-in-out infinite;
}

.visual-pvc .pvc-frame {
    position: absolute;
    inset: 14% 9%;
    border: 4px solid rgba(228, 236, 246, 0.95);
}

.visual-pvc .pvc-divider {
    position: absolute;
    top: 16%;
    bottom: 14%;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: rgba(228, 236, 246, 0.95);
}

.visual-pvc .pvc-leaf {
    position: absolute;
    top: 22%;
    width: 34%;
    height: 56%;
    border: 3px solid rgba(219, 229, 241, 0.92);
    background: rgba(173, 194, 218, 0.11);
}

.visual-pvc .pvc-leaf.left {
    left: 13%;
    transform-origin: right center;
    animation: pvc-open-left 3s ease-in-out infinite;
}

.visual-pvc .pvc-leaf.right {
    right: 13%;
    transform-origin: left center;
    animation: pvc-open-right 3s ease-in-out infinite;
}

.visual-pvc .pvc-handle {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 16px;
    height: 4px;
    transform: translateX(-50%);
    background: rgba(203, 176, 112, 0.95);
}

.visual-alu .alu-frame {
    position: absolute;
    inset: 14% 10%;
    border: 4px solid rgba(228, 236, 246, 0.95);
}

.visual-alu .alu-pane {
    position: absolute;
    top: 26%;
    width: 22%;
    height: 46%;
    border: 3px solid rgba(219, 229, 241, 0.92);
    background: rgba(173, 194, 218, 0.11);
    animation: alu-pane-pulse 4.6s ease-in-out infinite;
}

.visual-alu .alu-pane.p1 {
    left: 14%;
    animation-delay: 0s;
}

.visual-alu .alu-pane.p2 {
    left: 39%;
    animation-delay: 0.35s;
}

.visual-alu .alu-pane.p3 {
    left: 64%;
    animation-delay: 0.7s;
}

.visual-alu .alu-mullion {
    position: absolute;
    top: 22%;
    bottom: 22%;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: rgba(228, 236, 246, 0.88);
    animation: alu-mullion-glow 4s ease-in-out infinite;
}

@keyframes alu-pane-pulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.018);
    }
}

@keyframes alu-mullion-glow {
    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.95;
    }
}

.service-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    padding: 9px 12px;
    border-radius: 4px;
    color: var(--paper);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    background: var(--primary);
    border: 1px solid var(--ink);
}

@keyframes sweep {
    0% {
        left: -40%;
    }
    100% {
        left: 120%;
    }
}

@keyframes slide-panel {
    0%, 100% { transform: translateX(0); }
    45% { transform: translateX(8px); }
}

@keyframes draw-left {
    0%, 100% { transform: rotate(16deg) scaleX(0.2); opacity: 0.7; }
    45% { transform: rotate(16deg) scaleX(1); opacity: 1; }
}

@keyframes draw-right {
    0%, 100% { transform: rotate(-16deg) scaleX(0.2); opacity: 0.7; }
    45% { transform: rotate(-16deg) scaleX(1); opacity: 1; }
}

@keyframes post-rise {
    0%, 100% { transform: scaleY(0.75); transform-origin: bottom; }
    45% { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes slat-open {
    0%, 100% { transform: scaleX(1) skewX(0deg); }
    45% { transform: scaleX(0.88) skewX(-8deg); }
}

@keyframes giyotin-move {
    0%, 100% { transform: translateY(0); }
    45% { transform: translateY(-14px); }
}

@keyframes panjur-drop {
    0%, 100% { transform: translateY(0); opacity: 0.95; }
    45% { transform: translateY(8px); opacity: 1; }
}

@keyframes dus-slide {
    0%, 100% { transform: translateX(0); }
    45% { transform: translateX(-18px); }
}

@keyframes handle-follow {
    0%, 100% { transform: translateX(0); }
    45% { transform: translateX(-18px); }
}

@keyframes sinek-dot-move {
    0%, 100% { transform: translateX(0); }
    45% { transform: translateX(68px); }
}

@keyframes pvc-open-left {
    0%, 100% { transform: perspective(260px) rotateY(0deg); }
    45% { transform: perspective(260px) rotateY(18deg); }
}

@keyframes pvc-open-right {
    0%, 100% { transform: perspective(260px) rotateY(0deg); }
    45% { transform: perspective(260px) rotateY(-18deg); }
}

@media (max-width: 1024px) {
    .topbar-note {
        display: none;
    }

    .nav-list {
        gap: 14px;
    }

    .nav-list a {
        font-size: 16px;
    }

    .hero {
        min-height: 620px;
        padding-top: 104px;
    }

    .hero-subtitle {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .service-cards-wrap {
        margin-top: -68px;
    }

    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-cards-centered {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        transform: scale(1);
        margin-bottom: 0;
    }

    .about-image {
        min-height: 300px;
    }

    .about-content-col h2 {
        font-size: 30px;
    }

    .about-socials {
        margin-left: 0;
    }

    .contact-strip p {
        font-size: 22px;
    }

    .contact-strip-btn {
        padding: 14px 26px;
        font-size: 14px;
    }

    .gallery-section {
        padding: 56px 0 66px;
    }

    .gallery-header h2 {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .free-survey-cta {
        padding-bottom: 62px;
    }

    .free-survey-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px;
    }

    .free-survey-text h2 {
        font-size: 29px;
    }

    .free-survey-actions {
        align-items: flex-start;
        min-width: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 40px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .mobile-toggle {
        display: block;
    }

    .topbar {
        display: none;
    }

    .nav-content {
        flex-wrap: wrap;
        padding: 10px 12px;
        margin-top: 10px;
    }

    .nav-list {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0 12px;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-item-has-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        padding: 6px 0 10px;
        border: 0;
        border-radius: 0 !important;
        box-shadow: none;
        border-left: 3px solid #111111;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
        z-index: auto;
    }

    .nav-submenu::before {
        display: none !important;
    }

    .nav-item-has-dropdown.open > .nav-submenu {
        display: block;
    }

    .nav-submenu a {
        min-height: 48px;
        padding: 12px 16px 12px 18px;
        font-size: 15px;
        border-radius: 6px;
    }

    .nav-submenu a:hover {
        padding-left: 21px;
    }

    .nav-right {
        margin-left: auto;
    }

    .hero {
        min-height: 540px;
        padding-top: 96px;
    }

    .hero-subtitle {
        font-size: 27px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-btn {
        min-width: 180px;
        margin-top: 28px;
    }

    .floating-whatsapp {
        right: 10px;
        bottom: 10px;
    }

    .wa-chat-panel {
        right: 10px;
        bottom: 62px;
        width: min(330px, calc(100vw - 20px));
    }

    .service-cards-wrap {
        margin-top: -44px;
        padding-bottom: 36px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-cards-centered-wrap {
        padding-bottom: 36px;
    }

    .service-cards-centered {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .service-card h3 {
        font-size: 30px;
    }

    .about-highlight {
        padding: 10px 0 30px;
    }

    .about-image-col {
        padding-left: 0;
    }

    .about-accent-circle {
        width: 100px;
        height: 100px;
        left: -20px;
    }

    .about-content-col {
        padding-left: 12px;
        border-left-width: 6px;
    }

    .about-content-col h2 {
        font-size: 24px;
    }

    .about-badges {
        grid-template-columns: 1fr;
    }

    .about-badge strong {
        font-size: 17px;
    }

    .about-phone-text a {
        font-size: 21px;
    }

    .contact-strip {
        padding: 20px 0;
    }

    .contact-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-strip p {
        font-size: 20px;
    }

    .contact-strip-btn {
        width: 100%;
        text-align: center;
    }

    .gallery-section {
        padding: 44px 0 52px;
    }

    .gallery-header h2 {
        font-size: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px;
    }

    .free-survey-cta {
        padding-bottom: 42px;
    }

    .free-survey-text h2 {
        font-size: 24px;
    }

    .free-survey-text p {
        font-size: 14px;
    }

    .free-survey-phone {
        font-size: 24px;
    }

    .free-survey-btn {
        width: 100%;
        min-width: auto;
    }

    .footer-inner {
        padding: 36px 0 24px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .footer-brand {
        max-width: none;
    }

    .footer-logo {
        height: 40px;
    }
}

/* Professional polish overrides */
.container {
    width: min(1240px, 92%);
}

.site-header {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}

.nav-list a {
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: var(--ink);
}

.hero-subtitle {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
}

.hero-content h1 {
    font-size: clamp(40px, 4.6vw, 62px);
    line-height: 1.08;
    max-width: 980px;
    margin-inline: auto;
}

.hero-btn {
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.service-card {
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
}

.service-card h3 {
    letter-spacing: 0.2px;
}

.service-card p {
    color: var(--muted-text);
}

.service-visual {
    border-radius: 8px;
    border-color: rgba(255, 255, 255, 0.32);
}

.about-highlight {
    padding: 28px 0 64px;
}

.about-highlight .container {
    max-width: 1180px;
}

.about-grid {
    transform: none;
    margin-bottom: 0;
    gap: 26px;
}

.about-image {
    min-height: 380px;
    border-radius: 10px;
}

.about-content-col h2 {
    font-size: clamp(30px, 3vw, 42px);
}

.about-badge {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.contact-strip {
    background: linear-gradient(90deg, #0a0a0a 0%, #141414 100%);
}

.contact-strip-btn {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.gallery-section {
    padding: 64px 0 80px;
}

.gallery-item {
    border-radius: 12px;
}

.free-survey-inner {
    border-radius: 14px;
}

.site-footer {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    .about-highlight {
        padding: 16px 0 34px;
    }

    .about-image {
        min-height: 280px;
    }
}

/* Monochrome theme override — aligns with :root tokens above */
body {
    background: var(--canvas);
    color: var(--ink);
}

.brand-logo,
.icon-circle,
.contact-btn,
.hero-btn,
.service-btn,
.gallery-tabs button.is-active,
.badge-icon,
.about-socials a,
.lang-switch {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

.site-header,
.nav-content,
.about-badge,
.gallery-tabs button {
    border-color: rgba(0, 0, 0, 0.15) !important;
}

.topbar,
.main-nav,
.contact-strip {
    background: #000000 !important;
}

.topbar-note,
.topbar-links a,
.nav-list a,
.contact-strip p,
.hero-content,
.free-survey-text h2,
.free-survey-phone {
    color: #ffffff !important;
}

.nav-list a:hover {
    color: #d9d9d9 !important;
}

.about-kicker,
.gallery-kicker,
.about-phone-text a {
    color: #111111 !important;
}

.free-survey-kicker {
    color: rgba(255, 255, 255, 0.74) !important;
}

.about-content-col {
    border-left-color: #111111 !important;
}

.about-accent-circle {
    background: #1b1b1b !important;
}

.about-highlight,
.gallery-section,
.free-survey-cta {
    background: #ffffff !important;
}

.free-survey-inner {
    background: linear-gradient(115deg, #121212 0%, #1f1f1f 48%, #2a2a2a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24) !important;
}

.service-card p,
.gallery-overlay p,
.about-phone-text small,
.free-survey-text p {
    color: #d0d0d0 !important;
}

.gallery-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 100%) !important;
}

.floating-whatsapp {
    background: linear-gradient(145deg, #25d366 0%, #1fbf5b 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
}

.wa-icon {
    background: #ffffff !important;
    color: #25d366 !important;
}

/* Header redesign: no blur, clean corporate style */
.site-header {
    position: sticky !important;
    top: 0;
    z-index: 70;
    background: #ffffff !important;
    border-bottom: 1px solid #e6e6e6;
}

.topbar {
    background: #0b0b0b !important;
    padding: 7px 0 !important;
    border-bottom: 0 !important;
    backdrop-filter: none !important;
}

.topbar-content {
    min-height: 30px;
}

.topbar-note,
.topbar-links a {
    color: #f2f2f2 !important;
    font-size: 12px;
}

.topbar-links {
    gap: 16px;
}

.main-nav {
    background: #ffffff !important;
    padding: 8px 0;
    backdrop-filter: none !important;
}

.nav-content {
    min-height: 64px;
    border-radius: 0;
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none;
    backdrop-filter: none !important;
    padding: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border: 2px solid #111111 !important;
    background: #111111 !important;
    color: #ffffff !important;
}

.brand-text strong {
    color: #111111 !important;
    font-size: 24px;
}

.brand-text span {
    color: #656565 !important;
}

.nav-list {
    gap: 26px;
}

.nav-list a {
    color: #121212 !important;
    font-size: 15px;
    font-weight: 600;
}

.nav-list a:hover {
    color: #000000 !important;
}

.nav-list li.nav-current > a {
    color: #000000 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 7px !important;
}

.nav-item-has-dropdown.nav-current > .nav-parent-link {
    color: #000000 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 7px !important;
}

.nav-submenu {
    background: #ffffff !important;
    border-color: #e5e5e5 !important;
    border-radius: 10px !important;
}

.nav-submenu a {
    color: #121212 !important;
}

.nav-submenu a:hover {
    background: #f3f3f3 !important;
    color: #000000 !important;
}

.contact-btn {
    background: #111111 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 10px 16px;
}

.mobile-toggle {
    color: #111111 !important;
    border-color: #cfcfcf !important;
}

.hero {
    padding-top: 18px !important;
}

@media (max-width: 820px) {
    .topbar {
        display: none;
    }

    .main-nav {
        padding: 6px 0;
    }

    .nav-content {
        min-height: 58px;
        padding: 0 10px;
    }

    .brand-image {
        height: 44px;
    }

    .brand-meta strong {
        font-size: 16px;
    }

    .brand-meta small {
        font-size: 9px;
        letter-spacing: 1.6px;
    }

    .hero {
        padding-top: 16px !important;
    }
}

/* Main page vertical spacing */
main > section {
    margin-bottom: 28px;
}

main > section:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 820px) {
    main > section {
        margin-bottom: 20px;
    }
}

/* Service cards alignment with site theme */
.service-cards {
    gap: 16px !important;
}

.service-card {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 18px 16px 15px !important;
}

.service-card:hover {
    transform: translateY(-2px) !important;
    border-color: #d2d2d2 !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.service-card h3 {
    color: #111111 !important;
    font-size: 24px !important;
    margin: 0 0 8px !important;
}

.service-card p {
    color: #4e4e4e !important;
    font-size: 14px !important;
    margin: 0 0 12px !important;
    min-height: 54px !important;
}

.service-visual {
    background: linear-gradient(180deg, #f7f7f7 0%, #ededed 100%) !important;
    border: 1px solid #dddddd !important;
    border-radius: 10px !important;
}

.service-btn {
    background: #111111 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    min-width: 146px !important;
    padding: 9px 12px !important;
}

/* Make service animations clearly visible on light cards */
.service-visual::after {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.16), transparent) !important;
}

.visual-cam .cam-frame,
.visual-kis .kis-base,
.visual-kis .kis-roof,
.visual-kis .kis-post,
.visual-pergole .pergole-top,
.visual-pergole .pergole-post,
.visual-giyotin .giyotin-frame,
.visual-giyotin .giyotin-rail,
.visual-panjur .panjur-box,
.visual-dusakabin .dus-frame,
.visual-dusakabin .dus-handle,
.visual-sineklik .sinek-frame,
.visual-pvc .pvc-frame,
.visual-alu .alu-frame,
.visual-alu .alu-mullion {
    background-color: #5d6b7a !important;
    border-color: #5d6b7a !important;
}

.visual-cam .cam-frame,
.visual-giyotin .giyotin-frame,
.visual-dusakabin .dus-frame {
    border-width: 3px !important;
}

.visual-cam .cam-panel,
.visual-giyotin .giyotin-panel,
.visual-dusakabin .dus-door,
.visual-pvc .pvc-leaf,
.visual-alu .alu-pane {
    border-color: #6c7b8b !important;
    background: rgba(109, 130, 153, 0.12) !important;
}

.visual-pergole .pergole-slat,
.visual-panjur .panjur-slat {
    background: #8a99ab !important;
}

/* —— Hizmet detay sayfaları (hizmet.php) —— */
.service-detail-page .page-hero {
    min-height: min(480px, 68vh);
}

.service-detail-showcase {
    background: var(--paper);
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--hairline);
}

.service-detail-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: start;
}

.service-detail-visual-wrap {
    position: relative;
}

.service-detail-page .service-visual.service-detail-visual {
    height: auto !important;
    min-height: 260px !important;
    border-radius: 14px !important;
}

.service-detail-page .service-visual.service-detail-visual::after {
    animation-duration: 7.5s;
    animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
    opacity: 0.72;
}

.service-detail-visual-caption {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted-text);
    text-align: center;
}

.service-detail-float {
    animation: service-detail-visual-drift 11s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.service-detail-aside-title {
    margin: 0 0 18px;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--ink);
}

.service-detail-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.service-detail-highlight-item {
    position: relative;
    padding: 16px 18px 16px 22px;
    border-radius: 12px;
    border: 1px solid var(--hairline);
    border-left: 3px solid var(--ink);
    background: var(--canvas);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ink-muted);
    opacity: 0;
    animation: service-detail-line-in 0.62s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.service-detail-highlight-item:nth-child(1) {
    animation-delay: 0.08s;
}

.service-detail-highlight-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-detail-highlight-item:nth-child(3) {
    animation-delay: 0.32s;
}

.service-detail-highlight-item:nth-child(4) {
    animation-delay: 0.44s;
}

.service-detail-highlight-item:nth-child(5) {
    animation-delay: 0.56s;
}

.service-detail-highlight-item:nth-child(6) {
    animation-delay: 0.68s;
}

.service-detail-animate {
    opacity: 0;
    animation: service-detail-reveal 0.78s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: calc(var(--stagger, 0) * 0.13s);
}

.service-detail-copy {
    background: var(--canvas);
    padding: 56px 0 52px;
}

.service-detail-copy-inner {
    max-width: 760px;
    margin: 0 auto;
}

.service-detail-paragraph {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.68;
    color: var(--ink-muted);
}

.service-detail-paragraph:last-child {
    margin-bottom: 0;
}

.service-detail-features-wrap {
    background: var(--paper);
    padding: 64px 0 76px;
    border-top: 1px solid var(--hairline);
}

.service-detail-features-head {
    margin-bottom: 36px;
}

.service-detail-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-detail-feature-card {
    padding: 26px 22px;
    border-radius: 14px;
    border: 1px solid var(--hairline);
    background: var(--canvas);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.35s cubic-bezier(0.33, 1, 0.68, 1),
        border-color 0.25s ease,
        box-shadow 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-detail-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--rule);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

.service-detail-feature-title {
    margin: 0 0 11px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.service-detail-feature-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.58;
    color: var(--muted-text);
}

.service-detail-not-found {
    padding: 96px 0 120px;
    background: var(--canvas);
}

.service-detail-not-found-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.service-detail-not-found-title {
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    color: var(--ink);
}

.service-detail-not-found-text {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted-text);
}

.service-detail-not-found-btn {
    margin-top: 0;
}

@keyframes service-detail-reveal {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes service-detail-line-in {
    from {
        opacity: 0;
        transform: translate3d(-14px, 0, 0);
        border-left-color: transparent;
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        border-left-color: var(--ink);
    }
}

@keyframes service-detail-visual-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -5px, 0);
    }
}

@media (max-width: 900px) {
    .service-detail-showcase-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-visual-caption {
        text-align: left;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-detail-animate,
    .service-detail-highlight-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        border-left-color: var(--ink) !important;
    }

    .service-detail-float {
        animation: none !important;
    }

    .service-detail-page .service-visual.service-detail-visual::after {
        animation: none !important;
        opacity: 0.35 !important;
    }
}

/* —— İletişim sayfası —— */
.page-main--contact .page-hero {
    min-height: min(460px, 65vh);
}

.contact-page-cards {
    padding: 56px 0 48px;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
}

.contact-page-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 14px;
    border: 1px solid var(--hairline);
    background: var(--canvas);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.28s cubic-bezier(0.33, 1, 0.68, 1),
        border-color 0.22s ease,
        box-shadow 0.28s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--rule);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
}

.contact-card-step {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--muted-text);
}

.contact-card-title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
}

.contact-card-text {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted-text);
}

.contact-card-link {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    word-break: break-word;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.contact-card-link:hover {
    border-bottom-color: var(--ink);
    color: #000000;
}

.contact-card-static {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--ink-muted);
}

.contact-page-split {
    padding: 56px 0 72px;
    background: var(--canvas);
}

.contact-page-split-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 28px 36px;
    align-items: stretch;
}

.contact-page-aside {
    padding: 34px 30px 36px;
    border-radius: 14px;
    background: linear-gradient(155deg, #0f0f0f 0%, #1a1a1a 52%, #141414 100%);
    color: #f5f5f5;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-page-aside-kicker {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-page-aside-title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.contact-page-aside-lead {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
}

.contact-page-aside-list {
    margin: 0 0 26px;
    padding: 0 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.contact-page-aside-list li {
    margin-bottom: 10px;
}

.contact-page-aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-page-aside-map {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page-aside-map-label {
    margin: 0 0 7px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.58);
}

.contact-page-aside-map-link {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.contact-page-aside-map-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.78);
}

.contact-page-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    background: #ffffff;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-page-wa-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.contact-page-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.contact-page-phone-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

.contact-page-form-panel {
    scroll-margin-top: 104px;
    padding: 34px 30px 36px;
    border-radius: 14px;
    border: 1px solid var(--hairline);
    background: var(--paper);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.contact-page-form-kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-text);
}

.contact-page-form-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 700;
    color: var(--ink);
}

.contact-page-form-intro {
    margin: 0 0 26px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
}

.contact-req {
    color: #8a3b12;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--canvas);
    border: 1px solid var(--rule);
    border-radius: 10px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9a9a9a;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(12, 12, 12, 0.08);
}

.contact-field textarea {
    resize: vertical;
    min-height: 132px;
    line-height: 1.5;
}

.contact-submit {
    margin-top: 6px;
    align-self: flex-start;
    padding: 15px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--paper);
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 10px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.18s ease,
        box-shadow 0.22s ease;
}

.contact-submit:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.contact-submit:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

.contact-page-map {
    padding: 52px 0 68px;
    background: var(--paper);
    border-top: 1px solid var(--hairline);
}

.contact-map-head {
    margin: 0 auto 26px;
    max-width: 640px;
    text-align: center;
}

.contact-map-kicker {
    text-align: center;
}

.contact-map-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    color: var(--ink);
}

.contact-map-address {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-text);
}

.contact-map-open {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 3px;
    transition: opacity 0.18s ease, border-color 0.18s ease;
}

.contact-map-open:hover {
    opacity: 0.82;
    border-bottom-color: transparent;
}

.contact-map-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--hairline);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
    aspect-ratio: 16 / 10;
    min-height: 280px;
    max-height: 520px;
}

.contact-map-frame--embedded {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

@media (max-width: 1100px) {
    .contact-page-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .contact-page-cards {
        padding: 42px 0 36px;
    }

    .contact-page-map {
        padding: 40px 0 52px;
    }

    .contact-map-frame {
        aspect-ratio: 4 / 3;
        max-height: none;
    }

    .contact-page-split {
        padding: 40px 0 56px;
    }

    .contact-page-split-inner {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
        align-self: stretch;
    }

    .contact-page-aside-actions {
        flex-direction: column;
    }

    .contact-page-wa-btn,
    .contact-page-phone-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .contact-page-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* —— Global visual polish + mobile refinement —— */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.hero-content,
.page-hero-inner {
    text-wrap: balance;
}

.hero-content h1,
.page-hero-title {
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.hero-btn,
.contact-btn,
.service-btn,
.free-survey-btn,
.contact-strip-btn {
    transition:
        transform 0.22s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.25s ease,
        filter 0.22s ease;
}

.hero-btn:hover,
.contact-btn:hover,
.service-btn:hover,
.free-survey-btn:hover,
.contact-strip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    filter: brightness(1.03);
}

.service-card,
.about-page-value-card,
.service-detail-feature-card,
.contact-card {
    transition:
        transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.32s cubic-bezier(0.33, 1, 0.68, 1),
        border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px) scale(1.004);
}

.gallery-item {
    isolation: isolate;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 35%);
    opacity: 0.5;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 0.95;
}

.gallery-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.gallery-item,
.service-detail-visual,
.about-page-intro-photo {
    will-change: transform;
}

.fx-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
    transition:
        opacity 0.82s ease,
        transform 0.82s cubic-bezier(0.2, 0.95, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.fx-reveal.fx-from-left {
    transform: translate3d(-72px, 14px, 0) rotate(-0.6deg) scale(0.985);
}

.fx-reveal.fx-from-right {
    transform: translate3d(72px, 14px, 0) rotate(0.6deg) scale(0.985);
}

.fx-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

@media (max-width: 900px) {
    .hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: clamp(22px, 6vw, 30px);
    }

    .page-hero-title {
        font-size: clamp(30px, 8vw, 42px);
    }

    .page-hero-lead,
    .about-page-lead,
    .service-detail-paragraph {
        font-size: 15px;
        line-height: 1.62;
    }

    .free-survey-inner {
        border-radius: 12px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100%, calc(100% - 28px));
    }

    .hero {
        padding-top: 84px !important;
    }

    .hero-btn,
    .contact-btn,
    .service-btn,
    .free-survey-btn,
    .contact-strip-btn {
        min-height: 44px;
    }

    .service-card h3 {
        font-size: 28px !important;
    }

    .service-card p {
        min-height: 0 !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 220px !important;
        gap: 12px !important;
    }

    .fx-reveal.fx-from-left,
    .fx-reveal.fx-from-right {
        transform: translate3d(0, 22px, 0) scale(0.99);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fx-reveal,
    .gallery-item,
    .service-card,
    .hero-btn,
    .contact-btn,
    .service-btn,
    .free-survey-btn,
    .contact-strip-btn {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .fx-reveal {
        opacity: 1 !important;
    }
}

/* —— 8px spacing system (8/16/24/32/48) —— */
main > section {
    margin-bottom: var(--space-4) !important;
}

main > section:last-of-type {
    margin-bottom: 0 !important;
}

.container {
    width: min(1200px, calc(100% - var(--space-4))) !important;
}

.hero-content,
.page-hero-inner {
    padding: var(--space-6) var(--space-3) !important;
}

.service-cards,
.about-badges,
.gallery-tabs,
.about-page-values-grid,
.service-detail-features,
.contact-page-cards-grid {
    gap: var(--space-2) !important;
}

.service-card,
.about-page-value-card,
.service-detail-feature-card,
.contact-card,
.contact-page-form-panel,
.contact-page-aside {
    padding: var(--space-3) !important;
}

.service-visual {
    margin: var(--space-2) 0 !important;
}

.contact-strip {
    padding: var(--space-4) 0 !important;
}

.free-survey-inner {
    padding: var(--space-4) !important;
}

.free-survey-actions {
    gap: var(--space-2) !important;
}

.footer-inner {
    padding: var(--space-6) 0 var(--space-4) !important;
    gap: var(--space-6) var(--space-6) !important;
}

.footer-columns {
    gap: var(--space-4) var(--space-4) !important;
}

@media (max-width: 820px) {
    main > section {
        margin-bottom: var(--space-3) !important;
    }

    .hero-content,
    .page-hero-inner,
    .free-survey-inner,
    .contact-page-form-panel,
    .contact-page-aside {
        padding: var(--space-3) !important;
    }

    .container {
        width: min(100%, calc(100% - var(--space-3))) !important;
    }
}
