/* ============================================
   www.atilimdijital.com - ATILIM DİJİTAL
   ============================================ */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-darker: #075985;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --text: #0f172a;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-display: 'Sora', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER - ULTRA MODERN
   ============================================ */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
#header.scrolled {
    box-shadow: var(--shadow);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}
.logo-symbol {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-main {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}
.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}
.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -100px;
    width: 600px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-item {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.mega-item:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateX(4px);
}
.mega-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}
.mega-content strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.mega-content span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.btn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}
.btn-header.phone {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}
.btn-header.phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
}
.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text);
}
.mm-container {
    text-align: center;
    max-width: 400px;
    padding: 24px;
}
.mm-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.mm-logo i {
    font-size: 36px;
    color: var(--primary);
}
.mm-links a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.mm-dropdown span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}
.mm-dropdown-content {
    display: none;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
}
.mm-dropdown.open .mm-dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}
.mm-dropdown-content a {
    font-size: 16px;
    border: none;
    padding: 12px 0;
}
.mm-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 32px;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

/* ============================================
   HERO - ULTRA MODERN
   ============================================ */
.hero-ultra {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}
.hero-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -1px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-darker));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    font-family: var(--font-display);
}
.btn-hero.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}
.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.5);
}
.btn-hero.secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-hero.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}
.stat-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-info span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}
.image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.image-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}
.image-badge i {
    font-size: 32px;
    color: var(--accent);
}
.image-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.image-badge span {
    font-size: 14px;
    color: var(--text-light);
}

.floating-elements {
    position: absolute;
}
.float-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    animation: float 4s ease-in-out infinite;
}
.float-card i {
    font-size: 20px;
    color: var(--primary);
}
.fc-1 {
    top: 60px;
    right: -60px;
}
.fc-2 {
    bottom: 120px;
    right: -80px;
    animation-delay: 2s;
}

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

/* ============================================
   SERVICES - PREMIUM
   ============================================ */
.services-premium {
    padding: 100px 0;
    background: white;
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}
.highlight-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-darker));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.service-card-pro {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card-pro:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.service-card-pro:hover::before {
    transform: scaleX(1);
}

.scp-icon-wrap {
    margin-bottom: 24px;
}
.scp-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}
.scp-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}
.scp-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.scp-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}
.scp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}
.scp-link i {
    transition: var(--transition);
}
.service-card-pro:hover .scp-link i {
    transform: translateX(6px);
}

/* ============================================
   PROCESS - ELEGANT
   ============================================ */
.process-elegant {
    padding: 100px 0;
    background: var(--bg-light);
}
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pv-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.pv-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.pv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.pv-badge {
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pv-badge i {
    font-size: 36px;
    color: var(--accent);
}
.pv-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.pv-badge span {
    font-size: 14px;
    color: var(--text-light);
}

.process-lead {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.step-block {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-block:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}
.sb-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.2;
}
.sb-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.sb-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   GALLERY - SPECTACULAR
   ============================================ */
.gallery-spectacular {
    padding: 100px 0;
    background: white;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-card:nth-child(1),
.gallery-card:nth-child(5) {
    grid-column: span 2;
}
.gc-image {
    position: relative;
    width: 100%;
    height: 280px; /* Sabit yükseklik */
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}
.gc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Görsel tamamen sığar, boşluklar kalabilir */
    /* VEYA */
    /* object-fit: cover; */ /* Görsel alanı tamamen kaplar, kesik olabilir */
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card:hover .gc-image img {
    transform: scale(1.1);
}
.gc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-card:hover .gc-overlay {
    opacity: 1;
}
.gc-info h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.gc-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.gc-meta i {
    margin-right: 6px;
}

/* ============================================
   REGIONS - ELEGANT
   ============================================ */
.regions-elegant {
    padding: 100px 0;
    background: var(--bg-light);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.region-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}
.region-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.region-card:hover::before {
    transform: scaleX(1);
}
.rc-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}
.region-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.rc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 16px auto 0;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}
.region-card:hover .rc-arrow {
    transform: translateX(4px);
    background: var(--primary);
    color: white;
}

.regions-cta {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.regions-cta p {
    font-size: 18px;
    color: var(--text);
}
.regions-cta a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

/* ============================================
   INNER PAGE
   ============================================ */
.page-hero-inner {
    padding: 160px 0 60px;
    background: linear-gradient(180deg, var(--bg-light), white);
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.breadcrumb-nav i {
    font-size: 12px;
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}

.inner-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.content-main h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text);
}
.content-main .lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}
.article-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 30px 0;
}
.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0;
}
.tech-list li {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}
.tech-list i {
    color: var(--accent);
    font-size: 18px;
}

.sub-locations-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 60px;
}
.sub-locations-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}
.sub-locations-box h3 i {
    color: var(--primary);
}
.sub-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.sub-loc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.sub-loc-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}
.sub-loc-item i {
    color: var(--primary);
    font-size: 14px;
}
.sub-loc-item:hover i {
    color: white;
}

/* SIDEBAR */
.sidebar-pro {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.widget-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 36px;
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: var(--shadow-lg);
}
.widget-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.widget-head i {
    font-size: 32px;
}
.widget-head h3 {
    font-size: 22px;
    font-weight: 700;
}
.widget-form input,
.widget-form textarea {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    margin-bottom: 16px;
    font-family: var(--font-main);
    font-size: 15px;
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.widget-services {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
}
.widget-services h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.widget-services ul li {
    border-bottom: 1px solid var(--border);
}
.widget-services ul li:last-child {
    border-bottom: none;
}
.widget-services ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}
.widget-services ul li a:hover {
    color: var(--primary);
    transform: translateX(6px);
}
.widget-services ul li a.active {
    color: var(--primary);
}

.widget-contact {
    background: var(--accent);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    color: white;
}
.widget-contact i {
    font-size: 48px;
    margin-bottom: 16px;
}
.widget-contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-phone {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

/* ============================================
   FOOTER - ULTRA MODERN
   ============================================ */
.footer-ultra {
    background: linear-gradient(180deg, #0f172a, #020617);
    color: #94a3b8;
    margin-top: 100px;
}
.footer-main {
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.footer-logo i {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}
.fl-main {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
}
.fl-sub {
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
}
.footer-desc {
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-links h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}
.contact-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
}
.contact-list i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.footer-legal {
    display: flex;
    gap: 16px;
}
.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
.wa-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ============================================
   SEO ARTICLE STYLES
   ============================================ */
.seo-article {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.meta-item i {
    color: var(--primary);
    font-size: 16px;
}

.article-intro {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin-bottom: 40px;
}

.article-intro .lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
}

.article-section {
    margin: 48px 0;
}

.article-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-section h2 i {
    color: var(--primary);
    font-size: 0.9em;
}

.article-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 12px;
    color: var(--text);
}

.article-section p {
    margin-bottom: 20px;
}

.benefit-list,
.article-section ul:not(.tech-list) {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.benefit-list li,
.article-section ul:not(.tech-list) li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.benefit-list li:last-child,
.article-section ul:not(.tech-list) li:last-child {
    border-bottom: none;
}

.benefit-list li i,
.article-section ul:not(.tech-list) li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--success);
    font-size: 18px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.ps-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.ps-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(8px);
}

.ps-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
}

.info-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #eff6ff;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    margin: 32px 0;
}

.info-box i {
    font-size: 28px;
    color: var(--primary);
    min-width: 28px;
}

.info-box strong {
    color: var(--primary);
}

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.ss-card {
    padding: 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.ss-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.ss-card h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 12px;
}

.cta-box {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    margin: 32px 0;
    align-items: center;
}

.cta-box i {
    font-size: 48px;
    min-width: 48px;
}

.cta-box h4 {
    color: white;
    margin: 0 0 8px 0;
}

.cta-box p {
    margin: 0;
    font-size: 16px;
}

.cta-box a {
    color: var(--accent);
    text-decoration: underline;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.wu-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.wu-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.wu-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.wu-card h4 {
    margin: 12px 0 8px;
}

.wu-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.final-cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: var(--radius-lg);
    margin: 48px 0;
}

.final-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 8px;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.5);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* FAQ Section Enhanced */
.faq-section .faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.faq-section .faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-section .faq-q {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    display: flex;
    align-items: start;
    gap: 12px;
}

.faq-section .faq-q i {
    color: var(--primary);
    font-size: 20px;
    min-width: 20px;
    margin-top: 2px;
}

.faq-section .faq-a {
    padding: 0 24px 20px 56px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive SEO Article */
@media (max-width: 768px) {
    .article-meta {
        gap: 12px;
    }
    .article-intro {
        padding: 24px;
    }
    .article-intro .lead {
        font-size: 18px;
    }
    .article-section {
        margin: 32px 0;
    }
    .article-section h2 {
        font-size: 1.5rem;
    }
    .ps-item {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .ps-num {
        margin: 0 auto 16px;
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .sub-services-grid {
        grid-template-columns: 1fr;
    }
    .final-cta {
        padding: 32px 20px;
    }
    .cta-button {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 8px 0;
    }
    .faq-section .faq-q {
        font-size: 16px;
        padding: 16px 20px;
    }
    .faq-section .faq-a {
        padding: 0 20px 16px 52px;
        font-size: 15px;
    }
}

/* ============================================
   RESPONSIVE - TAM MOBİL UYUMLU
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    .hero-container,
    .process-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .mega-menu {
        width: 500px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .btn-header.phone span {
        display: none;
    }
    .hero-container,
    .process-layout,
    .footer-grid,
    .inner-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-card {
        padding: 14px;
    }
    .stat-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
    .stat-info strong {
        font-size: 22px;
    }
    .services-grid-pro {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(5) {
        grid-column: span 1;
    }
    .gc-image {
        height: 250px;
    }
    .regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    .image-wrapper img,
    .pv-wrapper img {
        height: 450px;
    }
    .float-card {
        font-size: 12px;
        padding: 12px 16px;
    }
    .fc-1, .fc-2 {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .header-inner {
        height: 70px;
        padding: 0 16px;
    }
    .logo-symbol {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .logo-main {
        font-size: 20px;
    }
    .logo-sub {
        font-size: 10px;
    }
    
    /* Hero Section Mobile */
    .hero-ultra {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 24px;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-top: 32px;
    }
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
    }
    .stat-icon {
        margin-bottom: 10px;
    }
    
    .image-wrapper,
    .pv-wrapper {
        border-radius: 20px;
    }
    .image-wrapper img,
    .pv-wrapper img {
        height: 350px;
    }
    .image-badge {
        padding: 16px 20px;
        left: 16px;
        bottom: 16px;
    }
    .image-badge i {
        font-size: 24px;
    }
    .image-badge strong {
        font-size: 20px;
    }
    .float-card {
        display: none;
    }
    
    /* Services Mobile */
    .services-premium,
    .process-elegant,
    .gallery-spectacular,
    .regions-elegant {
        padding: 60px 0;
    }
    .section-head {
        margin-bottom: 48px;
    }
    .section-tag {
        font-size: 11px;
        padding: 6px 16px;
    }
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .services-grid-pro {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card-pro {
        padding: 28px;
    }
    .scp-icon {
        width: 60px;
        height: 60px;
    }
    .scp-icon svg {
        width: 30px;
        height: 30px;
    }
    .scp-title {
        font-size: 20px;
    }
    
    /* Process Mobile */
    .process-layout {
        gap: 40px;
    }
    .pv-badge {
        padding: 16px 20px;
    }
    .pv-badge i {
        font-size: 28px;
    }
    .pv-badge strong {
        font-size: 24px;
    }
    .step-list {
        gap: 20px;
    }
    .step-block {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }
    .sb-number {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    /* Gallery Mobile */
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gc-image {
        height: 280px;
    }
    .gc-info h4 {
        font-size: 18px;
    }
    .gc-meta {
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
    }
    
    /* Regions Mobile */
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .region-card {
        padding: 28px;
    }
    .rc-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    /* Inner Page Mobile - MAKALE ALANI DÜZELTMESİ */
    .page-hero-inner {
        padding: 120px 0 40px;
    }
    .page-hero-inner .container {
        padding: 0 20px;
    }
    .breadcrumb-nav {
        font-size: 13px;
        flex-wrap: wrap;
    }
    .page-title {
        font-size: 1.75rem;
    }
    .inner-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    .inner-layout .container {
        padding: 0 20px;
    }
    
    /* MAKALE İÇERİK ALANI - MOBİL DÜZENLEME */
    .content-main {
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }
    .content-main h1,
    .content-main h2,
    .content-main h3,
    .content-main h4,
    .content-main p,
    .content-main ul,
    .content-main ol {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .content-main h2 {
        font-size: 24px;
        margin: 32px 0 16px;
        padding: 0;
    }
    .content-main .lead {
        font-size: 17px;
        padding: 0;
    }
    
    /* SEO MAKALE MOBİL */
    .seo-article {
        padding: 0;
        width: 100%;
    }
    .article-title {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0;
        margin: 0 0 20px 0;
    }
    .article-meta {
        gap: 12px;
        padding: 16px 0;
        margin: 0 0 24px 0;
    }
    .meta-item {
        font-size: 13px;
    }
    .article-intro {
        padding: 20px;
        margin: 0 0 32px 0;
        border-radius: 12px;
    }
    .article-intro .lead {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .article-intro p {
        font-size: 15px;
        margin: 0;
    }
    .article-section {
        margin: 32px 0;
        padding: 0;
    }
    .article-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        padding: 0;
        flex-wrap: wrap;
    }
    .article-section h4 {
        font-size: 17px;
        margin: 16px 0 10px;
    }
    .article-section p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
        padding: 0;
    }
    
    /* LİSTELER MOBİL */
    .benefit-list,
    .article-section ul:not(.tech-list) {
        margin: 20px 0;
        padding: 0;
    }
    .benefit-list li,
    .article-section ul:not(.tech-list) li {
        padding: 10px 0 10px 32px;
        font-size: 14px;
        line-height: 1.6;
    }
    .benefit-list li i,
    .article-section ul:not(.tech-list) li i {
        font-size: 16px;
        top: 12px;
    }
    
    /* SÜREÇ ADIMLARI MOBİL */
    .process-steps {
        gap: 16px;
        margin: 24px 0;
        padding: 0;
    }
    .ps-item {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        margin: 0;
    }
    .ps-num {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 0 auto 12px;
    }
    .ps-content {
        padding: 0;
    }
    .ps-content h4 {
        font-size: 16px;
        margin: 0 0 8px 0;
    }
    .ps-content p {
        font-size: 14px;
        margin: 0;
    }
    
    /* TEKNİK LİSTE MOBİL */
    .tech-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
        padding: 0;
    }
    .tech-list li {
        padding: 12px;
        font-size: 14px;
    }
    
    /* INFO BOX MOBİL */
    .info-box {
        padding: 16px;
        margin: 24px 0;
        gap: 12px;
        border-radius: 12px;
    }
    .info-box i {
        font-size: 24px;
    }
    .info-box div {
        font-size: 14px;
    }
    
    /* ALT HİZMETLER GRID MOBİL */
    .sub-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px 0;
        padding: 0;
    }
    .ss-card {
        padding: 20px;
    }
    .ss-card h4 {
        font-size: 16px;
        margin: 0 0 10px 0;
    }
    .ss-card p {
        font-size: 14px;
        margin: 0;
    }
    
    /* CTA BOX MOBİL */
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin: 24px 0;
        gap: 16px;
        border-radius: 12px;
    }
    .cta-box i {
        font-size: 36px;
    }
    .cta-box h4 {
        font-size: 18px;
    }
    .cta-box p {
        font-size: 14px;
    }
    
    /* NEDEN BİZ GRID MOBİL */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
        padding: 0;
    }
    .wu-card {
        padding: 24px 20px;
    }
    .wu-card i {
        font-size: 36px;
        margin-bottom: 12px;
    }
    .wu-card h4 {
        font-size: 17px;
        margin: 8px 0;
    }
    .wu-card p {
        font-size: 13px;
    }
    
    /* FİNAL CTA MOBİL */
    .final-cta {
        padding: 28px 16px;
        margin: 32px 0;
        border-radius: 16px;
    }
    .final-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    .final-cta p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .cta-button {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 8px 0;
        padding: 16px 28px;
        font-size: 16px;
    }
    
    /* FAQ MOBİL */
    .faq-section {
        padding: 0;
        margin: 32px 0;
    }
    .faq-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .faq-section .faq-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }
    .faq-section .faq-q {
        font-size: 15px;
        padding: 16px;
        gap: 10px;
    }
    .faq-section .faq-q i {
        font-size: 18px;
        min-width: 18px;
    }
    .faq-section .faq-a {
        padding: 0 16px 16px 44px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* GÖRSEL MOBİL */
    .article-img,
    .article-image-wrapper img {
        height: 240px;
        margin: 20px 0;
        border-radius: 12px;
        width: 100%;
    }
    
    /* Sidebar Mobile */
    .sidebar-pro {
        padding: 0;
        margin-top: 40px;
    }
    .widget-cta {
        padding: 24px;
        border-radius: 16px;
    }
    .widget-head {
        gap: 12px;
        margin-bottom: 20px;
    }
    .widget-head i {
        font-size: 28px;
    }
    .widget-head h3 {
        font-size: 18px;
    }
    .widget-form input,
    .widget-form textarea {
        padding: 14px;
        font-size: 14px;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    .btn-submit {
        padding: 14px;
        font-size: 15px;
    }
    .widget-services,
    .widget-contact {
        padding: 24px;
        border-radius: 16px;
    }
    .widget-services h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .widget-services ul li a {
        font-size: 14px;
        padding: 12px 0;
    }
    .widget-contact i {
        font-size: 40px;
        margin-bottom: 12px;
    }
    .widget-contact h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .contact-phone {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .widget-contact p {
        font-size: 13px;
    }
    
    /* Footer Mobile */
    .footer-main {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-desc {
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
    }
    .contact-list li {
        justify-content: center;
    }
    .footer-bottom {
        padding: 24px 0;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    .wa-tooltip {
        display: none;
    }
    
    /* Sub Locations Mobile */
    .sub-locations-box {
        padding: 24px;
        margin-top: 40px;
        border-radius: 12px;
    }
    .sub-locations-box h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .sub-loc-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .sub-loc-item {
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .btn-hero {
        padding: 14px 24px;
        font-size: 14px;
    }
    .service-card-pro {
        padding: 24px;
    }
    .scp-title {
        font-size: 18px;
    }
    .step-block {
        padding: 20px;
    }
    .gc-image {
        height: 240px;
    }
}

/* Landscape Mode Optimizations */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-ultra {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    .image-wrapper img,
    .pv-wrapper img {
        height: 380px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}