/* Akman Foto-Film — kurumsal fotoğraf & video */
:root {
    --bg: #f8fafc;
    --bg-elevated: #ffffff;
    --surface: #f1f5f9;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-soft: #94a3b8;
    --primary: #0f172a;
    --primary-dark: #020617;
    --primary-light: rgba(15, 23, 42, 0.06);
    --accent: #ea580c;
    --accent-dark: #c2410c;
    --accent-light: rgba(234, 88, 12, 0.12);
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
    --radius: 16px;
    --max: 1140px;
    --header-h: 76px;
    --site-header-offset: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    --page-gutter: 1.25rem;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

html.is-menu-scroll-locking { scroll-behavior: auto !important; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: calc(var(--max) + var(--page-gutter) * 2);
    margin-inline: auto;
    padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px)) max(var(--page-gutter), env(safe-area-inset-right, 0px));
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 201;
    min-height: var(--header-h);
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    align-items: center;
    height: var(--header-h);
    gap: 0.5rem 0.75rem;
    min-width: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    max-width: 100%;
    line-height: 1.15;
}

.logo-img {
    height: 57px;
    width: auto;
    max-width: min(222px, 48vw);
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.logo-name {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-name em {
    font-style: normal;
    color: var(--accent);
}

.logo-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    min-width: 0;
}

.nav-desktop a {
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-dark);
    background: var(--accent-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    justify-self: end;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover { filter: brightness(1.05); box-shadow: var(--shadow-md); }

.btn-outline {
    background: var(--bg-elevated);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

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

.nav-backdrop {
    display: none;
    position: fixed;
    top: var(--site-header-offset);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 199;
    pointer-events: auto;
}

.nav-backdrop.open { display: block; }

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--site-header-offset);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - var(--site-header-offset));
    background: #fff;
    padding: 0.5rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    gap: 0.25rem;
    z-index: 202;
    isolation: isolate;
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

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

.nav-mobile a:not(.btn) {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.nav-mobile a:not(.btn):hover,
.nav-mobile a:not(.btn).active {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.nav-mobile .btn { width: 100%; margin-top: 0.35rem; }

/* ── Home hero ── */
.home-hero {
    position: relative;
    isolation: isolate;
    min-height: min(88svh, 780px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.home-hero__media {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.35) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    color: #fff;
    max-width: 36rem;
}

.home-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.75rem;
}

.home-hero h1 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.home-hero__lead {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.home-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.home-hero__trust span {
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ── Sections ── */
.section { padding: 4rem 0; }
.bg-white { background: var(--bg-elevated); }

.section-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
    margin-bottom: 0.65rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

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

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Packages ── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.package-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

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

.package-card__head {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--accent-light), var(--surface));
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.package-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.package-card__tier {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-dark);
}

.package-card h3 { font-size: 1.05rem; font-weight: 800; }

.package-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1;
}

.package-card ul {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0.75rem;
}

.package-card ul li {
    padding: 0.2rem 0;
    border-bottom: 1px dashed var(--border);
}

.package-card ul li:last-child { border-bottom: none; }

/* ── Page hero ── */
.page-hero {
    padding: 2.75rem 0 2rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-soft);
    margin-bottom: 0.75rem;
}

.breadcrumb a:hover { color: var(--accent-dark); }

.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 40rem;
}

/* ── About / contact ── */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.contact-list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    font-weight: 600;
    font-size: 0.92rem;
    transition: border-color 0.2s, background 0.2s;
}

.contact-list a:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 10;
    background: var(--surface);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.cta-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), #1e293b);
    color: #fff;
}

.cta-band h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    max-width: 32rem;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

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

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.testimonial p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
}

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

.testimonials-google-note {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.testimonials-google-note a {
    color: var(--accent-dark);
    font-weight: 600;
}

.testimonials-google-note a:hover {
    text-decoration: underline;
}

.address-pending {
    color: var(--text-muted);
    font-style: normal;
}

.map-placeholder {
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    background: var(--surface);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 220px;
}

.map-placeholder p {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 20rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--primary-dark);
    color: #cbd5e1;
    padding: 3.5rem 0 2rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    font-size: 0.88rem;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 22rem;
    color: #94a3b8;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.86rem;
    margin-bottom: 0.45rem;
    color: #94a3b8;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: #64748b;
}

.logo--footer .logo-img {
    height: 52px;
    max-width: 200px;
}

/* ── Chrome stack: LensOne + Turkinsoft ── */
.ak-chrome-stack {
    background: #0b1220;
}

.ak-lensone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

.ak-lensone-bar:hover {
    color: #fff;
    opacity: 0.95;
}

.ak-lensone-bar img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.ak-powered-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.55rem 1.25rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ak-powered-footer a {
    display: inline-flex;
    align-items: center;
    opacity: 0.92;
    transition: opacity 0.2s;
}

.ak-powered-footer a:hover { opacity: 1; }

.ak-powered-by {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
    white-space: nowrap;
}

.ak-powered-footer img {
    height: 1.1rem;
    width: auto;
    max-width: min(9rem, 42vw);
    object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .cards-grid,
    .packages-grid,
    .split-grid,
    .footer-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-desktop,
    .header-cta .btn-outline,
    .header-cta .btn-primary { display: none; }

    .menu-toggle { display: flex; }

    .site-header {
        backdrop-filter: none;
        background: #fff;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .logo { flex: 1; max-width: calc(100% - 2.75rem); }

    .logo-tagline { display: none; }

    .logo-name {
        font-size: 0.82rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-img {
        height: 48px;
        max-width: min(180px, 42vw);
    }

    .home-hero { min-height: min(82svh, 640px); }

    .home-hero__content { padding: 2rem 0; }

    .section { padding: 2.75rem 0; }

    body.menu-open .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 203;
    }

    html.menu-open,
    html.menu-open body,
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open main {
        pointer-events: none;
    }
}

@media (min-width: 961px) {
    :root { --page-gutter: 2rem; }
}

@media (max-width: 1280px) {
    .logo-tagline { display: none; }
}
