/* ============================================================
   Haskur Nakliyat - Ana Stil Dosyası
   ============================================================ */

/* --- CSS Değişkenleri --- */
:root {
    --primary:        #1a2e5a;
    --primary-dark:   #112040;
    --primary-light:  #2a4080;
    --secondary:      #c0392b;
    --secondary-dark: #a93226;
    --accent:         #e74c3c;
    --bg-light:       #f8f9fa;
    --bg-gray:        #f0f2f5;
    --white:          #ffffff;
    --text:           #333333;
    --text-light:     #666666;
    --text-muted:     #999999;
    --border:         #dee2e6;
    --shadow:         0 2px 15px rgba(0,0,0,0.08);
    --shadow-md:      0 4px 20px rgba(0,0,0,0.12);
    --shadow-hover:   0 8px 30px rgba(0,0,0,0.16);
    --radius:         8px;
    --radius-lg:      16px;
    --transition:     0.3s ease;
    --font:           'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --header-height:  80px;
    --topbar-height:  40px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-gray  { background: var(--bg-gray); }
.bg-dark  { background: #0d1b2e; }
.bg-primary { background: var(--primary); }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; }

/* --- Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-call {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid var(--secondary);
}
.btn-call:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    background: rgba(192,57,43,0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.section-title { margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-desc { color: var(--text-light); max-width: 650px; margin: 0 auto; font-size: 1.05rem; }
.section-desc.light { color: rgba(255,255,255,0.85); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: none;
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

/* Topbar */
.header-topbar {
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    padding: 6px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.8rem;
}
.topbar-link:hover { color: var(--white); }
.topbar-whatsapp { color: #4ede8a; }
.topbar-whatsapp:hover { color: #7ff5b0; }
.topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
}
.topbar-social:hover { color: var(--white); }
.topbar-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #ffd700;
}

/* Header Main */
.header-main {
    padding: 0;
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-logo-link { display: flex; align-items: center; }
.site-logo-img { height: 60px; width: auto; object-fit: contain; }
.custom-logo { height: 60px; width: auto; }

/* Navigation */
.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu > li > a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    color: var(--secondary);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after {
    left: 16px;
    right: 16px;
}

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    flex-shrink: 0;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger-btn.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header Spacer */
.header-spacer { height: calc(var(--header-height) + var(--topbar-height) + 6px); }

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}
.mobile-overlay.active { opacity: 1; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,50,0.92) 0%, rgba(26,46,90,0.85) 50%, rgba(10,20,50,0.9) 100%);
}
.hero-section .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-content { max-width: 700px; color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.15);
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title-highlight { color: #ffd700; }
.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 600px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
}
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: #ffd700; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.hero-feature i { color: #4ede8a; font-size: 1rem; }
.hero-scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26,46,90,0.3);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary); }
.why-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.service-icon-blue { background: rgba(26,46,90,0.1); color: var(--primary); }
.service-icon-red  { background: rgba(192,57,43,0.1); color: var(--secondary); }
.service-title { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary); }
.service-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.services-cta { text-align: center; }

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.area-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
.area-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.area-icon { font-size: 1.2rem; color: var(--secondary); flex-shrink: 0; transition: color var(--transition); }
.area-card:hover .area-icon { color: #ffd700; }
.area-content { flex: 1; min-width: 0; }
.area-name { font-size: 0.95rem; font-weight: 700; margin: 0 0 2px; }
.area-side { font-size: 0.75rem; color: var(--text-muted); }
.area-card:hover .area-side { color: rgba(255,255,255,0.75); }
.area-arrow { color: var(--text-muted); transition: all var(--transition); }
.area-card:hover .area-arrow { color: var(--white); transform: translateX(4px); }
.areas-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.areas-cta-text { color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.areas-cta-text i { color: var(--primary); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    max-width: 220px;
    flex: 1;
    min-width: 160px;
}
.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(26,46,90,0.3);
}
.step-content h3 { font-size: 1rem; margin-bottom: 8px; }
.step-content p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.process-arrow {
    color: var(--border);
    font-size: 1.5rem;
    padding: 0 8px;
    flex-shrink: 0;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.video-content { color: var(--white); }
.video-features { list-style: none; margin: 20px 0 28px; }
.video-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.video-features li i { color: #4ede8a; }
.video-box, .about-video-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.promo-video { width: 100%; height: auto; display: block; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question[aria-expanded="true"] { background: var(--primary); color: var(--white); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); font-size: 0.9rem; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer.open {
    max-height: 300px;
    padding: 16px 24px 20px;
}
.faq-answer p { margin: 0; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 8px; }
.cta-desc { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all var(--transition);
    white-space: nowrap;
}
.floating-btn i { font-size: 1.3rem; }
.floating-btn-label { font-size: 0.85rem; }
.floating-whatsapp { background: #25d366; }
.floating-whatsapp:hover { background: #1da851; transform: translateX(-4px) scale(1.04); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.floating-phone { background: var(--secondary); }
.floating-phone:hover { background: var(--secondary-dark); transform: translateX(-4px) scale(1.04); box-shadow: 0 8px 30px rgba(192,57,43,0.5); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero-desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb li + li::before { content: '/'; color: var(--border); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-detail-reverse .service-detail-inner { direction: rtl; }
.service-detail-reverse .service-detail-inner > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.service-detail-img img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.5s ease; }
.service-detail-img:hover img { transform: scale(1.04); }
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,46,90,0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.service-tag-red { background: rgba(192,57,43,0.08); color: var(--secondary); }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); margin-bottom: 12px; }
.service-features { list-style: none; margin: 20px 0 24px; }
.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: #27ae60; }
.service-detail-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-img { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-intro-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); width: 100%; }
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}
.badge-icon { font-size: 1.5rem; }
.about-intro-content h2 { margin-bottom: 20px; }
.about-intro-content p { color: var(--text-light); }
.about-stats-row { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.about-stat {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    flex: 1;
    min-width: 100px;
}
.about-stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.mission-icon {
    width: 64px;
    height: 64px;
    background: rgba(26,46,90,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}
.mission-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.mission-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.advantages-list { display: flex; flex-direction: column; gap: 0; }
.advantage-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.advantage-item:last-child { border-bottom: none; }
.advantage-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}
.advantage-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.advantage-content p { color: var(--text-light); margin: 0; }
.about-video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-video-content { color: var(--white); }
.about-video-content h2 { color: var(--white); }
.about-video-content p { color: rgba(255,255,255,0.85); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-title { font-size: 1.8rem; margin-bottom: 12px; }
.contact-info-desc { color: var(--text-light); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--white);
}
.contact-icon-phone    { background: var(--secondary); }
.contact-icon-whatsapp { background: #25d366; }
.contact-icon-location { background: var(--primary); }
.contact-icon-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-card-content h3 { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-card-content a, .contact-link { color: var(--primary); font-weight: 600; text-decoration: none; transition: color var(--transition); font-size: 1rem; display: block; margin-bottom: 4px; }
.contact-card-content a:hover { color: var(--secondary); }
.contact-card-content p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.contact-cta-buttons { display: flex; flex-direction: column; gap: 12px; }
.contact-cta-buttons .btn { justify-content: center; }
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-header p { color: var(--text-light); margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.required { color: var(--secondary); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,46,90,0.1);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit-btn { width: 100%; justify-content: center; margin-top: 8px; position: relative; }
.btn-loading { display: none; }
.form-submit-btn.loading .btn-text { display: none; }
.form-submit-btn.loading .btn-loading { display: flex; align-items: center; gap: 8px; }
.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }
.map-section { line-height: 0; }

/* ============================================================
   DISTRICTS PAGE
   ============================================================ */
.district-region-group { margin-bottom: 60px; }
.district-region-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.district-region-title i { color: var(--secondary); }
.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.districts-grid-full { grid-template-columns: repeat(5, 1fr); }
.district-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
.district-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.district-card-icon { color: var(--secondary); font-size: 1.1rem; flex-shrink: 0; transition: color var(--transition); }
.district-card:hover .district-card-icon { color: #ffd700; }
.district-card-name { font-size: 0.9rem; font-weight: 700; margin: 0 0 2px; }
.district-card-service { font-size: 0.75rem; color: var(--text-muted); }
.district-card:hover .district-card-service { color: rgba(255,255,255,0.7); }
.district-card-content { flex: 1; min-width: 0; }
.district-card-arrow { color: var(--text-muted); font-size: 0.8rem; transition: all var(--transition); }
.district-card:hover .district-card-arrow { color: var(--white); transform: translateX(4px); }

/* ============================================================
   SINGLE DISTRICT PAGE
   ============================================================ */
.district-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%); }
.district-intro { padding: 60px 0; }
.district-intro-inner { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.district-intro-content h2 { display: none; }
.district-intro-content p { color: var(--text-light); font-size: 1rem; line-height: 1.8; }
.district-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(26,46,90,0.05);
    border-left: 4px solid var(--primary);
    padding: 16px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
}
.district-feature-box i { color: #ffd700; flex-shrink: 0; margin-top: 2px; }
.district-feature-box p { margin: 0; font-size: 0.95rem; color: var(--text); }
.district-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.district-info-card, .district-contact-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.district-info-card h3, .district-contact-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.district-services-list { list-style: none; }
.district-services-list li { margin-bottom: 8px; }
.district-services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.district-services-list a:hover { background: var(--primary); color: var(--white); }
.district-services-list a i { color: var(--primary); font-size: 0.9rem; width: 16px; transition: color var(--transition); }
.district-services-list a:hover i { color: #ffd700; }
.district-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--white);
}
.district-phone-btn { background: var(--secondary); }
.district-phone-btn:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.district-whatsapp-btn { background: #25d366; }
.district-whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }
.district-contact-address { display: flex; align-items: center; gap: 8px; color: var(--text-light); font-size: 0.85rem; margin: 8px 0 0; }
.district-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.district-service-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.district-service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.dsvc-icon {
    width: 52px;
    height: 52px;
    background: rgba(26,46,90,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.district-service-item h3 { font-size: 1rem; margin-bottom: 10px; }
.district-service-item p { color: var(--text-light); font-size: 0.875rem; margin: 0; }
.district-why-section .why-grid { grid-template-columns: repeat(4, 1fr); }
.nearby-list { display: flex; flex-wrap: wrap; gap: 12px; }
.nearby-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    transition: all var(--transition);
}
.nearby-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.nearby-all { background: var(--primary); color: var(--white); border-color: var(--primary); }
.nearby-all:hover { background: var(--primary-dark); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.final-cta-title { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.final-cta-desc { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0; }
.final-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-top { background: var(--primary-dark); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col {}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 55px; width: auto; filter: brightness(10); }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}
.social-instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); border-color: transparent; }
.social-whatsapp:hover { background: #25d366; border-color: #25d366; }
.social-phone:hover    { background: var(--secondary); border-color: var(--secondary); }
.footer-heading { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--secondary); }
.footer-menu { list-style: none; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-menu a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}
.footer-contact-list i { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }
.footer-cta-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
}
.footer-cta-box p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 12px; }
.footer-districts {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}
.footer-districts-title { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 12px; }
.footer-districts-list { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-district-link {
    display: inline-block;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-district-link:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copyright { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }
.footer-tagline a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--transition); }
.footer-tagline a:hover { color: var(--white); }

/* ============================================================
   SETUP NOTICE (ADMIN)
   ============================================================ */
.setup-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 20px;
    font-size: 0.9rem;
}
.setup-notice a { color: var(--primary); font-weight: 600; }

/* ============================================================
   ERROR 404 PAGE
   ============================================================ */
.error-content { text-align: center; max-width: 600px; margin: 0 auto; }
.error-number { font-size: 8rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 20px; }
.error-title { font-size: 2rem; margin-bottom: 16px; }
.error-desc { color: var(--text-light); margin-bottom: 36px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   POST CARDS (BLOG)
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.post-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
.post-content { padding: 24px; }
.post-title { font-size: 1.1rem; margin-bottom: 12px; }
.post-title a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
.post-title a:hover { color: var(--secondary); }
.post-excerpt { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }
.no-results { color: var(--text-muted); text-align: center; padding: 40px; font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .why-grid          { grid-template-columns: repeat(2, 1fr); }
    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .areas-grid        { grid-template-columns: repeat(3, 1fr); }
    .districts-grid    { grid-template-columns: repeat(3, 1fr); }
    .districts-grid-full { grid-template-columns: repeat(4, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .video-inner, .about-video-inner { grid-template-columns: 1fr; }
    .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
    .service-detail-reverse .service-detail-inner { direction: ltr; }
    .about-intro-inner { grid-template-columns: 1fr; }
    .about-img-badge   { position: static; display: inline-flex; margin-top: 12px; }
    .contact-grid      { grid-template-columns: 1fr; }
    .mission-grid      { grid-template-columns: 1fr 1fr; }
    .district-why-section .why-grid { grid-template-columns: repeat(2, 1fr); }
    .district-services-grid { grid-template-columns: repeat(2, 1fr); }
    .district-intro-inner { grid-template-columns: 1fr; }
    .process-steps     { gap: 0; }
    .process-arrow     { display: none; }
    .process-step      { max-width: 100%; width: 100%; border-bottom: 1px dashed var(--border); }
}

/* ============================================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    .section-padding  { padding: 50px 0; }
    .header-topbar    { display: none; }
    .header-spacer    { height: var(--header-height); }

    /* Mobile Nav */
    .hamburger-btn { display: flex; }
    .header-cta    { display: none; }
    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .main-navigation.open { transform: translateX(0); }
    .mobile-overlay { display: block; }
    .nav-menu { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-menu > li > a {
        padding: 14px 20px;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-menu > li > a::after { display: none; }

    /* Layout */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .why-grid, .services-grid, .mission-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-grid, .districts-grid-full { grid-template-columns: 1fr 1fr; }
    .district-services-grid, .district-why-section .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 12px; }
    .hero-stat { padding: 12px 16px; }
    .stat-number { font-size: 1.6rem; }
    .service-detail-img img { height: 220px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .cta-buttons, .final-cta-buttons { flex-direction: column; width: 100%; }
    .final-cta-inner { flex-direction: column; text-align: center; }
    .process-steps { flex-direction: column; gap: 0; }
    .process-step { max-width: 100%; }

    /* Floating butonlar - mobilde küçük */
    .floating-buttons { bottom: 16px; right: 12px; gap: 8px; }
    .floating-btn { padding: 12px 16px; }
    .floating-btn-label { display: none; }
    .floating-btn { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
    .floating-btn i { font-size: 1.4rem; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .nearby-list { gap: 8px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .districts-grid, .districts-grid-full { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .error-number { font-size: 5rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
