/* ==========================================================================
   İdezega - Temizlik, Tadilat & Montaj Hizmetleri
   Ferah & Güven Veren Tasarım Sistemi (Açık Beton Grisi & Zümrüt Yeşili)
   ========================================================================== */

:root {
    /* FERAH VE GÜVEN VEREN AÇIK TEMA */
    --bg-body: #F3F4F6;        /* Ferah ve temiz Açık Beton Grisi */
    --bg-card: #FFFFFF;        /* Saf Beyaz kartlar */
    --bg-card-hover: #FFFFFF;
    --bg-footer: #1E293B;      /* Kontrast sağlayan şık Koyu Asfalt / Slate footer */
    --text-main: #222831;      /* Güven veren Koyu Asfalt Grisi başlıklar ve ana metinler */
    --text-muted: #4B5563;    /* Okunabilir Koyu Gri açıklama metinleri */
    --border: #E5E7EB;        /* Temiz açık gri kenarlık */
    --border-light: rgba(0, 0, 0, 0.06);

    /* Marka Renkleri (İdezega Zümrüt Yeşili - Hijyen, Ferahlık ve Çözüm) */
    --primary: #10B981;        /* Zümrüt Yeşili */
    --primary-hover: #059669;
    --primary-light: #34D399;
    --primary-glow: rgba(16, 185, 129, 0.2);
    
    /* Hizmet Vurgu Renkleri */
    --accent-clean: #10B981;   /* Temizlik: Zümrüt Yeşili */
    --accent-renov: #F59E0B;   /* Tadilat: Kehribar */
    --accent-mount: #06B6D4;   /* Montaj: Teal */

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 15px 35px -5px rgba(0, 0, 0, 0.07);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --radius: 16px;
}

/* Reset & Genel Kurallar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Üst Bildirim Şeridi */
.top-bar {
    background: linear-gradient(90deg, #059669 0%, #10b981 50%, #0d9488 100%);
    color: #ffffff;
    text-align: center;
    padding: 9px 15px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

/* Header & Nav */
header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: background 0.3s, border-color 0.3s;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    color: #222831;
    flex-shrink: 0;
}

.brand img.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.brand span {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 0.94rem;
    font-weight: 600;
    color: #4B5563;
    padding: 6px 2px;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-header-quote {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
}

.btn-header-quote:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: #ffffff;
    border: 1px solid var(--border);
    color: #222831;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

/* Hero Bölümü */
.hero {
    padding: 70px 20px 50px;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: #059669;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #222831;
}

.hero h1 span.highlight {
    color: #10B981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #4B5563;
    font-size: 1.12rem;
    max-width: 760px;
    margin: 0 auto 35px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid var(--border);
    color: #222831;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Slider */
.slider-container {
    max-width: 1100px;
    margin: 35px auto 25px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    height: 440px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px 35px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.1) 90%, transparent 100%);
    text-align: left;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(16, 185, 129, 0.45);
    color: #34d399;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.slide-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #ffffff;
}

.slide-overlay p {
    color: #e2e8f0;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    color: #222831;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 18px; }
.next-btn { right: 18px; }

.slider-dots {
    position: absolute;
    bottom: 18px;
    right: 35px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* Grid & Konteyner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #222831;
}

.section-title p {
    color: #4B5563;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

/* Hizmet Kartları (Açık Beyaz Kartlar) */
.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--primary));
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-accent, var(--primary));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card .icon-box {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--card-accent, var(--primary));
    margin-bottom: 22px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #222831;
    font-weight: 700;
}

.service-card p {
    color: #4B5563;
    font-size: 0.95rem;
    margin-bottom: 22px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-card ul.feature-list {
    margin-bottom: 25px;
}

.service-card ul.feature-list li {
    font-size: 0.9rem;
    color: #222831;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.service-card ul.feature-list li i {
    color: var(--card-accent, var(--primary));
    font-size: 0.85rem;
}

.service-card .card-link {
    color: var(--card-accent, var(--primary));
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* İnteraktif Fiyat Hesaplama Widget'ı */
.calc-section {
    background: #FFFFFF;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 45px 40px;
    margin: 50px 0;
    box-shadow: var(--shadow-card);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222831;
}

.form-control {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: #222831;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
}

.calc-result-box {
    background: #F8FAFC;
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
}

.calc-result-box .est-title {
    font-size: 0.92rem;
    color: #4B5563;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.calc-result-box .price-display {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.calc-result-box p.note {
    font-size: 0.85rem;
    color: #4B5563;
    margin-bottom: 22px;
}

/* Neden İdezega Bölümü - 3 Maddelik Şık Güven Kartları */
.why-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.why-card-box {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 28px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.why-card-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07);
}

.why-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.why-card-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222831;
}

.why-card-box p {
    font-size: 0.93rem;
    color: #4B5563;
    line-height: 1.65;
}

/* Subpage calc-box */
.calc-box {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-card);
    margin: 40px 0;
}

.price-output {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
footer {
    background: #1E293B !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 60px 0 30px;
    color: #94A3B8 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    color: #F8FAFC !important;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: #CBD5E1 !important;
}

.footer-col a:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

.footer-col p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CBD5E1 !important;
}

.footer-col .brand {
    color: #FFFFFF !important;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #94A3B8 !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* Mobil & Tablet Uyumluluk */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        padding: 18px 24px;
        display: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    nav.mobile-active {
        display: block;
        animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    nav a {
        display: block;
        width: 100%;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 0.98rem;
    }
    nav a:hover,
    nav a.active {
        background: rgba(16, 185, 129, 0.1);
    }
    nav a.active::after {
        display: none;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 650px) {
    .header-inner {
        padding: 10px 15px;
    }
    .brand {
        font-size: 1.25rem;
    }
    .brand img.brand-logo {
        height: 32px;
    }
    .btn-header-quote {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .slide {
        height: 320px;
    }
    .slide-overlay {
        padding: 30px 20px 25px;
    }
    .slide-badge {
        font-size: 0.72rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    .slide-overlay h3 {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }
    .slide-overlay p {
        font-size: 0.88rem;
        line-height: 1.45;
    }
    .slider-dots {
        bottom: 10px;
        right: 20px;
    }
    .calc-section {
        padding: 30px 20px;
    }
}

/* Info Alert Note (Minimum Servis Bedeli Koruması) */
.info-alert-note {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #222831;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.info-alert-note i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.calc-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #222831;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    background: #F9FAFB;
    border: 1px solid var(--border);
    transition: background 0.2s;
}

.calc-checkbox-wrap:hover {
    background: #F3F4F6;
}

.calc-checkbox-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #10b981;
    cursor: pointer;
}


/* Moving Package Banner */
.moving-package-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 18px;
    padding: 35px 30px;
    color: #ffffff;
    margin: 35px 0;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.moving-package-banner h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.moving-package-banner p {
    color: #e2e8f0;
    font-size: 0.98rem;
    margin: 0;
    max-width: 680px;
    line-height: 1.6;
}

.btn-banner-glow {
    background: #ffffff;
    color: #047857;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.btn-banner-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: #064e3b;
}

/* Handyman Cards */
.handyman-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 25px;
}

.handyman-card {
    background: #ffffff;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 25px 22px;
    position: relative;
    transition: all 0.3s ease;
}

.handyman-card:hover {
    border-color: #f59e0b;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15);
}

.handyman-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.handyman-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f59e0b;
    margin: 12px 0;
}
