/* ==========================================
   LNA Web - Ultra Light & Airy Landing Page
   ========================================== */

:root {
    --primary: #6C83CC;
    --primary-soft: #8B9FE0;
    --primary-lighter: #EEF1FB;
    --primary-bg: #F5F7FD;
    --accent: #7DD3D8;
    --accent-soft: #A8E4E8;
    --accent-bg: #EBF9FA;
    --heading: #3D4A6B;
    --text: #6B7A99;
    --text-light: #8E9BB8;
    --text-lighter: #B0BAD0;
    --border: #E8ECF4;
    --border-light: #F0F3F9;
    --bg: #ffffff;
    --bg-soft: #FAFBFE;
    --bg-alt: #F4F6FB;
    --gradient: linear-gradient(135deg, #6C83CC 0%, #7DD3D8 100%);
    --gradient-soft: linear-gradient(135deg, #EEF1FB 0%, #EBF9FA 100%);
    --gradient-warm: linear-gradient(135deg, #F8F0FF 0%, #EEF1FB 50%, #EBF9FA 100%);
    --purple-soft: #E8DFFF;
    --pink-soft: #FFE0F0;
    --orange-soft: #FFE8D6;
    --green-soft: #D4F5E0;
    --shadow-xs: 0 1px 3px rgba(108,131,204,0.04);
    --shadow-sm: 0 2px 10px rgba(108,131,204,0.06);
    --shadow-md: 0 4px 24px rgba(108,131,204,0.08);
    --shadow-lg: 0 12px 40px rgba(108,131,204,0.1);
    --shadow-xl: 0 20px 50px rgba(108,131,204,0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary-soft);
    color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-soft);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-logo {
    width: 72px;
    animation: pulse 1.5s ease infinite;
}

.preloader-spinner {
    width: 110px;
    height: 110px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-soft);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: 0.3s var(--ease);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 12px rgba(108,131,204,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 36px; }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--primary); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.84rem;
    box-shadow: 0 4px 18px rgba(108,131,204,0.25);
    transition: 0.3s var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(108,131,204,0.3);
}

.nav-cta i { font-size: 0.72rem; transition: 0.3s; }
.nav-cta:hover i { transform: translateX(4px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: 0.3s var(--ease);
}

/* ==========================================
   CURSOR GLOW
   ========================================== */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108,131,204,0.07) 0%, rgba(125,211,216,0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ==========================================
   PARTICLE CANVAS
   ========================================== */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--gradient-warm);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(125,211,216,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(125,211,216,0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-highlight {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 14px;
    background: var(--accent-bg);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-2deg);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.85;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 18px rgba(108,131,204,0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108,131,204,0.35);
}

.btn-outline {
    background: #fff;
    color: var(--heading);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary-soft);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}

.btn-lg { padding: 15px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* Hero Clients */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatars {
    display: flex;
}

.client-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(108,131,204,0.1);
}

.client-avatars img:first-child { margin-left: 0; }

.client-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.client-stars i { color: #FBBF24; font-size: 0.7rem; }

.client-text {
    font-size: 0.78rem;
    color: var(--text-light);
}

.client-text strong { color: var(--heading); }

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

.hero-image-stack { position: relative; }

.hero-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255,255,255,0.7);
}

.hero-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 3;
    border: 4px solid #fff;
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float-1 {
    width: 190px;
    height: 130px;
    bottom: -16px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.hero-img-float-2 {
    width: 130px;
    height: 130px;
    top: 40px;
    right: -24px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Hero Stat Cards */
.hero-stat-card {
    position: absolute;
    z-index: 4;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-light);
    animation: float 5s ease-in-out infinite;
}

.hero-stat-1 {
    top: -8px;
    left: -24px;
}

.hero-stat-2 {
    bottom: 56px;
    right: -16px;
    animation-delay: 1.5s;
}

.stat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.stat-card-icon.green {
    background: var(--green-soft);
    color: #34D399;
}

.hero-stat-card strong {
    display: block;
    font-size: 1rem;
    color: var(--heading);
}

.hero-stat-card span {
    font-size: 0.72rem;
    color: var(--text-lighter);
}

/* Hero BG Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108,131,204,0.08) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: morphShape 15s ease-in-out infinite;
}

.bg-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(125,211,216,0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: morphShape 12s ease-in-out infinite reverse;
}

.bg-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232,223,255,0.5) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: morphShape 10s ease-in-out infinite;
}

@keyframes morphShape {
    0%,100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
    33% { border-radius: 40% 60% 50% 50%; transform: scale(1.05) rotate(5deg); }
    66% { border-radius: 50% 40% 60% 50%; transform: scale(0.95) rotate(-5deg); }
}

/* ==========================================
   BRANDS MARQUEE
   ========================================== */
.brands-section {
    padding: 28px 0 14px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
}

.brands-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.marquee {
    overflow: hidden;
    padding: 6px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-lighter);
    white-space: nowrap;
}

.marquee-item i { font-size: 1.2rem; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   STATS STRIP
   ========================================== */
.stats-strip {
    padding: 56px 0;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-block { position: relative; }

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background: var(--border-light);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-soft);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
.section {
    padding: 96px 0;
}

.section-light {
    background: var(--bg-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 5px 16px;
    background: var(--primary-lighter);
    border-radius: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.25;
    margin-bottom: 12px;
}

.text-left { text-align: left; }

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.02rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    text-align: justify;
}

/* ==========================================
   SERVICES
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-img {
    position: relative;
    height: 195px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s var(--ease);
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61,74,107,0.4) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.35);
}

.service-body {
    padding: 22px 24px 24px;
}

.service-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.service-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.7;
    text-align: justify;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.service-tags span {
    padding: 3px 11px;
    background: var(--bg-alt);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
}

.service-link i {
    font-size: 0.68rem;
    transition: 0.3s;
}

.service-link:hover i { transform: translateX(5px); }

/* ==========================================
   ABOUT
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid rgba(255,255,255,0.8);
}

.about-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 210px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid #fff;
}

.about-img-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 28px;
    right: -16px;
    background: var(--gradient);
    color: #fff;
    padding: 18px 26px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 28px rgba(108,131,204,0.3);
    animation: float 4s ease-in-out infinite;
}

.exp-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
}

.exp-label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.9;
}

.about-text {
    font-size: 0.98rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.85;
    text-align: justify;
}

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

.feature {
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: #fff;
    transition: 0.3s var(--ease);
}

.feature:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.feature:nth-child(1) .feature-icon { background: var(--primary-lighter); color: var(--primary); }
.feature:nth-child(2) .feature-icon { background: var(--accent-bg); color: var(--accent); }
.feature:nth-child(3) .feature-icon { background: var(--orange-soft); color: #F59E0B; }
.feature:nth-child(4) .feature-icon { background: var(--purple-soft); color: #A78BFA; }

.feature h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: justify;
}

/* ==========================================
   PROCESS
   ========================================== */
.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    justify-content: center;
}

.process-card {
    text-align: center;
    padding: 30px 22px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    background: #fff;
    flex: 1;
    transition: 0.3s var(--ease);
}

.process-card:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.process-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 14px;
    transition: 0.3s;
}

.process-card:hover .process-num { color: var(--primary-soft); }

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 14px;
    transition: 0.3s var(--ease);
}

.process-card:hover .process-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.process-card p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 75px;
    color: var(--border);
    font-size: 1rem;
}

/* ==========================================
   PROJECTS
   ========================================== */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.project-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}

.project-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: 0.4s var(--ease);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.project-img {
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: 0.6s var(--ease);
}

.project-card:hover .project-img img {
    transform: scale(1.04);
}

.project-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-cat {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    background: var(--primary-lighter);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 18px;
    text-align: justify;
}

.project-results {
    display: flex;
    gap: 24px;
}

.project-results div strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary);
}

.project-results div span {
    font-size: 0.72rem;
    color: var(--text-lighter);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: 0.3s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: #FBBF24;
    font-size: 0.82rem;
}

.testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-lighter);
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
    text-align: justify;
}

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

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

/* ==========================================
   CTA
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-warm);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 14px;
    line-height: 1.25;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 26px;
    text-align: justify;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid rgba(255,255,255,0.8);
}

.cta-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 26px;
    text-align: justify;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--bg-soft);
    transition: 0.3s var(--ease);
}

.contact-card:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.cc-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: var(--radius-sm);
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.contact-card strong {
    display: block;
    font-size: 0.82rem;
    color: var(--heading);
}

.contact-card span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: 0.3s var(--ease);
}

.social-link:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-success-msg {
    background: #D1FAE5;
    color: #065F46;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-error-msg {
    background: #FEE2E2;
    color: #991B1B;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--heading);
    background: var(--bg-soft);
    outline: none;
    transition: 0.3s var(--ease);
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-soft);
    box-shadow: 0 0 0 4px rgba(108,131,204,0.06);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238E9BB8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ==========================================
   FOOTER - LIGHT
   ========================================== */
.footer {
    background: var(--bg-soft);
    padding: 64px 0 0;
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    height: 34px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.7;
    text-align: justify;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 4px 0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-col p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: var(--heading);
    font-family: inherit;
    font-size: 0.82rem;
    outline: none;
}

.newsletter-form input::placeholder { color: var(--text-lighter); }

.newsletter-form button {
    padding: 10px 16px;
    background: var(--gradient);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0 50px 50px 0;
}

.newsletter-form button:hover { opacity: 0.85; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ==========================================
   SECTION FOOTER (Tümünü Gör buttons)
   ========================================== */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   PAGE HERO (Alt sayfa bannerları)
   ========================================== */
.page-hero {
    padding: 140px 0 60px;
    background: var(--gradient-warm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-lighter);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb i { font-size: 0.6rem; }

/* ==========================================
   SERVICE DETAIL (Hizmetler sayfası)
   ========================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child { border-bottom: none; }

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 12px;
}

.service-detail-content p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.85;
    text-align: justify;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}

.check-list li i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ==========================================
   TEAM (Hakkımızda sayfası)
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    background: #fff;
    transition: 0.3s var(--ease);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--primary-lighter);
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.team-card .team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: 0.3s;
}

.team-card .team-social a:hover {
    background: var(--gradient);
    color: #fff;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--border-light);
    transition: 0.3s var(--ease);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.value-card .value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.value-card:nth-child(1) .value-icon { background: var(--primary-lighter); color: var(--primary); }
.value-card:nth-child(2) .value-icon { background: var(--accent-bg); color: var(--accent); }
.value-card:nth-child(3) .value-icon { background: var(--orange-soft); color: #F59E0B; }
.value-card:nth-child(4) .value-icon { background: var(--purple-soft); color: #A78BFA; }

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    text-align: justify;
}

/* Tech Stack */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    transition: 0.3s var(--ease);
}

.tech-badge i { font-size: 1.1rem; color: var(--primary-soft); }

.tech-badge:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* ==========================================
   FILTER BAR (Projeler sayfası)
   ========================================== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

/* Project grid for sub-page */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projects-page-grid .project-card {
    grid-column: auto;
}

.projects-page-grid .project-card .project-img img {
    height: 220px;
}

/* ==========================================
   PRICING (Fiyatlandırma sayfası)
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    background: #fff;
    transition: 0.3s var(--ease);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-lighter);
}

.pricing-card .price-desc {
    font-size: 0.82rem;
    color: var(--text-lighter);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

.pricing-features li i {
    font-size: 0.75rem;
}

.pricing-features li i.fa-check { color: var(--accent); }
.pricing-features li i.fa-times { color: var(--text-lighter); }

.pricing-features li.disabled {
    color: var(--text-lighter);
    text-decoration: line-through;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-soft);
    font-weight: 700;
    color: var(--heading);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text);
}

.comparison-table .check { color: var(--accent); }
.comparison-table .cross { color: var(--text-lighter); }

/* ==========================================
   ACCORDION (SSS sayfası)
   ========================================== */
.accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    transition: 0.3s var(--ease);
}

.accordion-item:hover {
    border-color: var(--primary-lighter);
}

.accordion-item.active {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: 0.3s;
}

.accordion-header i {
    font-size: 0.8rem;
    color: var(--text-lighter);
    transition: 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.accordion-body-inner {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.8;
    text-align: justify;
}

/* ==========================================
   BLOG (Blog sayfası)
   ========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #fff;
    transition: 0.3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s var(--ease);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.72rem;
    color: var(--text-lighter);
}

.blog-meta .blog-cat {
    padding: 2px 10px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
}

.blog-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more i { font-size: 0.68rem; transition: 0.3s; }
.blog-read-more:hover i { transform: translateX(4px); }

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    box-shadow: var(--shadow-sm);
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heading);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-lighter);
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-content h3::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--gradient);
    border-radius: 4px;
    flex-shrink: 0;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
    hyphens: auto;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--primary-lighter);
    text-underline-offset: 3px;
    transition: 0.2s;
}

.legal-content a:hover {
    text-decoration-color: var(--primary);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.legal-list li {
    font-size: 0.93rem;
    color: var(--text);
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.75;
    border-bottom: 1px solid var(--border-light);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
}

.legal-updated {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--primary-soft);
    font-weight: 500;
    background: var(--primary-lighter);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 28px 24px;
    }
}

/* ==========================================
   MAP
   ========================================== */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-top: 48px;
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: none;
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual { max-width: 480px; margin: 0 auto; }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-images { max-width: 460px; }

    .process-connector { display: none; }
    .process-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .projects-grid { grid-template-columns: 1fr; }
    .project-wide { grid-template-columns: 1fr 1fr; }

    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; }

    .cta-grid { grid-template-columns: 1fr; }
    .cta-image { max-width: 480px; }

    .footer-top { grid-template-columns: 1fr 1fr; }

    .service-detail { grid-template-columns: 1fr; gap: 32px; }
    .service-detail:nth-child(even) { direction: ltr; }

    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 28px 28px;
        gap: 18px;
        transition: 0.4s var(--ease);
        z-index: 998;
        box-shadow: var(--shadow-xl);
    }
    .nav-links.open { right: 0; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; z-index: 999; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 120px 0 56px; }
    .cursor-glow { display: none; }
    .hero-img-float-1 { width: 140px; height: 95px; left: -16px; bottom: -10px; }
    .hero-img-float-2 { width: 95px; height: 95px; right: -12px; }
    .hero-stat-card { display: none; }

    .services-grid,
    .testimonials-grid,
    .process-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: auto; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-block::after { display: none; }

    .project-wide { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .section { padding: 64px 0; }

    .team-grid,
    .values-grid,
    .pricing-grid,
    .projects-page-grid,
    .blog-grid { grid-template-columns: 1fr; }

    .comparison-table { font-size: 0.75rem; }
    .comparison-table th,
    .comparison-table td { padding: 10px 12px; }
}

/* ==========================================
   BLOG DETAIL PAGE
   ========================================== */
.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: var(--primary-soft);
    font-size: 0.85rem;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-detail-content {
    min-width: 0;
}

.blog-detail-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.blog-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--heading);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.blog-detail-content h2:first-of-type {
    margin-top: 0;
}

.blog-detail-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text);
    font-size: 1.02rem;
}

.blog-detail-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--primary-lighter);
    text-underline-offset: 3px;
    transition: 0.2s;
}

.blog-detail-content a:hover {
    text-decoration-color: var(--primary);
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 16px 0 24px 24px;
    color: var(--text);
    line-height: 2;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

/* Sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-lighter);
}

.sidebar-post {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    transition: 0.2s;
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post:first-of-type {
    padding-top: 0;
}

.sidebar-post img {
    width: 76px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    transition: 0.3s;
}

.sidebar-post:hover img {
    transform: scale(1.05);
}

.sidebar-post div {
    min-width: 0;
}

.sidebar-post strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.4;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar-post span {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.sidebar-post:hover strong {
    color: var(--primary);
}

.sidebar-cta {
    background: var(--gradient-soft);
    text-align: center;
    border: none;
}

.sidebar-cta h4 {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 16px;
}

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

@media (max-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-detail-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero-img {
        height: 260px;
    }
    .blog-detail-content h2 {
        font-size: 1.3rem;
    }
    .blog-detail-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blog-detail-meta {
        flex-direction: column;
        gap: 8px;
    }
    .blog-detail-hero-img {
        height: 200px;
        border-radius: var(--radius-lg);
    }
}

/* ==========================================
   REFERANSLAR PAGE
   ========================================== */
.ref-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.ref-logo-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    transition: 0.3s var(--ease);
}

.ref-logo-item:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.ref-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: 0.3s var(--ease);
}

.ref-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.ref-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ref-project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: 0.3s var(--ease);
}

.ref-project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.ref-project-img {
    overflow: hidden;
}

.ref-project-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.4s var(--ease);
}

.ref-project-card:hover .ref-project-img img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .ref-logos-grid { grid-template-columns: repeat(4, 1fr); }
    .ref-projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ref-logos-grid { grid-template-columns: repeat(3, 1fr); }
    .ref-projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ref-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 2rem; }
    .hero-img-main img { height: 320px; }
}
