/* ==========================================================================
   Cem Açıkgöz SMMM — Fotoğraf merkezli kurumsal mavi
   ========================================================================== */

:root {
    --navy: #0d2c4a;
    --navy-deep: #0a2540;
    --blue: #155e9c;
    --blue-bright: #1976d2;
    --blue-tint: #eaf2fb;
    --blue-soft: #f5f9fd;

    --text: #1a2332;
    --text-soft: #4d5d6e;
    --text-muted: #7e8a98;

    --bg: #ffffff;
    --bg-tint: #f5f7fa;
    --border: #e3e8ee;
    --border-soft: #eef2f6;

    --shadow-sm: 0 1px 3px rgba(13, 44, 74, 0.08);
    --shadow: 0 6px 24px rgba(13, 44, 74, 0.10);
    --shadow-lg: 0 16px 48px rgba(13, 44, 74, 0.16);

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1240px;
}

/* Reset =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: 'Merriweather', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 90px 0; }

/* Top bar (NEW - SDC'de yok) ============================================== */
.top-bar {
    background: var(--navy-deep);
    color: #c8d6e5;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 3px solid var(--blue);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-bar-item { display: inline-flex; align-items: center; gap: 8px; color: #c8d6e5; }
.top-bar-item a { color: #c8d6e5; }
.top-bar-item a:hover { color: #fff; }
.top-bar-item svg { width: 14px; height: 14px; color: #6cb4ff; flex-shrink: 0; }
.top-bar-item .lbl { color: #98aac0; font-size: 0.78rem; }

/* Header ================================================================== */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo (text-only, daha sade) */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--navy-deep);
    line-height: 1.1;
}
.logo-mark {
    width: 50px;
    height: 50px;
    border: 2px solid var(--blue);
    color: var(--navy-deep);
    background: #fff;
    display: grid;
    place-items: center;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.05em;
    transition: all var(--transition);
}
.logo:hover .logo-mark {
    background: var(--blue);
    color: #fff;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-text .name {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-deep);
}
.logo-text .role {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav a {
    display: block;
    padding: 12px 18px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px;
    bottom: 6px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--navy-deep); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    border: 1px solid var(--border);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Buttons ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.3;
}
.btn-primary {
    background: var(--blue);
    color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
    background: transparent;
    color: var(--navy-deep);
    border: 2px solid var(--navy-deep);
    padding: 11px 26px;
}
.btn-outline:hover { background: var(--navy-deep); color: #fff; }
.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-deep);
}
.btn-light:hover { background: #fff; color: var(--blue); }
.btn-wp {
    background: #25d366;
    color: #fff;
}
.btn-wp:hover { background: #128c7e; color: #fff; }

/* Section heading ========================================================= */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.section-head .eyebrow {
    display: inline-block;
    padding: 0 0 4px;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* Hero (PHOTO LED, no card on right) ====================================== */
.hero {
    position: relative;
    min-height: 620px;
    background-color: var(--navy-deep);
    background-image:
        linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(13, 44, 74, 0.85) 50%, rgba(21, 94, 156, 0.78) 100%),
        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.05));
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 760px;
    z-index: 2;
}
.hero-content .pre-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #6cb4ff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero-content .pre-title::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #6cb4ff;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.hero-content h1 .accent { color: #6cb4ff; font-style: italic; font-weight: 700; }

.hero-content p.lead {
    font-size: 1.15rem;
    color: #d6e4f5;
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-trust {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #98aac0;
    font-size: 0.88rem;
    flex-wrap: wrap;
}
.hero-trust .item { display: flex; align-items: center; gap: 8px; }
.hero-trust .item svg { width: 18px; height: 18px; color: #6cb4ff; }
.hero-trust .sep { color: rgba(255,255,255,0.2); }

/* Welcome / Intro band (NEW SECTION) ====================================== */
.intro-band {
    background: var(--bg-tint);
    border-bottom: 1px solid var(--border);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.intro-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 44, 74, 0.3));
}
.intro-photo .badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: rgba(255, 255, 255, 0.96);
    padding: 18px 22px;
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(6px);
}
.intro-photo .badge .nm { font-family: 'Merriweather', serif; font-weight: 700; color: var(--navy-deep); font-size: 1.05rem; }
.intro-photo .badge .ti { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

.intro-text .eyebrow {
    display: inline-block;
    padding: 0 0 4px;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { margin-bottom: 18px; line-height: 1.8; }
.intro-text .features {
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}
.intro-text .features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}
.intro-text .features li svg {
    width: 20px; height: 20px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Services - photo cards (semaduray-tarzı) ================================ */
.services-section { background: #fff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}
.service-card .photo {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: var(--bg-tint);
}
.service-card .photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}
.service-card:hover .photo img { transform: scale(1.05); }
.service-card .photo::after {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    width: 44px; height: 44px;
    background: var(--blue);
    border-radius: var(--radius-sm);
    background-image: var(--svc-icon);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
.service-card .body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}
.service-card .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.88rem;
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
    margin-top: auto;
}
.service-card .more svg {
    width: 16px; height: 16px;
    transition: transform var(--transition);
}
.service-card:hover .more { color: var(--navy-deep); }
.service-card:hover .more svg { transform: translateX(5px); }

/* About preview (split with REAL photo) =================================== */
.about-preview {
    background: var(--bg-tint);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-grid .text .eyebrow {
    display: inline-block;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    padding-bottom: 4px;
}
.about-grid h2 { margin-bottom: 20px; }
.about-grid p { margin-bottom: 18px; line-height: 1.8; }

.about-grid .quote {
    background: #fff;
    border-left: 4px solid var(--blue);
    padding: 20px 24px;
    margin: 26px 0;
    font-family: 'Merriweather', serif;
    font-style: italic;
    color: var(--navy-deep);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-grid .signature {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.about-grid .signature .name { font-family: 'Merriweather', serif; font-weight: 700; color: var(--navy-deep); font-size: 1.1rem; }
.about-grid .signature .title { color: var(--text-muted); font-size: 0.9rem; }

.about-photo-wrap {
    position: relative;
}
.about-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-box {
    position: absolute;
    bottom: -28px;
    left: -28px;
    right: 80px;
    background: var(--navy-deep);
    color: #fff;
    padding: 26px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-stat-box .stat .num { font-family: 'Merriweather', serif; color: #6cb4ff; font-size: 2rem; line-height: 1; font-weight: 700; }
.about-stat-box .stat .lbl { color: #c8d6e5; font-size: 0.85rem; margin-top: 4px; }

/* FAQ (NEW - replaces "Why Us") =========================================== */
.faq-section { background: #fff; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.faq-side .eyebrow {
    display: inline-block;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    padding-bottom: 4px;
}
.faq-side h2 { margin-bottom: 18px; }
.faq-side p { margin-bottom: 24px; line-height: 1.8; }
.faq-side .help-card {
    background: var(--blue-tint);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--blue-tint);
}
.faq-side .help-card h4 { color: var(--navy-deep); font-family: 'Merriweather', serif; font-size: 1.05rem; margin-bottom: 10px; }
.faq-side .help-card p { font-size: 0.92rem; margin-bottom: 16px; }
.faq-side .help-card .actions { display: flex; flex-direction: column; gap: 10px; }
.faq-side .help-card .actions .btn { width: 100%; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.open {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 1.03rem;
    line-height: 1.5;
    transition: all var(--transition);
}
.faq-q:hover { background: var(--blue-soft); }
.faq-q .ic {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition);
}
.faq-q .ic svg { width: 14px; height: 14px; transition: transform var(--transition); }
.faq-item.open .faq-q .ic { background: var(--blue); color: #fff; }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition);
}
.faq-a-inner { padding: 0 22px 22px; color: var(--text-soft); line-height: 1.7; font-size: 0.97rem; }
.faq-item.open .faq-a { max-height: 500px; }

/* CTA band (sade) ========================================================= */
.cta-band {
    background: var(--navy-deep);
    background-image:
        linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(13, 44, 74, 0.92)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: #c8d6e5; font-size: 1.05rem; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Footer (kompakt, 4 kolon) =============================================== */
.site-footer {
    background: var(--navy-deep);
    color: #c8d6e5;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 44px;
    margin-bottom: 48px;
}
.site-footer h4 {
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.site-footer .logo .logo-mark { background: transparent; border-color: #6cb4ff; color: #fff; }
.site-footer .logo .logo-text .name { color: #fff; }
.site-footer .logo .logo-text .role { color: #98aac0; }
.footer-about p {
    margin-top: 18px;
    color: #98aac0;
    font-size: 0.92rem;
    line-height: 1.7;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #c8d6e5;
    font-size: 0.93rem;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: #6cb4ff; }
.footer-links a::before { content: '›'; color: #6cb4ff; font-size: 1.1rem; line-height: 1; }

.footer-contact .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.93rem;
    color: #c8d6e5;
}
.footer-contact .item svg { width: 18px; height: 18px; color: #6cb4ff; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #c8d6e5; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #98aac0;
}

/* Page hero (interior pages, daha sade) =================================== */
.page-hero {
    background-color: var(--navy-deep);
    background-image:
        linear-gradient(135deg, rgba(10, 37, 64, 0.92), rgba(21, 94, 156, 0.85)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 70px 0 64px;
    border-bottom: 4px solid var(--blue);
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #98aac0;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.breadcrumbs a { color: #c8d6e5; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs svg { width: 14px; height: 14px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: #c8d6e5; font-size: 1.05rem; max-width: 720px; }

/* Hakkımızda detail ======================================================= */
.about-detail .lead-text {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: var(--navy-deep);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}
.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
}
.about-detail-grid p { margin-bottom: 18px; line-height: 1.8; }

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
    margin-top: 24px;
}
.value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.value-item .num {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    color: var(--blue);
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    padding-top: 4px;
    border-right: 2px solid var(--blue-tint);
    padding-right: 16px;
}
.value-item h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Merriweather', serif; }
.value-item p { font-size: 0.95rem; line-height: 1.65; }

.vm-band {
    background: var(--bg-tint);
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.vm-card {
    background: #fff;
    padding: 40px 36px;
    border-radius: var(--radius);
    border-top: 4px solid var(--blue);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.vm-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.vm-card .label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.vm-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-family: 'Merriweather', serif;
}
.vm-card p { font-size: 0.97rem; line-height: 1.75; }

/* Hizmetler detail (alternating rows) ===================================== */
.services-detail-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.service-row:nth-child(even) .service-row-photo { order: 2; }
.service-row-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.service-row-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.service-row:hover .service-row-photo img { transform: scale(1.04); }
.service-row-photo .num-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px; height: 48px;
    background: var(--blue);
    color: #fff;
    display: grid; place-items: center;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.service-row-text .label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.service-row-text h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    font-family: 'Merriweather', serif;
}
.service-row-text > p {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 22px;
}
.service-row-text ul {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.service-row-text ul li {
    padding: 8px 0 8px 24px;
    color: var(--text-soft);
    position: relative;
    font-size: 0.95rem;
}
.service-row-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* İletişim ================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: stretch;
}
.contact-info-card {
    background: var(--navy-deep);
    color: #fff;
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue);
}
.contact-info-card h3 { color: #fff; font-family: 'Merriweather', serif; font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card .sub { color: #c8d6e5; font-size: 0.95rem; margin-bottom: 30px; }
.contact-line {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .ic {
    width: 42px; height: 42px;
    background: var(--blue);
    display: grid; place-items: center;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}
.contact-line .ic svg { width: 18px; height: 18px; color: #fff; }
.contact-line .lbl { color: #98aac0; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-line .val { color: #fff; font-weight: 500; font-size: 0.97rem; margin-top: 2px; line-height: 1.5; }
.contact-line a { color: #fff; }
.contact-line a:hover { color: #6cb4ff; }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-height: 480px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 480px; }

/* WhatsApp floating ======================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Mobile menu ============================================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
}
.mobile-menu-head .logo .logo-mark { background: transparent; border-color: #6cb4ff; color: #fff; }
.mobile-menu-head .logo .logo-text .name { color: #fff; }
.mobile-menu-head .logo .logo-text .role { color: #98aac0; }
.mobile-menu-head .close {
    width: 44px; height: 44px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    display: grid; place-items: center;
}
.mobile-menu-head .close svg { width: 22px; height: 22px; }

.mobile-menu nav ul { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.mobile-menu nav a {
    display: block;
    padding: 18px 4px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu nav a.active { color: #6cb4ff; }
.mobile-menu .mobile-info {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-menu .mobile-info-line { color: #c8d6e5; font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.mobile-menu .mobile-info-line svg { width: 16px; height: 16px; color: #6cb4ff; flex-shrink: 0; }
.mobile-menu .mobile-info-line a { color: #c8d6e5; }
.mobile-menu .mobile-actions { display: flex; gap: 10px; margin-top: 8px; }
.mobile-menu .mobile-actions .btn { flex: 1; }

/* Reveal animation ======================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive ============================================================== */
@media (max-width: 1024px) {
    section { padding: 64px 0; }
    .intro-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 56px; }
    .intro-photo, .about-photo { aspect-ratio: 16/12; max-width: 600px; margin: 0 auto; }
    .about-stat-box { left: 20px; right: 20px; bottom: -20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-row { grid-template-columns: 1fr; gap: 32px; }
    .service-row:nth-child(even) .service-row-photo { order: 0; }
    .vm-grid { grid-template-columns: 1fr; }
    .about-detail-grid { grid-template-columns: 1fr; gap: 0; }
    .values-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-nav { display: none; }
    .header-cta .btn { display: none; }
    .menu-toggle { display: flex; }
    .hero { min-height: auto; padding: 64px 0; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .intro-text .features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    section { padding: 48px 0; }
    .btn { padding: 12px 22px; font-size: 0.9rem; }
    .top-bar-inner { font-size: 0.78rem; }
}
