:root {
    --primary: #2d3436;        
    --primary-dark: #1e272e;   
    --accent: #00cec9;         
    --accent-light: #81ecec;   
    --water: #0984e3;          
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #dfe6e9;          
    --lighter: #f5f6fa;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45, 52, 54, 0.15);
    --shadow-lg: 0 10px 40px rgba(45, 52, 54, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* SVG İkonların temel stili */
.icon-svg {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    width: 24px;
    height: 24px;
}

.icon-svg.small {
    width: 16px;
    height: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 201, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-weight: bold;
    font-size: 18px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(45, 52, 54, 0.1);
    transition: var(--transition);
    border-bottom: 2px solid var(--accent);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo İkonu - Görseldeki gibi koyu kare içinde turkuaz ikon */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

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

.logo svg {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 12px;
    padding: 10px;
    color: var(--accent);
}

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

.logo-main {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 10px;
    color: var(--accent);
    font-weight: 600;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 52, 54, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(45, 52, 54, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid var(--accent);
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-header span {
    font-weight: 700;
}

.close-menu {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.close-menu:hover {
    background: var(--accent);
    color: var(--white);
}

.close-menu svg {
    width: 20px;
    height: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    flex: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--light);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Mobil menü ikonları - Koyu kare içinde turkuaz */
.nav-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.nav-icon svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--light);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.4);
}

.mobile-call-btn svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding-top: 90px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 50%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 206, 201, 0.3);
}

.hero-badge svg {
    color: var(--accent);
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 201, 0.3);
}

/* Stat ikonları - Koyu arka plan, turkuaz ikon */
.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

/* Feature ikonları - Koyu arka plan, turkuaz ikon */
.feat-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.feat-icon svg {
    width: 18px;
    height: 18px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid var(--accent);
}

.image-container img:hover {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text);
}

/* Floating badge ikonları - Koyu arka plan, turkuaz ikon */
.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
}

.floating-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.floating-badge span {
    color: var(--text-light);
    font-size: 11px;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    right: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Emergency Bar */
.emergency-bar {
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
    padding: 20px 0;
    color: var(--white);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Emergency ikonu - Koyu arka plan, turkuaz ikon */
.emergency-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

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

.emergency-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.emergency-text p {
    font-size: 14px;
    opacity: 0.9;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.emergency-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.emergency-phone svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-light);
    font-size: 15px;
}

/* Services Section - Görseldeki gibi ikonlar */
.services {
    padding: 80px 0;
    background: var(--lighter);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 25px;
}

/* SERVİS İKONU - Görseldeki gibi! Koyu kare içinde turkuaz ikon */
.service-icon {
    width: 55px;
    height: 55px;
    background: var(--primary); /* Koyu arka plan */
    border-radius: 12px; /* Yuvarlatılmış köşeler */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent); /* Turkuaz ikon rengi */
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card > .service-content > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.service-more svg {
    transition: var(--transition);
}

.service-card:hover .service-more svg {
    transform: translateX(5px);
}

/* Fixed Bottom Bar - Görseldeki gibi */
.fixed-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 20px;
    box-shadow: 0 -4px 20px rgba(45, 52, 54, 0.15);
    z-index: 999;
    justify-content: center;
    gap: 15px;
    border-top: 2px solid var(--accent);
}

.fixed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    flex: 1;
    max-width: 160px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.fixed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.fixed-btn svg {
    width: 20px;
    height: 20px;
}

.wa-text {
    font-weight: bold;
    font-size: 16px;
}

.fixed-call {
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
}

.fixed-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .fixed-bottom {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}