/* assets/css/style.css - Global Base */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --color-primary: #0B2B5E;
    --color-accent: #00A3FF;
    --color-accent-hover: #0082CC;
    --color-dark: #071731;

    --color-bg-pure: #FFFFFF;
    --color-bg-soft: #F8FAFC;
    --color-bg-dark: #0A1C3A;

    --color-text-main: #1E293B;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1400px;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(11, 43, 94, 0.1);

    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-main);
    background-color: var(--color-bg-pure);
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
}

h1 strong {
    font-weight: 800;
    color: var(--color-accent);
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    color: inherit;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-soft {
    background-color: var(--color-bg-soft);
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-text-light);
}

.text-center {
    text-align: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ============================================================
   GSAP FALLBACK
   ============================================================ */
.gsap-reveal {
    visibility: hidden;
    opacity: 0;
}

.section-header,
.seo-content-block,
.testimonials-section .section-header,
.premium-video-section .text-center,
.premium-gallery-section .text-center {
    position: relative;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.section-header h2,
.seo-content-block h2,
.premium-video-section h2,
.premium-gallery-section h2,
.testimonials-section h2,
.section-soft h2 {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    color: var(--color-primary);
}

.section-header p,
.seo-content-block p,
.premium-video-section p,
.premium-gallery-section p,
.testimonials-section p {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.subtitle,
.section-subtitle {
    display: inline-block;
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.25);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 163, 255, 0.4);
}

.btn-white {
    background: white;
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-bg-soft);
    transform: translateY(-3px);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0 18px;
    background: transparent;
    transition: all .3s ease;
}

/* Sayfa tepesinde karartma gradyanı */
.header:not(.scrolled)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(2,12,32,.92) 0%,
        rgba(2,12,32,.72) 48%,
        rgba(2,12,32,0) 100%
    );
}

/* Scroll sonrası beyaz header */
.header.scrolled {
    padding: 14px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 8px 28px rgba(2,12,32,.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header.scrolled::before {
    display: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.scrolled .logo-text {
    color: var(--color-primary);
}

.logo-text span {
    color: var(--color-accent);
}

.header .logo img {
    max-height: 82px;
    width: auto;
    object-fit: contain;
    transition: all .3s ease;
}

.header.scrolled .logo img {
    max-height: 62px;
}

.nav-menu ul {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.scrolled .nav-menu a {
    color: var(--color-text-main);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-phone {
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.scrolled .header-phone,
.header.scrolled .header-phone {
    color: var(--color-primary);
}

.header-phone i {
    color: var(--color-accent);
    font-size: 1.4rem;
}

.header .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.mobile-menu-toggle {
    display: none;
}

.header.scrolled .mobile-menu-toggle {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: all var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,163,255,0.3);
}

/* ============================================================
   STICKY BUTTONS — sadece desktop
   ============================================================ */
.sticky-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(0,163,255,0.4);
    animation: bounce 2s infinite;
}

.sticky-whatsapp {
    position: fixed;
    bottom: 115px;
    right: 30px;
    z-index: 999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(37,211,102,0.4);
    animation: bounce 2s infinite;
}

.sticky-whatsapp:hover {
    transform: translateY(-4px);
    background: #1ebe5d;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40%  { transform: translateY(-15px); }
    60%  { transform: translateY(-7px); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-dark);
    padding: var(--spacing-xl) 0 2rem;
    color: rgba(255,255,255,0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-heading {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.contact-info li,
.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
    align-items: flex-start;
}

.contact-info i,
.contact-list i {
    font-size: 1.4rem;
    color: var(--color-accent);
}

.contact-info a {
    color: rgba(255,255,255,0.72);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

/* ============================================================
   LOCAL SEO STRIP
   ============================================================ */
.local-seo-strip {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 18px 0;
    background: #0f172a;
    color: #fff;
    text-align: center;
    font-size: .95rem;
    line-height: 1.7;
}

.local-seo-strip p {
    margin: 0;
    opacity: .9;
}

/* ============================================================
   GALLERY OVERLAY
   ============================================================ */
.premium-gallery-card {
    position: relative;
    overflow: hidden;
}

.premium-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.35),
        rgba(0,0,0,0)
    );
    color: #fff;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.premium-gallery-overlay h3 {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.25;
}

.premium-gallery-overlay p {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin: 0;
}

.before-after-badge {
    display: inline-flex;
    margin-bottom: 10px;
    background: var(--color-accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================================
   HERO BG
   ============================================================ */
.hero-bg picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   HERO — desktop (992px+)
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-container,
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content {
    padding-top: 15px;
    max-width: 640px;
}

@media (min-width: 992px) {
   .hero {
    min-height: 860px;
    padding: 135px 0 60px;
}

    .hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 620px;
    align-items: center;
    gap: 28px;
}

    .hero-content {
        max-width: 720px;
    }

    .hero-content h1 {
    font-size: clamp(3.2rem, 4.2vw, 5rem);
    line-height: .98;
    letter-spacing: -3px;
    margin-bottom: 22px;
    font-weight: 300;
    color:#fff;
}

    .hero-content .subtitle {
        font-size: 14px;
        line-height: 1.6;
        max-width: 680px;
        display: block;
    }

    .hero-content p{
    max-width:560px;
    font-size:1.02rem;
    line-height:1.7;
}

    .hero-video-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        max-width: 700px;
        justify-self: end;
    }

    .hero-video-card {
        width: 100%;
        height: 520px;
        border-radius: 28px;
        overflow: hidden;
    }

    .hero-video-card video,
    .hero-video-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ============================================================
   HERO VISUAL
   ============================================================ */
.hero-visual {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 100%;
}

.hero-visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 35px 80px rgba(0,0,0,.35));
}

/* ============================================================
   HERO FEATURES
   ============================================================ */

.hero-feature-row{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-top:24px;
    flex-wrap:wrap;
}

.hero-feature-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    color:#fff;
    position:relative;
    min-width:92px;
}

.hero-feature-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-18px;
    top:10px;
    width:1px;
    height:72px;
    background:rgba(255,255,255,.14);
}

.hero-feature-item i{
    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(0,163,255,.45);

    background:
        radial-gradient(circle at top,
        rgba(0,163,255,.14),
        rgba(255,255,255,.02));

    color:#fff;
    font-size:30px;

    margin-bottom:14px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 10px 30px rgba(0,163,255,.14);
}

.hero-feature-item span{
    font-size:15px;
    line-height:1.45;
    color:rgba(255,255,255,.96);
    font-weight:500;
}

/* ============================================================
   HERO GUARANTEE
   ============================================================ */

.hero-guarantee{
    display:flex;
    align-items:center;
    gap:12px;

    margin-top:22px;
    margin-bottom:8px;

    color:#fff;
}

.hero-guarantee i{
    font-size:28px;
    color:var(--color-accent);
}

.hero-guarantee span{
    font-size:18px;
    font-weight:500;
    color:rgba(255,255,255,.96);
}

/* ============================================================
   HERO TRUST BAR
   ============================================================ */
.hero-trust-bar {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 720px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.18);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    overflow: hidden;
    padding: 4px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    color: #fff;
    position: relative;
}

.hero-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 24%;
    width: 1px;
    height: 52%;
    background: rgba(255,255,255,.22);
}

.hero-trust-item i {
    font-size: 2.35rem;
    color: #00AEEF;
    line-height: 1;
}

.hero-trust-item strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.hero-trust-item span {
    display: block;
    margin-top: .25rem;
    font-size: .82rem;
    color: rgba(255,255,255,.92);
    line-height: 1.25;
}

/* ============================================================
   RESPONSIVE — 992px (tablet)
   ============================================================ */
@media (max-width: 992px) {
    .hero-video-wrapper {
        margin-top: 40px;
        gap: 14px;
    }

    .hero-video-card {
        height: 300px;
        border-radius: 24px;
    }

    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        max-width: 620px;
    }

    .hero-trust-item:nth-child(2)::after {
        display: none;
    }

    .hero-trust-item {
        padding: 1.1rem 1.2rem;
    }
}

/* ============================================================
   RESPONSIVE — 768px (mobil)
   ============================================================ */
@media (max-width: 768px) {

    /* Hero video — kaldırıldı */
    .hero-video-wrapper {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.4rem);
        line-height: 1.08;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Trust bar */
    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .hero-trust-item {
        padding: .9rem .85rem;
        gap: .7rem;
    }

    .hero-trust-item i {
        font-size: 1.5rem;
    }

    .hero-trust-item strong {
        font-size: .95rem;
        line-height: 1.1;
    }

    .hero-trust-item span {
        font-size: .68rem;
        line-height: 1.25;
    }

    .hero-trust-item:not(:last-child)::after {
        display: none;
    }

    /* Sticky butonlar — responsive.css yönetiyor */
    .sticky-call,
    .sticky-whatsapp {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — 576px
   ============================================================ */
@media (max-width: 576px) {
    .hero-trust-bar {
        grid-template-columns: 1fr;
        margin-top: 1.6rem;
        border-radius: 14px;
    }

    .hero-trust-item {
        padding: 1rem 1.2rem;
    }

    .hero-trust-item:not(:last-child)::after {
        width: calc(100% - 2.4rem);
        height: 1px;
        left: 1.2rem;
        right: auto;
        top: auto;
        bottom: 0;
    }

    .hero-trust-item i {
        font-size: 2rem;
    }

    .hero-trust-item strong {
        font-size: 1.1rem;
    }
}
/* ============================================================
   HERO CONTENT SCALE DOWN
   ============================================================ */

@media (min-width: 992px){

    .hero-content .subtitle{
        font-size: 12px !important;
        letter-spacing: 3px !important;
        margin-bottom: 12px !important;
    }

    .hero-content h1{
        font-size: clamp(3rem, 3.8vw, 4.4rem) !important;
        line-height: 1 !important;
        letter-spacing: -3px !important;
        margin-bottom: 20px !important;
    }

    .hero-content p{
        max-width: 560px !important;
        font-size: .98rem !important;
        line-height: 1.65 !important;
        margin-bottom: 0 !important;
    }

    .hero-feature-row{
        gap: 18px !important;
        margin-top: 24px !important;
    }

    .hero-feature-item{
        min-width: 88px !important;
    }

    .hero-feature-item i{
        width: 54px !important;
        height: 54px !important;
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }

    .hero-feature-item span{
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    .hero-feature-item:not(:last-child)::after{
        right: -10px !important;
        height: 62px !important;
    }

    .hero-guarantee{
        margin-top: 18px !important;
        margin-bottom: 6px !important;
        gap: 9px !important;
    }

    .hero-guarantee i{
        font-size: 22px !important;
    }

    .hero-guarantee span{
        font-size: 15px !important;
    }

}
/* ============================================================
   HERO TRUST BAR SCALE DOWN
   ============================================================ */

@media (min-width: 992px){

    .hero-trust-bar{
        margin-top: 18px !important;
        max-width: 700px !important;
        border-radius: 16px !important;
        padding: 0 !important;
    }

    .hero-trust-item{
        padding: .72rem .95rem !important;
        gap: .8rem !important;
    }

    .hero-trust-item i{
        font-size: 1.9rem !important;
    }

    .hero-trust-item strong{
        font-size: 1rem !important;
        line-height: 1 !important;
    }

    .hero-trust-item span{
        font-size: .74rem !important;
        line-height: 1.2 !important;
        margin-top: 3px !important;
    }

    .hero-trust-item:not(:last-child)::after{
        height: 46% !important;
    }

}
/* ============================================================
   HERO FINAL POSITION TUNING
   ============================================================ */

@media (min-width: 992px){

    .hero-content{
        transform: translateY(-18px);
    }

    .hero-visual img{
        max-width: 520px !important;
        transform: translateY(-8px);
    }

    .hero-trust-bar{
        margin-top: 14px !important;
    }

}
/* ============================================================
   STICKY CTA BAR — premium, tüm ekranlar
   ============================================================ */
.sticky-call,
.sticky-whatsapp {
    display: none !important;
}

.mobile-sticky-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    pointer-events: none;
    background: rgba(7, 23, 49, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.28);
    padding: 10px 16px 14px;
}

@media (min-width: 769px) {
    .mobile-sticky-actions {
        left: unset !important;
        right: 30px !important;
        bottom: 30px !important;
        top: unset !important;
        width: 300px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(255,255,255,0.13) !important;
        border-top: 1px solid rgba(255,255,255,0.13) !important;
        padding: 10px !important;
        gap: 8px !important;
        box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08) !important;
    }
}

.mobile-sticky-btn {
    pointer-events: auto;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mobile-sticky-btn i {
    font-size: 22px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
}

.mobile-sticky-btn .btn-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.mobile-sticky-btn.call {
    background: linear-gradient(135deg, #0B2B5E 0%, #1a4a8f 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(11,43,94,0.5);
}

.mobile-sticky-btn.whatsapp {
    background: linear-gradient(135deg, #128c3e 0%, #25D366 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.mobile-sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.mobile-sticky-btn:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 96px;
    }

    .mobile-sticky-actions {
        padding: 10px 12px 20px !important;
        gap: 10px !important;
    }

    .mobile-sticky-btn {
        height: 60px;
        border-radius: 18px;
        gap: 10px;
    }

    .btn-text small {
        font-size: 9px;
    }

    .mobile-sticky-btn .btn-text {
        font-size: 13px;
    }
}
/* ============================================================
   ABOUT SECTION (Hakkımızda)
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-md);
    align-items: center;
}

.about-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.about-badges i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 43, 94, 0.15);
}

.about-stat-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
}

.about-stat {
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1;
}

.about-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ============================================================
   USP SECTION (Neden Biz?)
   ============================================================ */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.usp-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 43, 94, 0.05);
    transition: var(--transition-smooth);
}

.usp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(11, 43, 94, 0.08);
}

.usp-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-soft);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.usp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.usp-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ============================================================
   HOW IT WORKS (Nasıl Çalışıyoruz?)
   ============================================================ */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.how-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(11, 43, 94, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* ============================================================
   IMAGE STATS SECTION
   ============================================================ */
.image-stats-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.image-stats-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.image-stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 43, 94, 0.95), rgba(11, 43, 94, 0.7));
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* ============================================================
   TESTIMONIALS (Yorumlar)
   ============================================================ */
.google-rating-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.google-rating-inner {
    background: white;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(11, 43, 94, 0.06);
}

.google-rating-stars {
    color: #FBBC05;
    font-weight: 800;
    display: flex;
    gap: 5px;
    align-items: center;
}

.google-rating-meta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(11, 43, 94, 0.04);
    border: 1px solid rgba(11, 43, 94, 0.03);
}

.testimonial-service {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-card .stars {
    color: #FBBC05;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-comment {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* ============================================================
   DISTRICTS GRID (Hizmet Bölgeleri)
   ============================================================ */
.districts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.district-side-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-bg-soft);
}

.service-area-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.service-area-links a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.service-area-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}
/* ─── 404 Hata Sayfası ─────────────────────────────────────────────────────── */
/* Bu blok style.css içine eklenecek                                           */

.error-page {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page__inner {
    text-align: center;
}

.error-page__code {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    /* Ekran okuyuculardan gizlendi, h1 semantik başlık olarak kalıyor */
}

.error-page__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.error-page__desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.error-page__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.error-page__suggestions {
    border-top: 1px solid var(--color-border, #e5e7eb);
    padding-top: 2rem;
}

.error-page__suggestions-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.error-page__suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.error-page__suggestions-list a {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.error-page__suggestions-list a:hover {
    text-decoration: none;
}

@media (max-width: 480px) {
    .error-page__code {
        font-size: 5rem;
    }

    .error-page__title {
        font-size: 1.4rem;
    }

    .error-page__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   RESPONSIVE TUNING
   ============================================================ */
@media (max-width: 1200px) {
    .usp-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .districts-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .usp-grid, .testimonials-grid, .how-steps, .service-area-links { grid-template-columns: 1fr; }
    .stat-number { font-size: 3rem; }
}