/* ============================================================
   SÜMRA YAPI — Apple-inspired Frozen Glass
   Saf CSS — Framework yok
   ============================================================ */

/* --- CSS Değişkenleri --- */
:root,
[data-theme="dark"] {
    --bg-deep: #0a0a0a;
    --bg-surface: #121212;
    --bg-elevated: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.14);
    --gold: #d4af37;
    --gold-light: #e8c96a;
    --gold-dark: #b8860b;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --text-primary: #f5f5f7;
    --text-secondary: rgba(245, 245, 247, 0.58);
    --text-muted: rgba(245, 245, 247, 0.36);
    --blur: 28px;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --shadow-glass: 0 12px 40px rgba(0, 0, 0, 0.18);
    --hairline: rgba(255, 255, 255, 0.08);
    --transition: 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
    --reveal-duration: 0.9s;
    --reveal-stagger: 0.12s;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    --container: 1080px;
    --nav-height: 96px;
    --nav-float-top: 16px;
    --nav-bar-height: 64px;
    --section-pad: 100px;
    --gutter: 24px;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-strong: rgba(255, 255, 255, 0.07);
    --surface-border: rgba(255, 255, 255, 0.08);
    --surface-inset: transparent;
    --chip-bg: rgba(255, 255, 255, 0.06);
    --nav-bg: rgba(22, 22, 24, 0.55);
    --nav-bg-scrolled: rgba(18, 18, 20, 0.72);
    --nav-border: rgba(255, 255, 255, 0.1);
    --nav-menu-bg: rgba(18, 18, 20, 0.9);
    --overlay-soft: rgba(10, 10, 10, 0.5);
    --btn-ink: #0a0a0a;
    --grid-line: rgba(255, 255, 255, 0.025);
    --form-bg: rgba(255, 255, 255, 0.035);
    --hero-badge-bg: rgba(255, 255, 255, 0.04);
    --scroll-bg: rgba(255, 255, 255, 0.06);
    --color-scheme: dark;
}

[data-theme="light"] {
    --bg-deep: #f5f5f7;
    --bg-surface: #ffffff;
    --bg-elevated: #ececef;
    --glass-bg: rgba(255, 255, 255, 0.42);
    --glass-border: rgba(0, 0, 0, 0.07);
    --glass-highlight: rgba(0, 0, 0, 0.1);
    --gold: #b8860b;
    --gold-light: #c9a227;
    --gold-dark: #9a7209;
    --gold-glow: rgba(184, 134, 11, 0.18);
    --text-primary: #1d1d1f;
    --text-secondary: rgba(29, 29, 31, 0.58);
    --text-muted: rgba(29, 29, 31, 0.42);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.06);
    --hairline: rgba(0, 0, 0, 0.08);
    --surface: rgba(255, 255, 255, 0.48);
    --surface-strong: rgba(255, 255, 255, 0.62);
    --surface-border: rgba(0, 0, 0, 0.07);
    --surface-inset: transparent;
    --chip-bg: rgba(184, 134, 11, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.72);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.9);
    --nav-border: rgba(0, 0, 0, 0.08);
    --nav-menu-bg: rgba(255, 255, 255, 0.96);
    --overlay-soft: rgba(245, 245, 247, 0.75);
    --btn-ink: #0a0a0a;
    --grid-line: rgba(0, 0, 0, 0.05);
    --form-bg: #ffffff;
    --hero-badge-bg: rgba(255, 255, 255, 0.9);
    --scroll-bg: #ffffff;
    --color-scheme: light;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    color-scheme: var(--color-scheme);
}

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Tema: View Transition ile soft crossfade (varsayılan snapshot fade) */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation-duration: 0.01ms !important;
    }
}

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 12px 18px;
    background: var(--gold);
    color: var(--btn-ink, #0a0a0a);
    font-weight: 600;
    border-radius: 12px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Ambient Background --- */
.ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.ambient--gold {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    top: -200px;
    right: -150px;
}

.ambient--blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 80, 120, 0.15), transparent 70%);
    bottom: 10%;
    left: -200px;
}

/* --- Container --- */
.container {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

/* --- Glass Utility --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: saturate(1.4) blur(var(--blur));
    -webkit-backdrop-filter: saturate(1.4) blur(var(--blur));
    border: 1px solid var(--glass-border);
}

/* Etkileşimli / odak yüzeyler için cam */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: saturate(1.4) blur(28px);
    -webkit-backdrop-filter: saturate(1.4) blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: none;
    transition: background var(--transition), border-color var(--transition);
}

@media (hover: hover) {
    .glass-card:hover {
        border-color: var(--glass-highlight);
        background: var(--surface-strong);
        box-shadow: none;
    }
}

/* Açık Apple paneli — kutu hissi yok */
.surface {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.surface--soft {
    padding: 8px 0 28px;
    border-bottom: 1px solid var(--hairline);
}

.surface--soft:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* --- Navbar — floating Apple capsule --- */
.navbar {
    position: fixed;
    top: var(--nav-float-top);
    left: 0;
    right: 0;
    z-index: 1000;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
}

.navbar--scrolled .navbar__inner {
    background: var(--nav-bg-scrolled);
    border-color: var(--nav-border);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 var(--surface-inset);
}

.navbar__inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: var(--nav-bar-height);
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
    padding: 0 10px 0 16px;
    border-radius: 999px;
    background: var(--nav-bg);
    backdrop-filter: saturate(1.8) blur(28px);
    -webkit-backdrop-filter: saturate(1.8) blur(28px);
    border: 1px solid var(--nav-border);
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 var(--surface-inset);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.navbar__logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px var(--gold-glow));
}

.navbar__name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.navbar__name strong {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar__name small {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.nav-link:hover:not(.nav-link--cta) {
    color: var(--text-primary);
    background: var(--chip-bg);
}

.nav-link.is-active:not(.nav-link--cta) {
    color: var(--text-primary);
    background: var(--chip-bg);
}

.nav-link--cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--btn-ink) !important;
    font-weight: 600;
    box-shadow: none;
}

.nav-link--cta:hover,
.nav-link--cta.is-active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--btn-ink) !important;
    box-shadow: none;
    transform: none;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: var(--chip-bg);
    border: 1px solid var(--surface-border);
    cursor: pointer;
    flex-shrink: 0;
    transition:
        background 0.45s var(--ease-apple),
        border-color 0.45s var(--ease-apple),
        color 0.45s var(--ease-apple),
        box-shadow 0.45s var(--ease-apple),
        transform 0.45s var(--ease-out-soft);
}

.theme-toggle:hover {
    border-color: var(--glass-highlight);
    background: var(--surface-strong);
}

.theme-toggle.is-animating {
    animation: themeTogglePop 0.55s var(--ease-out-soft);
}

@keyframes themeTogglePop {
    0%   { transform: scale(1) rotate(0deg); }
    35%  { transform: scale(1.18) rotate(20deg); }
    70%  { transform: scale(0.94) rotate(-8deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    display: none;
    transform-origin: center;
    transition: transform 0.5s var(--ease-out-soft), opacity 0.35s ease;
}

[data-theme="dark"] .theme-toggle .icon-sun,
[data-theme="light"] .theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
    animation: themeIconIn 0.5s var(--ease-out-soft);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    animation: themeIconIn 0.5s var(--ease-out-soft);
}

@keyframes themeIconIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-40deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    flex-shrink: 0;
    z-index: 1002;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.is-active span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    min-height: min(84vh, 780px);
    display: flex;
    align-items: flex-start;
    padding-top: calc(var(--nav-height) + 72px); /* grid karesi altına otursun */
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 560px;
    padding: 12px 0 44px;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--hero-badge-bg);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.hero__title {
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: unset;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__visual {
    position: absolute;
    right: max(32px, calc((100% - var(--container)) / 2));
    top: 46%;
    transform: translateY(-50%);
    width: min(44%, 480px);
    max-width: 480px;
    /* opacity reveal’da; yoğunluk img’de — light override F5’te logoyu açık bırakıyordu */
    --logo-strength: 0.9;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.hero__visual::before {
    display: none;
}

.hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    opacity: var(--logo-strength);
    /* Alpha mask (transparent) — luminance SVG light’ta keskin kesiyordu */
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 32%,
        transparent 90%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 32%,
        transparent 90%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    animation: floatLogo 8s var(--ease-apple) infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    min-height: 48px;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--btn-ink);
}

.btn--primary:hover {
    box-shadow: 0 8px 30px var(--gold-glow);
    transform: translateY(-2px);
}

.btn--ghost {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn--block {
    width: 100%;
    justify-content: center;
}

/* --- Section --- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.section--tight {
    padding-top: 0;
}

.section__actions {
    text-align: center;
    margin-top: 40px;
}

.section__cta {
    margin-top: 12px;
}

.section__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.section__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.55;
    font-weight: 400;
}

/* --- Stats — soft Apple pills --- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    padding: 0;
    border: none;
    background: none;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 24px;
    /* Düşük opaklık + hafif blur: hero logosu karttan yansır */
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: saturate(1.55) blur(14px);
    -webkit-backdrop-filter: saturate(1.55) blur(14px);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.stat-card__value {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card__num {
    display: inline-block;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.05em;
}

.stat-card__suffix {
    position: absolute;
    top: 0.08em;
    left: 100%;
    margin-left: 1px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-card__line {
    width: 24px;
    height: 2px;
    margin: 0 0 14px;
    border-radius: 99px;
    background: var(--gold);
    opacity: 0.85;
    flex-shrink: 0;
}

.stat-card__label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-muted);
}

/* --- Testimonials — soft glass --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: none;
    backdrop-filter: saturate(1.4) blur(24px);
    -webkit-backdrop-filter: saturate(1.4) blur(24px);
}

.testimonial-card:last-child {
    border-right: 1px solid var(--surface-border);
    padding-right: 24px;
}

.testimonial-card:first-child {
    padding-left: 24px;
}

.testimonial-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.testimonial-card__name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.testimonial-card__role {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
}

.testimonial-card__logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.testimonial-card__text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 400;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
}

.stars svg {
    width: 18px;
    height: 18px;
}

/* --- Service Categories — Apple-style panels --- */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-block__header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hairline);
}

.category-block__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.12);
    border: none;
    color: var(--gold-light);
    flex-shrink: 0;
}

.category-block__icon svg {
    width: 26px;
    height: 26px;
}

.category-block__title {
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.category-block__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 400;
    max-width: 52ch;
}

/* Hizmetler: kategori tek panel, iç hizmetler kartsız */
.services-grid .category-block {
    padding: 32px 36px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    box-shadow: none;
    backdrop-filter: saturate(1.4) blur(28px);
    -webkit-backdrop-filter: saturate(1.4) blur(28px);
    overflow: visible;
    transition:
        opacity var(--reveal-duration) var(--ease-out-soft),
        transform var(--reveal-duration) var(--ease-out-soft),
        background 0.5s var(--ease-apple),
        border-color 0.5s var(--ease-apple);
    transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s), 0s, 0s;
}

@media (hover: hover) {
    .services-grid .category-block:hover {
        background: rgba(255, 255, 255, 0.045);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

.services-grid .service-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
}

.services-grid .service-card {
    flex: 1 1 200px;
    padding: 28px 22px 8px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--hairline);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    /* Genel .service-card overflow/height kırpıyordu */
    overflow: visible;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: opacity 0.3s ease;
}

.services-grid .service-card:first-child {
    padding-left: 0;
}

.services-grid .service-card:last-child {
    border-right: none;
    padding-right: 0;
}

.services-grid .service-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: none;
    margin-bottom: 16px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.services-grid .service-card__icon svg {
    width: 20px !important;
    height: 20px !important;
}

.services-grid .service-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
    line-height: 1.35;
}

.services-grid .service-card__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
    padding-bottom: 20px;
    overflow: visible;
}

@media (hover: hover) {
    .services-grid .service-card:hover {
        background: transparent;
        border-color: var(--hairline);
        opacity: 0.88;
    }
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.service-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: none;
    backdrop-filter: saturate(1.4) blur(24px);
    -webkit-backdrop-filter: saturate(1.4) blur(24px);
    transition: background var(--transition), border-color var(--transition);
}

.service-card::before {
    display: none;
}

@media (hover: hover) {
    .service-card:hover {
        opacity: 1;
        background: var(--surface-strong);
        border-color: var(--nav-border);
    }
}

.service-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: none;
    color: var(--gold-light);
    margin-bottom: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card__icon svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
    display: block;
    flex-shrink: 0;
}

.service-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- About Preview --- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-preview__text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.about-preview__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    padding: 20px;
    border-radius: var(--radius-sm);
}

.highlight-item strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 6px;
}

.highlight-item span {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* --- Contact page --- */
.section--contact { padding-top: 0; }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    border: none;
}

.contact-card {
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: none;
    backdrop-filter: saturate(1.4) blur(24px);
    -webkit-backdrop-filter: saturate(1.4) blur(24px);
    transition: background var(--transition), border-color var(--transition);
}

.contact-card:last-child {
    border-right: 1px solid var(--surface-border);
}

a.contact-card:hover {
    background: var(--surface-strong);
    border-color: var(--nav-border);
    opacity: 1;
}

@media (hover: hover) {
    a.contact-card:hover {
        transform: none;
    }
}

.contact-card--static { cursor: default; }

.contact-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.16);
    color: var(--gold);
}

.contact-card__icon svg { width: 22px; height: 22px; }

.contact-card__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.contact-card__value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-word;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-form-card {
    display: flex;
    flex-direction: column;
}

.contact-address-card {
    padding: 0;
    overflow: hidden;
}

.contact-address-card,
.contact-form-card {
    height: 100%;
}

.office-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    gap: 18px;
}

.office-panel__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.office-panel__badge {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.08);
}

.office-panel__head .contact-form__title {
    margin: 0;
    font-size: 1.35rem;
}

.office-panel__address {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--glass-border);
}

.office-panel__pin {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.office-panel__pin svg { width: 20px; height: 20px; }

.office-panel__address p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Harita çerçevesi — dark’ta soft koyu, light’ta doğal */
.map-frame {
    position: relative;
    flex: 1;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: #1a1a1a;
    transition: background 0.5s var(--ease-apple), border-color 0.5s var(--ease-apple);
}

.map-frame__iframe {
    position: absolute;
    top: -56px;
    left: 0;
    width: 100%;
    height: calc(100% + 56px);
    border: 0;
    filter: brightness(0.82) saturate(0.88) contrast(1.06);
    transition: filter 0.55s var(--ease-apple);
}

.map-frame__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.45) 0%, transparent 18%, transparent 82%, rgba(10,10,10,0.5) 100%),
        radial-gradient(ellipse at center, transparent 50%, rgba(10,10,10,0.25) 100%);
    transition: opacity 0.55s var(--ease-apple), background 0.55s var(--ease-apple);
}

.map-actions__btn {
    justify-content: center;
    font-size: 0.85rem;
    padding: 12px 16px;
    width: 100%;
}

.map-actions__btn--solo {
    margin-top: 4px;
}

.map-actions__btn svg { width: 16px; height: 16px; }

.contact-address-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-address-block svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-address-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact-info__value a:hover {
    color: var(--gold-light);
}

/* --- Form --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--form-bg);
    border: 1px solid var(--surface-border);
    border-radius: 18px;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(10px);
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-control.is-error {
    border-color: #e74c3c;
}

.form-hint {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-muted);
}

.form-hint.is-warn {
    color: var(--text-muted);
}

.form-hint.is-ok {
    color: var(--gold-light);
}

[data-theme="light"] .form-hint.is-ok {
    color: var(--gold);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

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

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.alert--success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.alert--error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* --- Page Header --- */
.page-hero {
    padding: calc(var(--nav-height) + 64px) 0 48px;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.page-hero__desc {
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.55;
    font-weight: 400;
}

/* --- Footer --- */
.footer {
    padding: 72px 0 0;
    margin-top: 72px;
    border-top: 1px solid var(--hairline);
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.footer__brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

.footer__logo {
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.footer__tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 280px;
}

.footer__brand-col .btn {
    align-self: flex-start;
}

.footer__phone-btn svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer__heading {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer__col a:hover { color: var(--gold-light); }

.footer__contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 14px;
}

.footer__contact-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 3px;
}

.footer__contact-list a {
    color: var(--text-secondary);
}

.footer__contact-list a:hover { color: var(--gold-light); }

.footer__bar {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    text-align: center;
}

.footer__bar p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Floating action buttons --- */
.float-actions {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.scroll-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), border-color var(--transition);
}

.scroll-top svg { width: 22px; height: 22px; }

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* --- Map --- */
.section--map { padding-top: 0; }

.map-wrapper {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.map-iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

/* --- Page hero visual --- */
.page-hero--visual {
    position: relative;
}

.page-hero--visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
    pointer-events: none;
}

/* --- Hero enhanced --- */
.hero--enhanced {
    position: relative;
}

/* Tek katmanlı grid — sadece çizgi opacity’si soft solar (renk boyamak banding yapar) */
.hero__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    opacity: 0.85;
    /* Uzun, yumuşak alpha fade — hero altında sert kesilmeyi önler */
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 42%,
        rgba(0, 0, 0, 0.92) 52%,
        rgba(0, 0, 0, 0.72) 62%,
        rgba(0, 0, 0, 0.48) 72%,
        rgba(0, 0, 0, 0.28) 82%,
        rgba(0, 0, 0, 0.12) 90%,
        rgba(0, 0, 0, 0.04) 96%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 42%,
        rgba(0, 0, 0, 0.92) 52%,
        rgba(0, 0, 0, 0.72) 62%,
        rgba(0, 0, 0, 0.48) 72%,
        rgba(0, 0, 0, 0.28) 82%,
        rgba(0, 0, 0, 0.12) 90%,
        rgba(0, 0, 0, 0.04) 96%,
        transparent 100%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.section--alt {
    background: transparent;
    border: none;
}

/* --- Project cards — soft media --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 28px;
}

.project-grid--home {
    grid-template-columns: repeat(3, 1fr);
}

.project-card {
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: none;
    backdrop-filter: saturate(1.3) blur(20px);
    -webkit-backdrop-filter: saturate(1.3) blur(20px);
}

.project-card__image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border-radius: 0;
    overflow: hidden;
}

.project-card__category {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-img--road {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3436 50%, #636e72 100%);
}
.project-img--energy {
    background: linear-gradient(135deg, #0a0a0a 0%, #1e3a5f 50%, #d4af37 100%);
}
.project-img--building {
    background: linear-gradient(135deg, #121212 0%, #2c2c2c 40%, #b8860b 100%);
}
.project-img--excavator {
    background: linear-gradient(135deg, #1a1510 0%, #3d3225 50%, #8b7355 100%);
}
.project-img--landscape {
    background: linear-gradient(135deg, #0d1f0d 0%, #1a3a1a 50%, #2d5a27 100%);
}
.project-img--industrial {
    background: linear-gradient(135deg, #0f0f14 0%, #2a2a35 50%, #4a4a55 100%);
}

.project-card__body {
    padding: 22px 24px 26px;
}

.project-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.project-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- Reference cards — Apple soft tiles --- */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 16px;
}

.ref-card {
    text-align: left;
    padding: 28px 26px 30px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: saturate(1.5) blur(28px);
    -webkit-backdrop-filter: saturate(1.5) blur(28px);
    transition:
        opacity var(--reveal-duration) var(--ease-out-soft),
        transform var(--reveal-duration) var(--ease-out-soft),
        background 0.45s var(--ease-apple),
        border-color 0.45s var(--ease-apple),
        box-shadow 0.45s var(--ease-apple);
    transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s), 0s, 0s, 0s;
}

@media (hover: hover) {
    .ref-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
        transform: translateY(-3px);
    }

    .ref-card.reveal:not(.is-visible):hover {
        transform: translate3d(0, 32px, 0) scale(0.985);
    }
}

.ref-card__icon {
    width: 44px;
    height: 44px;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    border: none;
    color: var(--gold-light);
}

.ref-card__icon svg { width: 22px; height: 22px; }

.ref-card__sector {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 10px;
}

.ref-card__name {
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ref-card__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* --- Ref strip (homepage) — ayrı soft tile’lar, çizgisiz --- */
.ref-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.ref-strip__item {
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: saturate(1.5) blur(28px);
    -webkit-backdrop-filter: saturate(1.5) blur(28px);
    transition:
        opacity var(--reveal-duration) var(--ease-out-soft),
        transform 0.45s var(--ease-out-soft),
        background 0.45s var(--ease-apple),
        border-color 0.45s var(--ease-apple),
        box-shadow 0.45s var(--ease-apple);
    transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s), 0s, 0s, 0s;
}

@media (hover: hover) {
    .ref-strip__item:hover {
        background: rgba(255, 255, 255, 0.055);
        border-color: rgba(255, 255, 255, 0.12);
        transform: translateY(-3px);
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
    }

    .ref-strip__item.reveal:not(.is-visible):hover {
        transform: translate3d(0, 32px, 0) scale(0.985);
    }
}

.ref-strip__item strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.ref-strip__item span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Trust band — soft tile grid --- */
.trust-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    border-radius: 0;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.trust-band__item {
    padding: 32px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: saturate(1.5) blur(28px);
    -webkit-backdrop-filter: saturate(1.5) blur(28px);
    transition: background 0.45s var(--ease-apple), border-color 0.45s var(--ease-apple), transform 0.45s var(--ease-out-soft);
}

@media (hover: hover) {
    .trust-band__item:hover {
        background: rgba(255, 255, 255, 0.055);
        border-color: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }
}

.trust-band__item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.trust-band__item span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-muted);
}

/* --- About visual --- */
.about-preview__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual {
    text-align: center;
    padding: 48px 36px;
    width: 100%;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    backdrop-filter: saturate(1.5) blur(28px);
    -webkit-backdrop-filter: saturate(1.5) blur(28px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.about-visual--large { padding: 56px 48px; }

.about-visual__logo {
    width: 120px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 24px var(--gold-glow));
}

.about-visual h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.about-visual p,
.about-visual__tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-contact-mini {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.about-contact-mini p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.about-contact-mini strong {
    color: var(--gold-light);
    font-weight: 600;
}

.about-contact-mini a:hover { color: var(--gold-light); }

/* --- Misyon / Vizyon --- */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mission-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: none;
    backdrop-filter: saturate(1.4) blur(24px);
    -webkit-backdrop-filter: saturate(1.4) blur(24px);
}

.mission-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.mission-card__icon svg {
    width: 24px;
    height: 24px;
}

.mission-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.mission-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- CTA banner --- */
.cta-banner {
    text-align: center;
    padding: 56px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    backdrop-filter: saturate(1.4) blur(28px);
    -webkit-backdrop-filter: saturate(1.4) blur(28px);
    box-shadow: none;
}

.cta-banner h2,
.cta-banner .section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.cta-banner p,
.cta-banner .section__desc {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
    line-height: 1.5;
}

.contact-info-card__title {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.contact-info-card__sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.contact-form__title {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contact-form__sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer__contact-list li,
.footer__contact-list a,
.footer__tagline {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* --- Reveal Animation (Apple soft) --- */
.reveal {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.985);
    transition:
        opacity var(--reveal-duration) var(--ease-out-soft),
        transform var(--reveal-duration) var(--ease-out-soft);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

.reveal-delay-1 { --reveal-delay: 0.12s; }
.reveal-delay-2 { --reveal-delay: 0.24s; }
.reveal-delay-3 { --reveal-delay: 0.36s; }
.reveal-delay-4 { --reveal-delay: 0.48s; }

/* Grid / liste kademeleri — soft cascade */
.stats > .reveal:nth-child(1),
.project-grid > .reveal:nth-child(1),
.service-cards > .reveal:nth-child(1),
.services-grid > .reveal:nth-child(1),
.testimonial-grid > .reveal:nth-child(1),
.ref-grid > .reveal:nth-child(1) { --reveal-delay: 0.06s; }

.stats > .reveal:nth-child(2),
.project-grid > .reveal:nth-child(2),
.service-cards > .reveal:nth-child(2),
.services-grid > .reveal:nth-child(2),
.testimonial-grid > .reveal:nth-child(2),
.ref-grid > .reveal:nth-child(2) { --reveal-delay: 0.17s; }

.stats > .reveal:nth-child(3),
.project-grid > .reveal:nth-child(3),
.service-cards > .reveal:nth-child(3),
.testimonial-grid > .reveal:nth-child(3),
.ref-grid > .reveal:nth-child(3) { --reveal-delay: 0.28s; }

.stats > .reveal:nth-child(4),
.project-grid > .reveal:nth-child(4),
.service-cards > .reveal:nth-child(4),
.testimonial-grid > .reveal:nth-child(4),
.ref-grid > .reveal:nth-child(4) { --reveal-delay: 0.39s; }

.service-cards > .reveal:nth-child(5),
.project-grid > .reveal:nth-child(5),
.ref-grid > .reveal:nth-child(5) { --reveal-delay: 0.5s; }

.service-cards > .reveal:nth-child(6),
.project-grid > .reveal:nth-child(6),
.ref-grid > .reveal:nth-child(6) { --reveal-delay: 0.61s; }

.ref-strip > .reveal:nth-child(1),
.trust-band > .reveal:nth-child(1) { --reveal-delay: 0.06s; }
.ref-strip > .reveal:nth-child(2),
.trust-band > .reveal:nth-child(2) { --reveal-delay: 0.16s; }
.ref-strip > .reveal:nth-child(3),
.trust-band > .reveal:nth-child(3) { --reveal-delay: 0.26s; }
.ref-strip > .reveal:nth-child(4),
.trust-band > .reveal:nth-child(4) { --reveal-delay: 0.36s; }

.hero__content.reveal { --reveal-delay: 0.08s; }
.hero__visual.reveal { --reveal-delay: 0.28s; }

/* Reveal + kart birleşince hover transition reveal'i ezmesin */
.service-card.reveal,
.project-card.reveal,
.stat-card.reveal,
.testimonial-card.reveal,
.ref-card.reveal,
.glass-card.reveal {
    transition:
        opacity var(--reveal-duration) var(--ease-out-soft),
        transform var(--reveal-duration) var(--ease-out-soft),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s), 0s, 0s, 0s;
}

/* Hizmetler: 1–2 soft cascade; 3–4 kısa gecikme (eskiden 0.42 / 0.58 idi) */
.services-grid > .reveal:nth-child(1) { --reveal-delay: 0.1s; }
.services-grid > .reveal:nth-child(2) { --reveal-delay: 0.22s; }
.services-grid > .reveal:nth-child(3) { --reveal-delay: 0.28s; }
.services-grid > .reveal:nth-child(4) { --reveal-delay: 0.34s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
        --nav-float-top: 14px;
        --nav-bar-height: 60px;
        --nav-height: 88px;
    }

    .hero__content {
        max-width: 560px;
    }

    .hero__visual {
        width: min(34%, 300px);
        max-width: 300px;
        right: max(8px, 1.5vw);
        --logo-strength: 0.55;
    }

    .stats { grid-template-columns: repeat(2, 1fr); }
    .about-preview { grid-template-columns: 1fr; gap: 32px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .project-grid--home { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .ref-strip { grid-template-columns: 1fr 1fr; }
    .trust-band {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
        background: transparent;
        border: none;
    }

    .trust-band__item {
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.035);
        padding: 28px 16px;
    }

    .ref-strip {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        background: transparent;
        border: none;
    }

    .ref-strip__item {
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.035);
    }
    .service-cards { grid-template-columns: repeat(2, 1fr); }
}

/* Dar tablet / büyük telefon: yan logo asimetri yapmasın */
@media (max-width: 900px) {
    .hero__content {
        max-width: 100%;
    }

    .hero__visual {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 56px;
        --gutter: 16px;
        --nav-float-top: 12px;
        --nav-bar-height: 56px;
        --nav-height: 80px;
        --radius-md: 16px;
    }

    .navbar__brand { order: 1; }
    .navbar__actions { order: 2; }
    .navbar__nav { order: 3; }

    .navbar__toggle { display: flex; }

    .navbar__name small { display: none; }

    .navbar__logo {
        width: 34px;
        height: 34px;
    }

    .navbar__inner {
        width: min(100% - 24px, var(--container));
        padding: 0 8px 0 14px;
        border-radius: 999px;
    }

    .navbar__nav {
        position: fixed;
        top: calc(var(--nav-float-top) + var(--nav-bar-height) + 10px);
        left: 12px;
        right: 12px;
        bottom: auto;
        max-height: calc(100dvh - var(--nav-float-top) - var(--nav-bar-height) - 24px);
        z-index: 1001;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 6px;
        background: var(--nav-menu-bg);
        backdrop-filter: saturate(1.8) blur(28px);
        -webkit-backdrop-filter: saturate(1.8) blur(28px);
        border: 1px solid var(--nav-border);
        border-radius: 28px;
        box-shadow:
            0 16px 48px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
        transform: translateY(-12px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
        padding: 14px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar__nav.is-open {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-track {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        padding: 0;
        background: none;
        border: none;
    }

    .nav-indicator { display: none !important; }

    .nav-link {
        font-size: 1.02rem;
        padding: 14px 18px;
        width: 100%;
        text-align: left;
        border-radius: 999px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-link.is-active:not(.nav-link--cta) {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-link--cta {
        justify-content: center;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 16px);
        padding-bottom: 12px;
    }

    .hero__content {
        padding: 12px 0 28px;
        max-width: 100%;
    }

    .hero__visual {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
        min-height: 48px;
    }

    .hero__actions .btn svg {
        width: 18px;
        height: 18px;
    }

    .page-hero {
        padding: calc(var(--nav-height) + 36px) 0 28px;
    }

    .page-hero__title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .section__header {
        margin-bottom: 36px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 0;
        padding: 0;
    }

    .stat-card {
        padding: 20px 12px;
        border-radius: 24px;
    }

    .stat-card__num { font-size: 2rem; }
    .stat-card__suffix { font-size: 1.2rem; }
    .stat-card__label { font-size: 0.8rem; }

    .service-cards,
    .testimonial-grid,
    .mission-grid,
    .project-grid,
    .project-grid--home,
    .ref-grid,
    .contact-cards,
    .form-row,
    .about-preview__highlights,
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card,
    .contact-card,
    .service-card,
    .ref-card,
    .mission-card {
        padding: 22px 18px;
        border-radius: 20px;
        border: 1px solid var(--surface-border);
        background: var(--surface);
        box-shadow: none;
    }

    .trust-band,
    .ref-strip {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        background: transparent;
        border: none;
    }

    .trust-band__item,
    .ref-strip__item {
        padding: 24px 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.035);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .services-grid .category-block {
        padding: 24px 20px 20px;
        border-radius: 22px;
    }

    .category-block__header {
        padding-bottom: 22px;
        gap: 14px;
    }

    .category-block__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .services-grid .service-cards {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .services-grid .service-card {
        flex: none;
        width: 100%;
        padding: 22px 0;
        border-radius: 0;
        border: none !important;
        border-bottom: 1px solid var(--hairline) !important;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        height: auto;
    }

    .services-grid .service-card:last-child {
        border-bottom: none !important;
        padding-bottom: 12px;
    }

    [data-theme="light"] .services-grid .service-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .services-grid .service-card:last-child {
        border-bottom: none !important;
    }

    .services-grid .service-card__desc {
        padding-bottom: 4px;
    }

    .services-grid {
        gap: 16px;
    }

    .testimonial-card:last-child,
    .contact-card:last-child {
        border-bottom: 1px solid var(--surface-border);
        padding-bottom: 22px;
    }

    .glass-card,
    .office-panel,
    .cta-banner,
    .about-visual,
    .about-visual--large {
        padding: 24px 18px;
        border-radius: 20px;
        background: var(--surface);
        box-shadow: none;
    }

    .project-card {
        border-radius: 24px;
    }

    .project-card__body {
        padding: 18px 20px 22px;
    }

    .trust-band {
        grid-template-columns: 1fr 1fr;
    }

    .category-block__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .category-block__title {
        font-size: 1.25rem;
    }

    .map-frame {
        min-height: 240px;
    }

    .map-frame__iframe {
        top: -40px;
        height: calc(100% + 40px);
    }

    .form-control {
        font-size: 16px;
        padding: 14px 16px;
    }

    textarea.form-control {
        min-height: 120px;
    }

    .footer {
        padding-bottom: 100px;
    }

    .float-actions {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(14px, env(safe-area-inset-right));
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
    }

    .ambient--gold,
    .ambient--blue {
        width: 280px;
        height: 280px;
        opacity: 0.22;
    }
}

@media (max-width: 480px) {
    .stat-card__num {
        font-size: 1.7rem;
    }

    .trust-band,
    .ref-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-band__item,
    .ref-strip__item {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .contact-card__value {
        font-size: 0.85rem;
    }

    .hero__badge {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
}

/* Light theme — dark ile aynı hiyerarşi, sadece renk yüzeyi değişir */
[data-theme="light"] .ambient {
    opacity: 0.18;
}

[data-theme="light"] .navbar__name strong {
    color: var(--gold);
}

[data-theme="light"] .navbar__name small {
    color: var(--text-muted);
}

[data-theme="light"] .nav-link:not(.nav-link--cta) {
    color: rgba(29, 29, 31, 0.78);
}

[data-theme="light"] .nav-link:hover:not(.nav-link--cta),
[data-theme="light"] .nav-link.is-active:not(.nav-link--cta) {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-link--cta,
[data-theme="light"] .nav-link--cta:hover,
[data-theme="light"] .nav-link--cta.is-active,
[data-theme="light"] .btn--primary {
    color: var(--btn-ink) !important;
    background: linear-gradient(135deg, #b8860b, #d4af37);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.28);
}

[data-theme="light"] .btn--primary:hover,
[data-theme="light"] .nav-link--cta:hover {
    background: linear-gradient(135deg, #c9a227, #e8c96a);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.32);
}

[data-theme="light"] .theme-toggle {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.14);
    color: #1d1d1f;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .theme-toggle:hover {
    background: #f5f5f7;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Light: dark ile aynı logo renkleri — filtre/recolor yok */
[data-theme="light"] .hero__visual {
    --logo-strength: 0.9;
}

[data-theme="light"] .hero__visual img {
    filter: none;
}

[data-theme="light"] .hero__title,
[data-theme="light"] .page-hero__title,
[data-theme="light"] .section__title,
[data-theme="light"] .category-block__title,
[data-theme="light"] .service-card__title,
[data-theme="light"] .cta-banner .section__title,
[data-theme="light"] .contact-form__title,
[data-theme="light"] .mission-card__title,
[data-theme="light"] .ref-card__name,
[data-theme="light"] .ref-strip__item strong,
[data-theme="light"] .project-card__title,
[data-theme="light"] .testimonial-card__name {
    color: #1d1d1f;
    background: none;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Etiketler dark’taki gibi altın kalır */
[data-theme="light"] .section__label,
[data-theme="light"] .hero__badge,
[data-theme="light"] .ref-card__sector,
[data-theme="light"] .stat-card__suffix,
[data-theme="light"] .testimonial-card__role,
[data-theme="light"] .highlight-item strong,
[data-theme="light"] .footer__brand-name,
[data-theme="light"] .about-visual h3,
[data-theme="light"] .about-contact-mini strong,
[data-theme="light"] .trust-band__item strong {
    color: var(--gold);
}

[data-theme="light"] .hero__subtitle,
[data-theme="light"] .page-hero__desc,
[data-theme="light"] .about-preview__text p,
[data-theme="light"] .about-visual p,
[data-theme="light"] .about-visual__tagline,
[data-theme="light"] .about-contact-mini p,
[data-theme="light"] .about-contact-mini a,
[data-theme="light"] .mission-card p,
[data-theme="light"] .section__desc,
[data-theme="light"] .service-card__desc,
[data-theme="light"] .category-block__desc,
[data-theme="light"] .project-card__desc,
[data-theme="light"] .testimonial-card__text,
[data-theme="light"] .ref-card__desc,
[data-theme="light"] .contact-card__value,
[data-theme="light"] .footer__tagline,
[data-theme="light"] .footer a,
[data-theme="light"] .footer__bar p,
[data-theme="light"] .footer__contact-list li {
    color: var(--text-secondary);
}

[data-theme="light"] .stat-card__label,
[data-theme="light"] .contact-card__label,
[data-theme="light"] .ref-strip__item span,
[data-theme="light"] .trust-band__item span,
[data-theme="light"] .project-card__meta,
[data-theme="light"] .footer__heading {
    color: var(--text-muted);
}

[data-theme="light"] .hero__badge {
    border-color: rgba(184, 134, 11, 0.22);
    background: var(--hero-badge-bg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .btn--ghost {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1d1d1f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .btn--ghost:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: #ffffff;
    color: #1d1d1f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .footer__phone-btn svg {
    color: var(--gold);
}

/* Kartlar: light’ta yarı saydam cam — arka plan yansır */
[data-theme="light"] .stat-card,
[data-theme="light"] .service-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .ref-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .project-card,
[data-theme="light"] .about-visual,
[data-theme="light"] .mission-card,
[data-theme="light"] .glass-card,
[data-theme="light"] .cta-banner,
[data-theme="light"] .trust-band__item,
[data-theme="light"] .ref-strip__item,
[data-theme="light"] .services-grid .category-block {
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    backdrop-filter: saturate(1.5) blur(16px);
    -webkit-backdrop-filter: saturate(1.5) blur(16px);
}

[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.38);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: saturate(1.55) blur(12px);
    -webkit-backdrop-filter: saturate(1.55) blur(12px);
}

[data-theme="light"] .trust-band,
[data-theme="light"] .ref-strip {
    background: transparent;
    border: none;
    box-shadow: none;
}

@media (hover: hover) {
    [data-theme="light"] .service-card:hover,
    [data-theme="light"] .ref-card:hover,
    [data-theme="light"] .ref-strip__item:hover,
    [data-theme="light"] .trust-band__item:hover,
    [data-theme="light"] .services-grid .category-block:hover {
        background: rgba(255, 255, 255, 0.62);
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
    }
}

[data-theme="light"] .services-grid .service-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 !important;
    overflow: visible !important;
    height: auto !important;
}

[data-theme="light"] .services-grid .service-card:last-child {
    border-right: none !important;
}

[data-theme="light"] .services-grid .category-block {
    overflow: visible;
}

[data-theme="light"] .services-grid .category-block__header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

@media (hover: hover) {
    [data-theme="light"] .services-grid .service-card:hover {
        background: transparent !important;
        border-color: transparent !important;
        border-right-color: rgba(0, 0, 0, 0.08) !important;
        box-shadow: none !important;
        opacity: 1;
    }

    [data-theme="light"] .services-grid .service-card:last-child:hover {
        border-right-color: transparent !important;
    }
}

/* İkonlar: dark’taki gold circle’ın light karşılığı */
[data-theme="light"] .service-card__icon,
[data-theme="light"] .category-block__icon,
[data-theme="light"] .services-grid .category-block__icon,
[data-theme="light"] .services-grid .service-card__icon,
[data-theme="light"] .ref-card__icon,
[data-theme="light"] .contact-card__icon {
    background: rgba(184, 134, 11, 0.12);
    color: var(--gold);
    border: none;
}

[data-theme="light"] .stat-card__num {
    color: #1d1d1f;
}

[data-theme="light"] .project-card__category {
    background: rgba(255, 255, 255, 0.92);
    color: var(--gold);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .map-frame {
    background: #e8e8ed;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .map-frame__iframe {
    filter: none;
}

[data-theme="light"] .map-frame__shade {
    opacity: 0;
    background: none;
}

[data-theme="light"] .navbar__toggle span {
    background: #1d1d1f;
}

[data-theme="light"] .footer {
    border-top: 1px solid var(--hairline);
    background: transparent;
}

[data-theme="light"] .footer a:hover {
    color: var(--gold);
}

[data-theme="light"] .form-control {
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    color: #1d1d1f;
}

[data-theme="light"] .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.16);
}

[data-theme="light"] .form-control::placeholder {
    color: var(--text-muted);
}

[data-theme="light"] .form-group label {
    color: #1d1d1f;
}

[data-theme="light"] .map-actions__btn {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1d1d1f;
}

[data-theme="light"] .stars {
    color: var(--gold);
}
