:root {
    --primary: #0066CC;
    --primary-dark: #0052A3;
    --secondary: #FF6B35;
    --accent: #00D9FF;
    --dark: #1A1A2E;
    --gray-dark: #2D3142;
    --gray: #4F5D75;
    --gray-light: #BFC0C0;
    --gray-lighter: #EEF0F2;
    --white: #FFFFFF;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.phone-float {
    bottom: 110px;  /* WhatsApp'ın üstünde */
    background: var(--primary);
    animation: pulse 2s infinite 0.5s;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 16px;
    color: var(--gray);
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}

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

.contact-item.whatsapp:hover {
    color: #25D366;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.working-hours {
    color: var(--gray-light);
    font-size: 13px;
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.logo-short {
    display: none;
}

.logo-text small {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.08);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 12px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-dark);
    border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.hero .btn-primary:hover {
    background: var(--gray-lighter);
}

.hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

/* Stats Section */
.stats-section {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-light);
    font-weight: 500;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(0, 102, 204, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--gray-lighter);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    gap: 12px;
}

/* Brand Logos */
.brands-section {
    background: var(--gray-lighter);
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    align-items: center;
}

.brand-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.brand-item h4 {
    font-size: 18px;
    color: var(--gray-dark);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo h3 {
    font-size: 20px;
    color: var(--white);
    margin: 0;
}

.footer-desc {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding: 16px 0;
}

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-light);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: var(--gray-light);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}





/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    font-size: 14px;
}

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

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--gray);
}

/* Districts & Neighborhoods */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.district-item {
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.district-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.district-item h3 {
    font-size: 20px;
    margin: 0;
    color: var(--dark);
}

.neighborhood-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.neighborhood-list li {
    background: var(--gray-lighter);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

.neighborhood-list a {
    color: var(--gray-dark);
    font-weight: 600;
}

.neighborhood-list li:hover {
    background: var(--primary);
}

.neighborhood-list li:hover a {
    color: var(--white);
}

/* Wizard Form */
.wizard-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--gray-lighter);
    z-index: 0;
}

.wizard-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wizard-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-lighter);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    transition: var(--transition);
}

.wizard-step.active .wizard-step-number {
    background: var(--primary);
    color: var(--white);
}

.wizard-step.completed .wizard-step-number {
    background: var(--success);
    color: var(--white);
}

.wizard-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

.wizard-step.active .wizard-step-label {
    color: var(--primary);
}

.wizard-content {
    min-height: 300px;
}

.wizard-page {
    display: none;
}

.wizard-page.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.device-option {
    position: relative;
}

.device-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.device-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--gray-lighter);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.device-option input[type="radio"]:checked + label {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
}

.device-option label svg {
    width: 48px;
    height: 48px;
}

.device-option input[type="radio"]:checked + label svg {
    stroke: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 16px 0;
    }
    
    .logo-full {
        display: none;
    }
    
    .logo-short {
        display: block;
    }
    
    .logo svg {
        width: 36px;
        height: 36px;
    }
    
    .logo-text strong {
        font-size: 18px;
    }
    
    .logo-text small {
        font-size: 11px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 24px 24px;
        overflow-y: auto;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown > a svg {
        transition: var(--transition);
    }
    
    .dropdown.active > a svg {
        transform: rotate(180deg);
    }
    
    .header-actions {
        display: none;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-section {
        padding: 40px 0;
        margin-top: -30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }
    
    .footer-logo svg {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo h3 {
        font-size: 18px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .wizard-container {
        padding: 24px 16px;
        margin: 0 -8px;
    }
    
    .wizard-steps {
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .wizard-step {
        min-width: 80px;
    }
    
    .wizard-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .wizard-step-label {
        font-size: 12px;
        text-align: center;
    }
    
    .wizard-steps::before {
        display: none;
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .district-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .working-hours {
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-actions {
        flex-direction: column;
    }
    
    .device-grid {
        grid-template-columns: 1fr;
    }
}
/* FLOAT BUTTONS FIX - EN ALTA EKLE */
.phone-float {
    position: fixed !important;
    right: 30px !important;
    left: auto !important;
    bottom: 110px !important;
    width: 64px !important;
    height: 64px !important;
    background: #0066CC !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.4) !important;
    z-index: 9999 !important;
}

.whatsapp-float {
    position: fixed !important;
    right: 30px !important;
    left: auto !important;
    bottom: 30px !important;
    width: 64px !important;
    height: 64px !important;
    background: #25D366 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
}

.phone-float svg {
    stroke: white !important;
}


/* ============================================
   SÜPER ANİMASYONLU BUTONLAR - HEMEN ARA
   ============================================ */

/* 1. Rainbow Glow (Gökkuşağı Parlama) */
@keyframes rainbowGlow {
    0% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.6), 0 0 30px rgba(0, 102, 204, 0.4);
    }
    25% {
        box-shadow: 0 4px 25px rgba(0, 150, 255, 0.7), 0 0 35px rgba(0, 150, 255, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 200, 255, 0.8), 0 0 40px rgba(0, 200, 255, 0.6);
    }
    75% {
        box-shadow: 0 4px 25px rgba(0, 150, 255, 0.7), 0 0 35px rgba(0, 150, 255, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.6), 0 0 30px rgba(0, 102, 204, 0.4);
    }
}

/* 2. Mega Pulse (Büyük Nabız) */
@keyframes megaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* 3. Shimmer (Işıltı Efekti) */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* 4. Bounce (Zıplama) */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* 5. Shake (Güçlü Sallama) */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-4px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(4px);
    }
}

/* 6. Jello (Jöle Efekti) */
@keyframes jello {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.05, 0.95, 1);
    }
    40% {
        transform: scale3d(0.95, 1.05, 1);
    }
    50% {
        transform: scale3d(1.02, 0.98, 1);
    }
    65% {
        transform: scale3d(0.98, 1.02, 1);
    }
    75% {
        transform: scale3d(1.01, 0.99, 1);
    }
}

/* ============================================
   ANA SAYFA BUTONLARI (Normal)
   ============================================ */
.hero-actions .btn-primary {
    animation: rainbowGlow 2.5s ease-in-out infinite !important;
    transition: all 0.3s ease !important;
}

.hero-actions .btn-primary:hover {
    animation: bounce 0.6s ease-in-out !important;
}

/* ============================================
   SAYFA BUTONLARI (SÜPER SEXY!)
   ============================================ */
.page-header .hero-actions .btn-primary {
    position: relative !important;
    background: linear-gradient(90deg, #0066CC 0%, #0099FF 50%, #0066CC 100%) !important;
    background-size: 200% 100% !important;
    animation: 
        rainbowGlow 2s ease-in-out infinite,
        megaPulse 2.5s ease-in-out infinite,
        shimmer 3s linear infinite !important;
    transition: all 0.4s ease !important;
    font-weight: 600 !important;
}

/* Mouse Gelince - JELLO EFEKTİ */
.page-header .hero-actions .btn-primary:hover {
    animation: jello 0.8s ease-in-out, rainbowGlow 1s ease-in-out infinite !important;
    transform: scale(1.1) !important;
    background: linear-gradient(90deg, #0099FF 0%, #00CCFF 50%, #0099FF 100%) !important;
    box-shadow: 0 8px 40px rgba(0, 150, 255, 1), 0 0 50px rgba(0, 200, 255, 0.8) !important;
}

/* Buton İçindeki SVG İkonuna Animasyon */
.page-header .hero-actions .btn-primary svg {
    animation: bounce 2s ease-in-out infinite !important;
}

.page-header .hero-actions .btn-primary:hover svg {
    animation: shake 0.5s ease-in-out !important;
}

/* WhatsApp Butonu da Canlanır */
.page-header .hero-actions .btn-secondary {
    animation: megaPulse 3s ease-in-out infinite !important;
    transition: all 0.3s ease !important;
}

.page-header .hero-actions .btn-secondary:hover {
    animation: bounce 0.6s ease-in-out !important;
    transform: scale(1.05) !important;
}

/* ============================================
   EK SEXY EFEKTİ - PULSE HALKASI
   ============================================ */
@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 102, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

.page-header .hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    animation: pulseRing 2s ease-out infinite;
    z-index: -1;
}

/* Mobil için Animasyon Optimizasyonu */
@media (max-width: 768px) {
    .page-header .hero-actions .btn-primary {
        animation: 
            rainbowGlow 2s ease-in-out infinite,
            megaPulse 3s ease-in-out infinite !important;
    }
}