/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

:root {
    /* Primary Colors */
    --primary-color: #000000;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;

    /* Secondary Colors */
    --secondary-color: #f80101;
    --secondary-dark: #ff0000;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Accent Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Inter", sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;

    /* Added overflow control to prevent horizontal scrolling */
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===== HEADER STYLES ===== */
/* ===== HEADER GENEL ===== */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #a8c8dd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    font-family: var(--font-secondary);
}

/* Hero, header’a çarpmaması için boşluk */
.hero-advanced {
    padding-top: 170px; /* header toplam yüksekliği */
}

/* Ortak container ayarı */
.header-modern .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ÜST İNCE BAR === */
.top-bar {
    background: rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
    color: #1f2937;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.top-left i {
    margin-right: 6px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-right a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

/* === ORTA BÖLÜM: LOGO, ARAMA, TELEFON === */
.header-main {
    padding: 15px 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-container .navbar-logo {
    height: 115px !important;
    width: auto;
    display: block;
}


/* Arama alanı */
.header-search {
    flex: 1;
    max-width: 520px;
}

.header-search form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    overflow: hidden;
}

.header-search input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
}

.header-search button {
    border: none;
    background: transparent;
    width: 44px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
}

/* Sağdaki telefon butonu */
.header-call a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ff0000;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(249,115,22,0.35);
}

.header-call a i {
    font-size: 16px;
}

/* Mobil menü butonu (başta gizli) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #111827;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* === ALT NAV ŞERİDİ === */
.header-nav {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Menü */
.main-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-link i {
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
    border-bottom-color: #000000;
}

/* Kurumsal dropdown */
.has-submenu .submenu-arrow {
    margin-left: 3px;
    font-size: 11px;
}

.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    padding: 8px 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    list-style: none;
    display: none;
    z-index: 1001;
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 14px;
    color: #374151;
    border-bottom: none;
}

.submenu li a:hover {
    background: #f3f4f6;
    color: #111827;
}

.has-submenu:hover .submenu {
    display: block;
}

/* “Servis Talep Edin” butonu */
.header-request .request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(239,68,68,0.35);
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .header-main-inner {
        gap: 10px;
    }

    .header-search {
        display: none;  /* mobilde arama kutusunu gizle istersen */
    }

    .header-call {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav-inner {
        position: relative;
        align-items: flex-start;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        flex-direction: column;
        background: #ffffff;
        padding: 10px 20px 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: 0.25s;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .submenu {
        position: static;
        box-shadow: none;
        padding-left: 12px;
        margin-top: 4px;
    }

    .has-submenu:hover .submenu {
        display: none; /* mobilde hover yok */
    }

    .has-submenu.open .submenu {
        display: block;
    }

    .header-request {
        margin-left: auto;
        z-index: 1002;
    }
}

@media (max-width: 640px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 4px 0;
        gap: 4px;
    }

    .header-main-inner {
        gap: 8px;
    }

    .header-call a span {
        font-size: 13px;
    }

    .header-request .request-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    .hero-advanced {
        padding-top: 190px;
    }
}


.header-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    width: auto !important;
    height: 50px;
    overflow: visible;
}


.navbar-logo {
    height: 100%;
    width: auto;
    max-height: 75px;
    object-fit: contain;
    object-position: left center;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-sub {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
}



.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.phone-btn:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;

    /* Added flex-shrink to prevent menu from being pushed off screen */
    position: relative;
    z-index: 1200;

    /* stay above dropdown */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-advanced {
    background: url(../images/home-one-img1.jpg) no-repeat center center;
    background-size: cover;

    /* ekranı tam kaplar */
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-advanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);

    /* buradaki 0.5 saydamlığı ayarlıyor */
    z-index: 1;
}

/* içerik üstte görünsün diye */
.hero-advanced > * {
    position: relative;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    color: rgb(255, 255, 255);
}

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

.hero-description {
    font-size: 1.0rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-primary-large:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-large {
    background: rgba(255, 255, 255, 0.1);

    /* Made outline button more visible by default */
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-large:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: red;
    color: white;
    padding: 1rem 0;
}

/* ---- Emergency Banner düzeltme ---- */

.emergency-content {
    display: flex;
    flex-direction: column;     /* ALT ALTA */
    align-items: center;        /* YATAY ORTA */
    justify-content: center;    /* DİKEY ORTA */
    text-align: center;         /* Yazı ortala */
    gap: 15px;                  /* Eleman arası boşluk */
    padding: 20px 0;
}

.emergency-text h3 {
    font-size: 1.4rem;
    margin: 0;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* MASAÜSTÜNDE tekrar yatay hizala istersen */
@media (min-width: 768px) {
    .emergency-content {
        flex-direction: row;     /* Masaüstünde yanyana */
        text-align: left;
    }
}


.emergency-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.emergency-text h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.emergency-text p {
    margin: 0;
    opacity: 0.9;
}

.emergency-btn {
    background: white;
    color: var(--danger);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-premium {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-premium {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.service-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    gap: 1rem;
}

/* ===== SERVICE ICON BADGES (PILL) ===== */
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;

    /* rounded-pill */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-height: 44px;
    min-width: 44px;
    box-shadow: var(--shadow-sm);
}

.service-icon i {
    color: white;
    font-size: 1.125rem;
}

.service-content .service-icon,
.testimonial-card .service-icon {
    margin: 0 auto 1rem;

    /* center within cards */
}

/* Link styles for Contact and About sections */
#contact-info a,
.about-content a {
    text-decoration: none;
    color: var(--primary-color);
}

#contact-info a:hover,
.about-content a:hover {
    color: var(--primary-dark);
}

/* ===== SEO CONTENT BOX ===== */
.seo-content {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.seo-content .content-box {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    margin-bottom: 1rem;
}

.seo-content p {
    color: var(--gray-700);
}

.seo-content ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--section-padding);
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===== ABOUT SECTION ===== */
.about-premium {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-badge {
    text-align: left;
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-item-large {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-badge-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.badge-item {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.about-stats-mini {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.mini-stat {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.mini-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.mini-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--secondary-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-content .section-badge {
    text-align: left;
}

.faq-content .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.faq-contact {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
}

.faq-contact h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.faq-contact p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.faq-list {
    space-y: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-600);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    overflow-x: hidden;

    /* Added overflow control to prevent horizontal scrolling */
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;

    /* Improved CTA section mobile layout */
    align-items: center;
}

.btn-primary-large,
.btn-outline-large {
    padding: 1rem 1.5rem;

    /* Improved CTA section mobile layout */
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #a8c0d8; /* Header ile aynı renk */
    color: #111; /* Yazılar gri ton olsun */
    padding: 3rem 0 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.15); /* ince koyu çizgi */
    text-align:center;
    padding-top:1rem;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar-custom {
        position: relative;
        padding: 0.75rem 0;

        /* Fixed mobile navbar layout and spacing */
        gap: 1rem;
    }

    .nav-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: white;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1100;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 1.1rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;

        /* Fixed mobile navbar layout and spacing */
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features .feature-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-step {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .phone-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .btn-primary-large,
    .btn-secondary-large,
    .btn-outline-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

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

    .phone-btn span {
        display: none;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40%,
    43% {
        transform: translateX(-50%) translateY(-10px);
    }

    70% {
        transform: translateX(-50%) translateY(-5px);
    }

    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.cities-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: center;
}

.cities-list li {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.cities-list li:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: translateY(-3px);
}
/* Dropdown Container */
.nav-menu li.dropdown {
    position: relative;
}

/* Dropdown İçeriği */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    min-width: 200px;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Menü içi linkler */
.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    white-space: nowrap;
}

/* Hover ile açılır */
.nav-menu li.dropdown:hover .dropdown-menu {
    display: block;
}

.menu-info {
    padding: 10px 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.menu-info .info-box {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}
.menu-info strong {
    color: #333;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}
/* Masaüstünde gizle */
.menu-info {
    display: none;
}

/* Mobilde göster (max 768px örnektir, istersen genişliği değiştirebilirim) */
@media (max-width: 768px) {
    .menu-info {
        display: block;
    }
}

/* MASAÜSTÜ (hover ile açılacak) */
@media (min-width: 769px) {
    .has-submenu {
        position: relative;
    }

    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 10px 15px;
        min-width: 200px;
        display: none;
        z-index: 9999;
        border: 1px solid #eee;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .has-submenu:hover .submenu {
        display: block;
    }
}

/* MOBİL (accordion için başlangıçta kapalı) */
@media (max-width: 768px) {
    .submenu {
        display: none !important;
        position: static; /* mobilde absolute olmasın */
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: none;
    }

    .submenu.open {
        display: block !important;
    }
}
/* Mobilde Kurumsal alt menü otomatik açık */
@media (max-width: 768px) {
    .open-mobile .submenu {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .hero-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-actions .btn-primary-large {
        margin: 0 auto;
        display: inline-flex;
    }
}
/* MOBİLDE FAQ HER ZAMAN AÇIK */
@media (max-width: 768px) {
    .faq-item {
        background: white;
    }

    .faq-item .faq-answer {
        display: block !important;
    }

    .faq-item .faq-question i {
        transform: rotate(45deg); /* ikon açık pozisyon */
    }
}
/* Masaüstünde gizle */
.call-now-bar {
    display: none;
}

/* Sadece mobilde göster (max-width: 768px) */
@media (max-width: 768px) {
    .call-now-bar {
        display: block;
    }
}
.turkiye-banner {
    width: 145%;
    text-align: center;
    margin: 40px 0;  /* Üst-alt boşluk */
}

.turkiye-banner img {
    max-width: 145%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.header-modern {
    background: #a8c8dd !important;
}
.footer,
.footer h3,
.footer p,
.footer a,
.footer li {
    color: #111 !important; /* koyu siyah */
}

.footer a:hover {
    color: #000 !important; /* hover daha koyu */
}
.footer a {
    position: relative;
    text-decoration: none;
}

.footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #111;
    transition: .25s;
}

.footer a:hover::after {
    width: 100%;
}
.footer a {
    font-weight: 400; /* normal */
    transition: font-weight .2s ease;
}

.footer a:hover {
    font-weight: 700; /* hover'da kalın */
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* Sadece gölge */
    transition: .25s ease-in-out;
    border: none !important;
    outline: none !important;
}

.whatsapp-float i {
    line-height: 0;  /* Alt çizgiyi tamamen yok eder */
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}
.turkiye-banner {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.responsive-map {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}



