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

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-darker: #0369a1;
    --dark: #1e293b;
    --dark-bg: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: var(--primary);
}

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

.top-bar-right a {
    color: rgba(255,255,255,0.85);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 14px;
}

.top-bar-right a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== HEADER / NAVBAR ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a {
    padding: 8px 16px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: var(--primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text);
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-servis {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-servis:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}

.btn-servis i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

/* ===== HERO / PAGE BANNER ===== */
.hero-banner {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, rgba(14,165,233,0.9) 0%, rgba(3,105,161,0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
    opacity: 0.5;
}

.hero-banner .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

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

.breadcrumb i {
    font-size: 10px;
}

.hero-banner h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
}

/* ===== HOME HERO ===== */
.home-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(14,165,233,0.92) 0%, rgba(3,105,161,0.95) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero-content {
    max-width: 650px;
    color: var(--white);
}

.home-hero-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.home-hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.home-hero p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}

.home-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* Feature Badges */
.home-features-bar {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

.feature-badge i {
    font-size: 20px;
    color: var(--white);
}

.feature-badge strong {
    display: block;
    font-size: 14px;
}

.feature-badge span {
    font-size: 12px;
    opacity: 0.8;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 70px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== INFO BOXES (Geniş Hizmet Ağı, Aynı Gün Servis) ===== */
.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.info-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.info-box h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
}

.info-box p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== ABOUT / INTRO SECTION ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.intro-images img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.intro-text h2 {
    font-size: 30px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.intro-check-list {
    margin-top: 16px;
}

.intro-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.intro-check-list li i {
    color: var(--primary);
    margin-top: 3px;
}

/* Stats badges */
.stats-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.stat-badge {
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
}

.stat-badge .number {
    font-size: 13px;
    font-weight: 700;
    display: block;
}

.stat-badge .label {
    font-size: 11px;
    opacity: 0.85;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card-icon {
    padding: 30px 20px 16px;
}

.service-card-icon img {
    height: 80px;
    margin: 0 auto;
    object-fit: contain;
}

.service-card-icon i {
    font-size: 48px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin: 8px 20px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 16px;
}

.service-card .btn-more {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.service-card .btn-more:hover {
    background: var(--primary-dark);
}

/* ===== STEPS SECTION ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--light-bg);
    padding: 50px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.stat-item .stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== PRICE INFO SECTION ===== */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.price-info h2 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
}

.price-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.price-features li i {
    color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.cta-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}

.cta-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-intro-left h2 {
    font-size: 26px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-content h3 i {
    color: var(--primary);
}

.service-detail-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.check-list {
    margin-bottom: 20px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* Service Image Grid */
.service-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.service-images-grid img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 220px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-images-grid img:hover {
    transform: scale(1.03);
}

/* Service Hover Cards */
.service-hover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-hover-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.service-hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-hover-overlay h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.service-hover-overlay p {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 30px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Mission / Vision */
.mv-section {
    background: var(--light-bg);
    padding: 70px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mv-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.mv-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-section h2 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-info-section > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Form */
.form-section h2 {
    font-size: 24px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}

/* ===== LEGAL PAGES (KVKK, Gizlilik) ===== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 30px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul {
    margin: 16px 0;
}

.legal-content ul li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 16px;
}

.legal-content ul li strong {
    color: var(--dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--primary);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-text span {
    color: rgba(255,255,255,0.6);
}

.footer-company-info {
    font-size: 13px;
    line-height: 1.7;
}

.footer-company-info p {
    margin-bottom: 6px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-item h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 4px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-menu li a::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}

/* ===== FLOATING WHATSAPP & PHONE ===== */
.float-phone {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.float-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25d366;
    color: var(--white);
    font-size: 20px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.float-phone a:hover {
    width: 50px;
}

.float-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--white);
    border-radius: 50%;
    font-size: 26px;
    transition: all 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn-phone {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}

.float-btn-whatsapp {
    background: #25d366;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    font-size: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .intro-grid,
    .about-grid,
    .mv-grid,
    .contact-grid,
    .price-grid,
    .cta-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        width: 100%;
        text-align: left;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 16px;
        display: none;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .hero-banner h1 {
        font-size: 28px;
    }
    
    .home-hero h1 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .services-grid,
    .service-hover-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .service-intro {
        grid-template-columns: 1fr;
    }
    
    .service-images-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-servis span {
        display: none;
    }
    
    .home-features-bar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .service-images-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .stats-badges {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Neden Biz section */
.neden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.neden-content h2 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 14px;
}

.neden-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.neden-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text);
}

.neden-list li i {
    color: var(--primary);
    margin-top: 3px;
}

.neden-list li strong {
    color: var(--dark);
}

.neden-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.neden-btn {
    margin-top: 20px;
}

/* Accessibility icon box */
.accessibility-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.accessibility-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}
