/**
 * Şerif Teknik Yalıtım & Danışmanlık
 * Ana Stil Dosyası
 * Renk Paleti: Koyu Lacivert, Beyaz, Siyah
 */

/* ============================================ */
/* CSS DEĞİŞKENLERİ - Tasarım Tokenleri        */
/* ============================================ */
:root {
    /* Ana Renkler */
    --navy-dark: #0a1628;
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-lighter: #2e4066;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --black: #000000;
    --gray-light: #e8ecf1;
    --gray: #8896a7;
    --gray-dark: #4a5568;

    /* Vurgu Renkleri */
    --accent: #3b82f6;
    --accent-hover: #2563eb;

    /* Tipografi */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
    --shadow-xl: 0 30px 80px rgba(10, 22, 40, 0.25);

    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Navbar yüksekliği */
    --navbar-height: 80px;
}

/* ============================================ */
/* GENEL SIFIRLAMA                              */
/* ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--navy-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ============================================ */
/* NAVBAR                                       */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: all var(--transition-base);
}

/* Scroll sonrası navbar stili */
.navbar.scrolled {
    height: 65px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo img {
    height: 120px;
    width: auto;
    transition: height var(--transition-base);
}

.navbar.scrolled .navbar-logo img {
    height: 100px;
}

/* Navbar Sosyal Medya (Masaüstünde Gizli) */
.navbar-social {
    display: none;
}

/* Menü Linkleri */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy-dark);
    letter-spacing: 0.01em;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--navy);
    background: rgba(26, 39, 68, 0.05);
}

.nav-link.active {
    color: var(--navy);
    background: rgba(26, 39, 68, 0.08);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
    transition: width var(--transition-base);
}

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

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 360px;
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Arka Plan */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    /* iframe taşmalarını gizle */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* YouTube iframe için tam kapsama */
iframe.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 16:9 oranını koruyarak hero alanını kaplama */
    width: 177.78vh; /* 100vh * 16/9 */
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    border: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.3) 0%,
            rgba(26, 39, 68, 0.2) 40%,
            rgba(10, 22, 40, 0.1) 100%);
}

/* Hero İçerik */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
    margin-left: 8%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Hero Interactive Button (Triangle Shape) */
.hero-interactive-btn {
    position: absolute;
    right: 5%;
    top: 60%;
    transform: translateY(-50%);
    width: 70px;
    /* Biraz daha geniş, üçgen formunu belirginleştirmek için */
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    /* Üçgen şekli (sağa yatan ikizkenar) */
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* İkonu sola yakın tutmak için */
    padding-left: 15px;
    /* İkonu görsel olarak ortalamak için */
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    /* Box shadow clip-path ile doğrudan çalışmaz, filter drop-shadow kullanılır */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-interactive-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.08);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
}

.triangle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Butonu */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--navy-dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta i {
    font-size: 0.85rem;
    transition: transform var(--transition-base);
}

.hero-cta:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* HAKKIMIZDA - OVERLAPPING DESİGN              */
/* ============================================ */
.about-section {
    padding: 120px 40px;
    background: var(--white);
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

/* Sol: Görsel Alanı (%70) */
.about-image-wrapper {
    width: 70%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

/* Sağ: Overlapping Metin Kutusu */
.about-text-box {
    position: absolute;
    right: 0;
    width: 50%;
    background: var(--navy-dark);
    color: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.about-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    font-weight: 300;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    padding: 12px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    transition: all var(--transition-base);
}

.about-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.about-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
}

.about-link:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* DANIŞMANLIK HİZMETLERİ SECTION               */
/* (Hakkımızda'nın ayna görüntüsü)              */
/* ============================================ */
.consulting-section {
    padding: 120px 40px;
    background: var(--white);
    overflow: hidden;
}

.consulting-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    flex-direction: row-reverse;
}

/* Sağ: Görsel Alanı (%60) */
.consulting-image-wrapper {
    width: 60%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 0;
}

.consulting-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.consulting-image-wrapper:hover .consulting-image {
    transform: scale(1.03);
}

/* Sol: Overlapping Metin Kutusu */
.consulting-text-box {
    position: absolute;
    left: 0;
    width: 55%;
    background: linear-gradient(to right, #e2e2e2 60%, rgba(226, 226, 226, 0));
    color: #1a1a1a;
    padding: 50px;
    padding-right: 80px;
    border-radius: 16px;
    z-index: 10;
}

.consulting-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #555;
    margin-bottom: 16px;
}

.consulting-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
}

.consulting-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 30px;
    font-weight: 400;
}

.consulting-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 12px 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 60px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.consulting-link:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.consulting-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
}

.consulting-link:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* GÖRSEL SLIDER - SÜREKLİ MARQUEE              */
/* ============================================ */
.slider-section {
    padding: 0;
    background: var(--white);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 10px 0;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.slider-slide {
    flex: 0 0 auto;
    width: 550px;
    padding: 0 8px;
}

/* Slider Kart */
.slider-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.slider-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Başlık resmin ortasında, lacivert arka plan */
.slider-card-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.slider-card-text h4 {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 8px #0a1628, 0 0 30px #0a1628, 0 0 60px rgba(10, 22, 40, 0.5);
}

.slider-card-text p {
    display: none;
}

/* ============================================ */
/* HİZMETLERİMİZ - DİKEY KART TASARIMI         */
/* ============================================ */
.services-section {
    padding: 120px 40px;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 12px;
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

.services-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Hizmet Kartları - Görsel üzerine yazı */
.service-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    height: 380px;
}

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

/* Görsel kartın tamamını kaplıyor */
.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Başlık ve açıklama resmin üzerinde, ortalanmış */
.service-card-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: 90%;
}

.service-card-content h3 {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 8px #0a1628, 0 0 30px #0a1628, 0 0 60px rgba(10, 22, 40, 0.5);
    letter-spacing: -0.01em;
}

.service-card-content p {
    display: none;
}

/* ============================================ */
/* NEDEN BİZ? BÖLÜMÜ                            */
/* ============================================ */
.why-us-section {
    padding: 80px 0;
    background: transparent;
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-us-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 50px;
    position: relative;
    font-family: var(--font-display);
}

.why-us-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
    /* İçerik boyları farklı olsa da sınırları eşitler */
}

.why-us-card {
    background: transparent;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* İkonlar ortada kalsın */
    justify-content: flex-start;
    /* İçeriği yukarıdan aşağı hizala */
    gap: 15px;
}

.why-us-card i {
    font-size: 2.8rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.why-us-card h3 {
    font-size: 1.15rem;
    color: var(--navy-dark);
    font-weight: 700;
    margin: 0;
    min-height: 55px;
    /* Başlıklar iki satır olduğunda hizayı korumak için */
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Hepsini Gör Butonu */
.services-footer {
    text-align: center;
    margin-top: 48px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.services-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--navy-dark);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.services-all-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.services-all-btn i {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
}

.services-all-btn:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* ALT SAYFALAR (PAGE HEADER)                   */
/* ============================================ */
.page-header-section {
    padding: 160px 20px 60px;
    background: var(--navy-dark);
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-header-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Hakkımızda - Öne Çıkanlar Özel Ayarı */
.page-about-section {
    padding-top: 40px;
    padding-bottom: 100px;
}

.about-description p {
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ============================================ */
/* DAR İÇERİK (NARROW CONTAINER)                */
/* ============================================ */
.narrow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-heading {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-description {
    color: var(--gray-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================ */
/* İŞ SÜREÇLERİMİZ (TIMELINE / AKIŞ ŞEMASI)     */
/* ============================================ */
.process-section {
    padding: 100px 0;
    background: var(--off-white);
    overflow: hidden;
}

.timeline-grid-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 100px;
    /* Horizontal Gap Increased */
    position: relative;
    padding-bottom: 40px;
}

/* Center Decorative Line */
.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: dashed 2px var(--navy-dark);
    opacity: 0.15;
    transform: translateX(-50%);
    z-index: 0;
}

.tl-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Base Top Margins for Staggering */
.tl-item:nth-child(2) {
    margin-top: 50px;
}

/* Adım 1 */
.tl-item:nth-child(3) {
    margin-top: 250px;
    margin-bottom: -200px;
}

/* Adım 2 */
.tl-item:nth-child(4) {
    margin-top: 50px;
}

/* Adım 3 */
.tl-item:nth-child(5) {
    margin-top: 250px;
}

/* Adım 4 */

.tl-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    height: 400px;
    /* Fixed Height */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tl-image {
    width: 100%;
    height: 60%;
    /* 60% Image */
    overflow: hidden;
}

.tl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tl-text {
    height: 40%;
    /* 40% Text */
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tl-text h3 {
    font-size: 1.4rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.tl-text p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Dynamic Arrows Weaving */
.tl-arrow {
    position: absolute;
    top: 50%;
    width: 200px;
    height: 100px;
    z-index: 1;
}

/* Arrow extending from Left item to Right */
.tl-arrow-right {
    right: -150px;
}

/* Arrow extending from Right item to Left */
.tl-arrow-left {
    left: -150px;
}

.tl-arrow svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.tl-path {
    stroke: var(--navy-dark);
    stroke-width: 4;
    stroke-dasharray: 10, 10;
    animation: dashMove 2s linear infinite;
    fill: none;
}

.tl-head {
    fill: var(--navy-dark);
    transform-origin: center;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 40;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ============================================ */
/* KALİTE GARANTİSİ                             */
/* ============================================ */
.quality-guarantee-section {
    padding: 60px 0 120px 0;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.guarantee-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--navy-dark);
    margin-bottom: 40px;
}

.guarantee-content {
    font-size: 1.15rem;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 50px;
}

.guarantee-content strong {
    color: var(--accent);
    font-weight: 700;
}

.guarantee-content em {
    display: block;
    margin-top: 24px;
    font-size: 1.3rem;
    color: var(--navy-dark);
    font-weight: 600;
    font-style: normal;
}

.guarantee-badge {
    width: 100px;
    height: 100px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.2);
}

.guarantee-badge::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--accent);
    border-radius: 50%;
    animation: spinRotate 15s linear infinite;
}

@keyframes spinRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================ */
/* MİNİMAL FOOTER (Hakkımızda sayfası için)     */
/* ============================================ */
.minimal-footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-footer-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.minimal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.minimal-contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 4px;
}

.minimal-contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.minimal-contact-item a {
    transition: color 0.2s;
}

.minimal-contact-item a:hover {
    color: var(--accent);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Detaylı Footer Grid (Anasayfa) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* Footer Sosyal Medya İkonları */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer-social-icons a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    font-weight: 400;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-regions {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Sadeleştirilmiş Footer (Alt Sayfalar) */
.footer-simple {
    padding: 40px 0;
    text-align: center;
}

.footer-simple-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-simple-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-simple-info a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-simple-info a:hover {
    color: var(--white);
}

.footer-simple-info i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* Copyright */
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================ */
/* FLOATING BUTONLAR - WhatsApp & Arama         */
/* ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.floating-btn-wrapper {
    position: relative;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.35rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* WhatsApp Butonu */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

/* Arama Butonu */
.call-btn {
    background: var(--navy);
}

.call-btn:hover {
    background: var(--navy-dark);
}

/* Arama Dropdown */
.call-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    padding: 8px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.call-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-dark);
    transition: background var(--transition-fast);
}

.call-option:hover {
    background: var(--off-white);
}

.call-option i {
    font-size: 1.1rem;
    color: var(--navy);
    width: 20px;
    text-align: center;
}

/* ============================================ */
/* İLETİŞİM SAYFASI                             */
/* ============================================ */

/* Ana Bölüm */
.contact-main-section {
    padding: 80px 40px 80px;
    background: var(--white);
}

.contact-main-header {
    max-width: 1280px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-info-desc {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* İki Kolonlu Ana Wrapper (Bilgi Sol | Form Sağ) */
.contact-main-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* Sol: İletişim Bilgileri - Tek Container, Dikey Sıralama */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    background: transparent;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 0;
    background: transparent;
    border-bottom: 1px solid var(--gray-light);
    transition: none;
}

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

.contact-detail-item:hover {
    transform: none;
    box-shadow: none;
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: var(--navy-dark);
    line-height: 1.6;
    font-weight: 500;
}

.contact-detail-item a {
    color: var(--navy-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-detail-item a:hover {
    color: var(--accent);
}

/* Sağ: Form Container */
.contact-form-container {
    background: var(--off-white);
    padding: 50px;
    border-radius: 20px;
}

/* Form Alert Mesajları */
.contact-form-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form-alert.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-form-alert.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-form-alert i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Form Yapısı */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--navy-dark);
    transition: all var(--transition-fast);
    outline: none;
    box-shadow: var(--shadow-sm);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238896a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group input::placeholder,
.form-group select:invalid,
.form-group textarea::placeholder {
    color: var(--gray);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(26, 39, 68, 0.08);
}

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

/* Gönder Butonu - Ortalanmış */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--navy-dark);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    align-self: center;
}

.contact-submit-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-submit-btn i {
    font-size: 0.9rem;
    transition: transform var(--transition-base);
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

/* Sosyal Medya & Aksiyon Butonları */
.contact-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--white);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.social-icon-link:hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-action-btn.whatsapp {
    background: #25D366;
}

.contact-action-btn.whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-action-btn.call {
    background: var(--navy-dark);
}

.contact-action-btn.call:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-action-btn i {
    font-size: 1rem;
}

/* Google Maps Bölümü */
.contact-map-section {
    width: 100%;
    line-height: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ============================================ */
/* ANİMASYONLAR                                 */
/* ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll ile görünür olan elemanlar */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE - Tablet (1024px altı)            */
/* ============================================ */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 24px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    /* About */
    .about-section {
        padding: 80px 24px;
    }

    .about-container {
        flex-direction: column;
        gap: 0;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .about-image {
        height: 400px;
    }

    .about-text-box {
        position: relative;
        width: 90%;
        margin: -60px auto 0;
        right: auto;
    }

    /* Why Us */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    /* Services */
    .services-section {
        padding: 80px 24px;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* İletişim */
    .contact-main-section {
        padding: 60px 24px 60px;
    }

    .contact-main-wrapper {
        gap: 30px;
    }

    .contact-form-container {
        padding: 40px 30px;
    }
}

/* ============================================ */
/* RESPONSIVE - Mobil (768px altı)              */
/* ============================================ */
@media (max-width: 768px) {
    :root {
        --navbar-height: auto;
    }

    /* Navbar - Mobil: Logo sol, sosyal sağ, menü alt satır */
    .navbar {
        height: auto;
        padding: 6px 0;
    }

    .navbar.scrolled {
        height: auto;
        padding: 4px 0;
    }

    .navbar-container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 30px;
        /* Logo ve ikonlar arası yatay boşluk */
        row-gap: 4px;
        /* Alt satırla dar boşluk */
        padding: 4px 12px;
    }

    .navbar-logo img {
        height: 95px;
        /* Logo iyice büyütüldü */
    }

    .navbar.scrolled .navbar-logo img {
        height: 70px;
        /* Kaydırıldığındaki logo büyütüldü */
    }

    .navbar-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1px;
        order: 3;
        width: 100%;
        margin-top: 0px;
        /* İkon/logo satırı ile menü arası ekstra boşluk kaldırıldı */
    }

    /* Navbar Sosyal Medya - Mobilde Göster */
    .navbar-social {
        display: flex;
        align-items: center;
        gap: 12px;
        order: 2;
    }

    .navbar-social a {
        color: var(--navy-dark);
        font-size: 1.25rem;
        /* İkonlar büyütüldü */
        transition: color var(--transition-fast);
    }

    .navbar-social a:hover {
        color: var(--accent);
    }

    .navbar.scrolled .navbar-social a {
        color: var(--navy);
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.82rem;
    }

    .nav-link::after {
        bottom: 2px;
    }

    /* Hero */
    .hero {
        height: 56.25vw; /* Ekran genişliğine göre 16:9 oran = video hiç kırpılmaz */
        min-height: unset;
        max-height: unset;
        margin-top: 160px;
    }

    .hero-video-wrapper {
        top: 0;
        height: 100%;
    }

    .hero-video {
        object-fit: contain;
    }

    iframe.hero-video {
        width: 100%;
        height: 100%;
        min-width: unset;
        min-height: unset;
    }

    .hero-content {
        margin-left: 5%;
        padding: 0 20px;
        max-width: 80%;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
        max-width: 200px;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .hero-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
        gap: 8px;
    }

    /* About */
    .about-section {
        padding: 40px 0;
    }

    .about-image-wrapper {
        border-radius: 0;
    }

    .about-image {
        height: 240px;
        border-radius: 0;
    }

    .about-text-box {
        width: 95%;
        padding: 20px 18px;
        margin-top: -30px;
        border-radius: 12px 12px 0 0;
    }

    .about-label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .about-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .about-description {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .about-link {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    /* Consulting - Mobil (About ayna) */
    .consulting-section {
        padding: 80px 24px;
    }

    .consulting-container {
        flex-direction: column;
        gap: 0;
    }

    .consulting-image-wrapper {
        width: 100%;
        order: -1;
        z-index: 1;
    }

    .consulting-image {
        height: 400px;
    }

    .consulting-text-box {
        position: relative;
        width: 90%;
        margin: -60px auto 0;
        left: auto;
        z-index: 10;
        background: linear-gradient(to top, #e2e2e2 60%, rgba(226, 226, 226, 0));
        padding-top: 70px;
    }

    /* Why Us - Mobil */
    .why-us-section {
        padding: 50px 0;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .why-us-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .why-us-card h3 {
        font-size: 1rem;
        min-height: 45px;
    }

    .why-us-card p {
        font-size: 0.85rem;
    }

    /* Slider - Mobil */
    .slider-section {
        padding: 30px 0;
    }

    .slider-slide {
        width: 320px;
        padding: 0 4px;
    }

    .slider-card {
        height: 220px;
        border-radius: 10px;
    }

    .slider-card-text h4 {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Services */
    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        flex-direction: row;
        height: 200px;
    }

    .service-card-image {
        flex: 0 0 40%;
        height: 100%;
    }

    .service-card-image img {
        min-height: auto;
        height: 100%;
    }

    .service-card-content {
        flex: 1;
        padding: 16px 20px;
    }

    .service-card-content h3 {
        font-size: 1rem;
    }

    .service-card-content p {
        font-size: 0.82rem;
    }

    /* ============================================ */
    /* ALT SAYFALAR (RESPONSIVE)                    */
    /* ============================================ */
    .page-header-section {
        padding: 180px 20px 50px;
    }

    /* İletişim - Mobil */
    .contact-main-section {
        padding: 50px 20px 40px;
    }

    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-detail-item {
        padding: 18px 0;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

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

    .contact-social-row {
        flex-direction: column;
        align-items: center;
    }

    .contact-action-buttons {
        width: 100%;
        justify-content: center;
    }

    .contact-map-section iframe {
        height: 300px;
    }

    .process-section {
        background-color: var(--white);
        padding: 40px 0;
    }

    .about-section {
        background-color: var(--white);
    }

    .page-header-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description,
    .guarantee-content {
        font-size: 1.05rem;
    }

    /* İş Süreçleri - Mobilde 2 Sütunlu (Staggered) Yapıyı Koruma Denemesi */
    .timeline-grid-container {
        gap: 0 20px;
        padding-bottom: 20px;
    }

    .tl-item {
        margin-bottom: 30px;
    }

    /* Ölçeklendirilmiş Mobilde Stagger Marjları */
    .tl-item:nth-child(2) {
        margin-top: 20px;
    }

    .tl-item:nth-child(3) {
        margin-top: 150px;
    }

    .tl-item:nth-child(4) {
        margin-top: 20px;
    }

    .tl-item:nth-child(5) {
        margin-top: 150px;
    }

    .tl-card {
        height: 280px;
    }

    .tl-image {
        height: 50%;
    }

    .tl-text {
        height: 50%;
        padding: 10px;
    }

    .tl-text h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .tl-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .tl-arrow {
        width: 80px;
        height: 60px;
    }

    .tl-arrow-right {
        right: -50px;
    }

    .tl-arrow-left {
        left: -50px;
    }

    /* Kalite Garantisi */
    .quality-guarantee-section {
        padding: 20px 0 60px 0;
    }

    .guarantee-title {
        font-size: 2.2rem;
    }

    /* Minimal Footer */
    .minimal-footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .minimal-contact-item {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Footer */
    .footer {
        padding-top: 50px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-logo {
        height: 70px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Butonlar */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .call-dropdown {
        min-width: 200px;
        right: -10px;
    }
}

/* ============================================ */
/* RESPONSIVE - Küçük Mobil (480px altı)        */
/* ============================================ */
@media (max-width: 480px) {
    .hero {
        height: 56.25vw;
        margin-top: 150px;
    }

    .hero-content {
        padding: 0 15px;
        max-width: 85%;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .about-text-box {
        padding: 24px 20px;
    }

    .about-title {
        font-size: 1.25rem;
    }

    .consulting-section {
        padding: 40px 16px;
    }

    .consulting-image-wrapper {
        width: 100%;
        border-radius: 12px;
    }

    .consulting-image {
        height: 260px;
        border-radius: 12px;
    }

    .consulting-text-box {
        width: 95%;
        padding: 20px 18px;
        padding-top: 50px;
        margin-top: -40px;
        border-radius: 12px 12px 0 0;
        background: linear-gradient(to top, #e2e2e2 60%, rgba(226, 226, 226, 0));
    }

    .consulting-label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .consulting-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .consulting-description {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .consulting-link {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .services-title {
        font-size: 1.6rem;
    }

    .service-card {
        height: 140px;
    }

    .service-card-content {
        padding: 12px 16px;
    }

    .service-card-content h3 {
        font-size: 0.92rem;
    }

    .service-card-content p {
        font-size: 0.78rem;
    }

    /* Alt Sayfalar Ekstra Mobil */
    .page-header-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .guarantee-title {
        font-size: 1.8rem;
    }

    .guarantee-content {
        font-size: 0.95rem;
    }
}