﻿/* ===========================
   AYD PROJE Ä°NÅAAT â€“ STYLE.CSS (BEYAZ TEMA)
   =========================== */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* === LOTUS MAHALL MARKA RENKLERÄ° === */
    --primary: #03565C;
    /* Petrol teal â€“ logo ana renk  */
    --primary-dk: #022F33;
    /* Koyu petrol                  */
    --primary-lt: #0A7A83;
    /* AÃ§Ä±k petrol                  */
    --gold: #D7C679;
    /* AltÄ±n sarÄ±sÄ± â€“ logo vurgu    */
    --gold-dk: #B8A650;
    /* Koyu altÄ±n                   */
    --gold-lt: #EDE5A0;
    /* AÃ§Ä±k altÄ±n / krem            */
    --accent: #021E21;
    /* Ã‡ok koyu petrol â€“ baÅŸlÄ±klar  */

    /* Arka planlar */
    --bg: #FFFFFF;
    --bg2: #F2F8F8;
    /* Hafif teal tonu              */
    --bg3: #E5F2F2;
    /* Biraz daha doygun            */
    --card: #FFFFFF;

    /* Metin renkleri */
    --text: #021E21;
    /* Koyu petrol metin            */
    --text-mid: #2D5C5F;
    /* Orta ton                     */
    --text-muted: #6B9497;
    /* Soluk teal-gri               */

    --border: rgba(3, 86, 92, 0.12);
    --border-md: rgba(3, 86, 92, 0.22);
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 12px rgba(2, 30, 33, 0.08);
    --shadow: 0 8px 32px rgba(2, 30, 33, 0.12);
    --shadow-lg: 0 20px 60px rgba(2, 30, 33, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(3, 86, 92, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-lt), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(3, 86, 92, 0.4);
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.btn-primary.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 13px 28px;
    font-size: 0.9rem;
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 36px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}

/* ---- SECTION HEADERS ---- */
.section-tag {
    display: inline-block;
    background: rgba(3, 86, 92, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(3, 86, 92, 0.25);
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(2, 30, 33, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(2, 30, 33, 0.15));
}

.logo-img:hover {
    transform: scale(1.04);
}

/* Logo text fallback */
.logo-text-fallback {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.logo-text-fallback span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-mid);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(3, 86, 92, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-cta {
    margin-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--accent);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 6s ease;
}

.hero-slide.active img {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(2, 30, 33, 0.88) 0%,
            rgba(2, 30, 33, 0.65) 55%,
            rgba(3, 86, 92, 0.25) 100%);
}

/* Ok butonlarÄ± */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 32px;
}

.slider-next {
    right: 32px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #fff);
    width: 0%;
    transition: width linear;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s 0.1s ease both;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #D7C679);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeInDown 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInDown 0.8s 0.3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInDown 0.8s 0.4s ease both;
}

.stat {
    text-align: left;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ---- SERVICES ---- */
.services-section {
    padding: 100px 0;
    background: var(--bg2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 86, 92, 0.04), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--border-md);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(3, 86, 92, 0.06), rgba(26, 79, 138, 0.03));
    border-color: rgba(3, 86, 92, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(3, 86, 92, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ---- ABOUT BANNER ---- */
.about-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-banner-img {
    position: absolute;
    inset: 0;
}

.about-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 30, 33, 0.94) 0%,
            rgba(2, 30, 33, 0.75) 55%,
            rgba(3, 86, 92, 0.2) 100%);
}

.about-banner-content {
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 560px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-size: 1rem;
}

.about-list {
    margin-bottom: 36px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.check {
    color: #7EC8F0;
    font-weight: 700;
    font-size: 1rem;
}

/* ---- PROJECTS ---- */
.projects-section {
    padding: 100px 0;
    background: var(--bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.project-card.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    transition: transform 0.6s ease;
}

.project-card.large img {
    min-height: 460px;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(2, 30, 33, 0.95) 0%, transparent 100%);
    transform: translateY(8px);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

.project-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.project-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.projects-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---- WHY SECTION ---- */
.why-section {
    padding: 100px 0;
    background: var(--bg2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    border-color: var(--border-md);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(3, 86, 92, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- CTA SECTION ---- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 30, 33, 0.92), rgba(3, 86, 92, 0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--accent);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;

}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.contact-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.contact-list li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold-dk);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- PAGE HERO ---- */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(2, 30, 33, 0.96) 0%,
            rgba(2, 30, 33, 0.55) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: #7EC8F0;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}

.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
}

/* ---- ABOUT PAGE ---- */
.story-section {
    padding: 100px 0;
    background: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-images {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.story-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--bg);
}

.story-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.story-badge-box {
    position: absolute;
    bottom: -48px;
    left: -48px;
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(3, 86, 92, 0.4);
}

.big-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.story-badge-box span:last-child {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.story-text h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.story-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.value-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---- STATS SECTION ---- */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dk), var(--accent));
    border-top: none;
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-big {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-big {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ---- TEAM ---- */
.team-section {
    padding: 100px 0;
    background: var(--bg2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    border-color: var(--border-md);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.team-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- CERTS ---- */
.certs-section {
    padding: 80px 0;
    background: var(--bg);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cert-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.cert-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.cert-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---- SERVICES DETAIL ---- */
.services-detail-section {
    padding: 100px 0;
    background: var(--bg);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse>* {
    direction: ltr;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-img:hover img {
    transform: scale(1.04);
}

.service-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(3, 86, 92, 0.12);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 12px;
}

.service-detail-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-detail-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-mid);
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.service-features li::before {
    content: '\2192';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- PROCESS ---- */
.process-section {
    padding: 100px 0;
    background: var(--bg2);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.process-step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(3, 86, 92, 0.35);
}

.process-step-line {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(3, 86, 92, 0.2));
}

.process-step-line.last {
    display: none;
}

.process-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- PROJECTS PAGE ---- */
.projects-page-section {
    padding: 80px 0 100px;
    background: var(--bg);
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(3, 86, 92, 0.3);
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proj-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.proj-item:hover {
    border-color: var(--border-md);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.proj-item.hidden {
    display: none;
}

.proj-img {
    position: relative;
    overflow: hidden;
}

.proj-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.proj-item:hover .proj-img img {
    transform: scale(1.06);
}

.proj-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 30, 33, 0.88);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.proj-item:hover .proj-overlay {
    opacity: 1;
}

.proj-cat-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.proj-overlay h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.proj-overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.proj-meta {
    padding: 16px 20px;
}

.proj-meta h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.proj-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.proj-tags span {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg2);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* ---- CONTACT PAGE ---- */
.contact-section {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: flex-start;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    padding: 13px 16px;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(3, 86, 92, 0.12);
}

.form-group select option {
    background: #fff;
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-success.show {
    display: block;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 80px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary);
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(3, 86, 92, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-social {
    margin-top: 8px;
}

.contact-social h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.social-links.large {
    flex-direction: column;
    gap: 10px;
}

.social-links.large .social-link {
    width: auto;
    height: auto;
    padding: 10px 16px;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    justify-content: flex-start;
    background: var(--bg2);
    border-color: var(--border);
    color: var(--text-mid);
}

.social-links.large .social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---- MAP ---- */
.map-section {
    background: var(--bg2);
}

.map-container iframe {
    display: block;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .process-step-line {
        display: none;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-img-secondary {
        display: none;
    }

    .story-badge-box {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-card.large {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links.open .nav-link {
        color: var(--text-mid);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero stats: yatay, kompakt */
    .hero-stats {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        flex-wrap: wrap;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
        background: rgba(255, 255, 255, 0.25);
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Slider oklarÄ±: kÃ¼Ã§Ã¼k ve altta */
    .slider-btn {
        width: 36px;
        height: 36px;
        top: auto;
        bottom: 110px;
        transform: none;
    }

    .slider-btn:hover {
        transform: scale(1.08);
    }

    .slider-prev {
        left: 16px;
    }

    .slider-next {
        right: 16px;
    }

    /* Hero iÃ§erik padding */
    .hero-content {
        padding: 0 16px;
        padding-top: 90px;
    }

    /* Hero desc kÄ±sa tut */
    .hero-desc br {
        display: none;
    }

    /* Logo */
    .logo-img {
        height: 92px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card.large {
        grid-column: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .certs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-wrap {
        padding-top: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .projects-masonry {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .certs-grid {
        grid-template-columns: 1fr;
    }

    .projects-masonry {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Butonlar yan yana, tam geniÅŸlik deÄŸil */
    .hero-actions {
        flex-direction: row;
        gap: 10px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        flex: 1;
        justify-content: center;
        padding: 11px 16px;
        font-size: 0.82rem;
    }

    /* Hero title kÃ¼Ã§Ã¼lt */
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-desc {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    /* Dots biraz yukarÄ± */
    .slider-dots {
        bottom: 60px;
    }
}

/* ---- STORY SECTION ---- */
.story-section {
    padding: 100px 0;
    background: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Sol: iki iÃ§ iÃ§e gÃ¶rsel */
.story-images {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-img-main:hover img {
    transform: scale(1.04);
}

.story-img-secondary {
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: visible;
    /* rozet taÅŸabilsin */
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.story-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
    display: block;
}

/* Rozet: story-images iÃ§inde, bÃ¼yÃ¼k resmin sol-alt kÃ¶ÅŸesinde */
.story-badge-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(3, 86, 92, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    z-index: 10;
}

.big-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.story-badge-box span:last-child {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.9;
}

/* SaÄŸ: metin */
.story-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* STATS */
.stats-section {
    padding: 60px 0;
    background: var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-box {
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-box:last-child {
    border-right: none;
}

.stat-big {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label-big {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .story-img-secondary {
        width: 160px;
        right: -16px;
        bottom: -24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box:nth-child(1),
    .stat-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}

/* ---- LOCATION SECTION ---- */
.location-section {
    padding: 100px 0;
    background: var(--bg2);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.location-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-md);
}

.location-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.location-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1.3;
}

.location-lead {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.loc-bullet {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-list li strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.location-list li p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* AlÄ±ntÄ± kutusu */
.location-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(215, 198, 121, 0.10), rgba(215, 198, 121, 0.03));
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}

.location-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(3, 86, 92, 0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-quote blockquote {
        padding: 28px 24px;
        font-size: 1rem;
    }
}