/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary: #e0201b;
    --primary-dark: #b8140f;
    --accent: #ff7a00;
    --dark: #16161f;
    --whatsapp: #25D366;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #16161f;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SIDE FLOATING BUTTONS (SAĞ & SOL - SLIDE) ===== */
.side-buttons {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.side-buttons-left {
    left: 14px;
    animation: slideInLeft .8s ease both;
}
.side-buttons-right {
    right: 14px;
    animation: slideInRight .8s ease both;
}
.side-btn {
    display: flex;
    align-items: center;
    gap: 0;
    width: 54px;
    height: 54px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 22px rgba(0,0,0,.28);
    overflow: hidden;
    white-space: nowrap;
    transition: width .35s ease, box-shadow .3s, transform .3s;
    animation: sidePulse 2.2s ease-in-out infinite;
}
.side-btn i {
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.side-btn-label { opacity: 0; transition: opacity .3s; padding-right: 6px; }
.side-btn:hover {
    width: 168px;
    animation: none;
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.side-buttons-left .side-btn { flex-direction: row; }
.side-buttons-right .side-btn { flex-direction: row-reverse; }
.side-buttons-right .side-btn-label { padding-right: 0; padding-left: 6px; }
.side-btn:hover .side-btn-label { opacity: 1; }
.side-whatsapp { background: var(--whatsapp); }
.side-phone { background: var(--primary); }

@keyframes sidePulse {
    0%, 100% { box-shadow: 0 6px 22px rgba(0,0,0,.28); }
    50% { box-shadow: 0 6px 28px rgba(224,32,27,.5); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translate(-120%, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translate(120%, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
}
.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.mobile-bar-btn i { font-size: 18px; }
.mobile-bar-phone { background: var(--primary); }
.mobile-bar-whatsapp { background: var(--whatsapp); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--dark); color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: #ddd; transition: color .3s; }
.top-bar-left a:hover { color: #ff8a86; }
.top-bar-left i, .top-bar-right i { margin-right: 5px; }
.top-bar-right { color: #ffb3b0; font-weight: 600; }

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu > li > a {
    padding: 10px 14px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: background .3s, color .3s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-menu > li > a:hover { background: #fdecec; color: var(--primary); }
.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    transition: background .3s, color .3s;
}
.dropdown-menu li a:hover { background: #fdecec; color: var(--primary); }
.dropdown-mega { min-width: 280px; max-height: 400px; overflow-y: auto; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 28px; height: 3px; background: var(--dark); border-radius: 3px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px;
}
.hero-image { display: flex; justify-content: center; }
.hero-image img { width: 100%; height: auto; max-width: 460px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 19px; opacity: .92; margin-bottom: 28px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-features { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.hero-features span { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; }
.hero-features i { color: #ffd84d; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s;
    border: none;
    cursor: pointer;
}
.btn-primary { background: var(--whatsapp); color: #fff; }
.btn-primary:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.3); }
.btn-secondary { background: #fff; color: var(--primary); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-call { background: var(--primary); color: #fff; }
.btn-call:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-gray { background: #f7f8fb; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 15px; }
.section-title p { font-size: 18px; color: #666; max-width: 640px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.12); }
.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #666; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid #eef0f4;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.service-card-icon {
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #fff;
}
.service-card-body { padding: 25px; }
.service-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { font-size: 14px; color: #666; margin-bottom: 15px; }
.service-card-body a { color: var(--primary); font-weight: 700; font-size: 14px; }
.service-card-body a:hover { text-decoration: underline; }

/* ===== ILCE GRID ===== */
.ilce-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.ilce-card {
    background: #fff;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all .3s;
    font-weight: 600;
    font-size: 14px;
}
.ilce-card:hover { border-color: var(--primary); background: #fdecec; color: var(--primary); transform: translateY(-2px); }
.ilce-card i { display: block; margin-bottom: 8px; font-size: 20px; color: var(--primary); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.cta-section h2 { font-size: 34px; font-weight: 800; margin-bottom: 15px; }
.cta-section p { font-size: 18px; opacity: .92; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
}
.review-stars { color: #ffc107; margin-bottom: 15px; font-size: 18px; }
.review-text { font-size: 15px; color: #444; margin-bottom: 15px; font-style: italic; }
.review-author { font-weight: 700; color: var(--dark); }

/* ===== PRICING TABLE ===== */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    margin-bottom: 30px;
}
.pricing-table th {
    background: var(--primary);
    color: #fff;
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
}
.pricing-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #eee;
}
.pricing-table tr:nth-child(even) { background: #f7f8fb; }
.pricing-table tr:last-child td { border-bottom: none; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .3s;
}
.faq-question:hover { background: #f7f8fb; }
.faq-question i { transition: transform .3s; color: var(--primary); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}
.faq-answer-inner { padding: 0 25px 20px; color: #555; line-height: 1.8; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    transition: transform .3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-image {
    height: 190px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: rgba(255,255,255,.9);
}
.blog-card-body { padding: 25px; }
.blog-card-date { font-size: 13px; color: #999; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: #666; margin-bottom: 15px; }

/* ===== BLOG POST ===== */
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { font-size: 24px; font-weight: 700; margin: 35px 0 15px; color: var(--dark); }
.blog-content p { margin-bottom: 15px; color: #444; }
.blog-content ul { margin: 15px 0; padding-left: 20px; }
.blog-content ul li { margin-bottom: 8px; color: #444; list-style: disc; }
.blog-content strong { color: var(--dark); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}
.page-header h1 { font-size: 40px; font-weight: 800; margin-bottom: 15px; }
.page-header p { font-size: 18px; opacity: .92; max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 20px; font-size: 14px; opacity: .85; }
.breadcrumb a { color: #fff; opacity: .8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: .5; }

/* ===== MAP ===== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
    margin: 30px 0;
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* ===== CONTENT BOX ===== */
.content-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    margin-bottom: 30px;
}
.content-box h2 { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: var(--dark); }
.content-box p { color: #555; margin-bottom: 15px; }
.content-box ul li { list-style: disc; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.contact-info-card p { font-size: 14px; color: #666; }
.contact-info-card a { color: var(--primary); }

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
    background: var(--whatsapp);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 30px 0;
}
.whatsapp-cta h3 { font-size: 22px; margin-bottom: 10px; }
.whatsapp-cta p { margin-bottom: 15px; opacity: .95; }
.whatsapp-cta .btn-secondary { background: #fff; color: var(--whatsapp); }

/* ===== BRANDS ===== */
.brands-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-chip {
    background: #fff; border: 2px solid #eef0f4; border-radius: 50px;
    padding: 12px 26px; font-weight: 700; color: var(--dark); font-size: 15px;
    transition: all .3s;
}
.brand-chip:hover { border-color: var(--primary); color: var(--primary); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { text-align: center; padding: 20px; }
.step-num {
    width: 60px; height: 60px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: #666; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: #fff; font-size: 18px; margin-bottom: 20px; }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #aaa; transition: color .3s; }
.footer-col ul li a:hover { color: #ff8a86; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact i { color: var(--primary); width: 16px; margin-top: 4px; }
.footer-contact a { color: #ccc; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .3s;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #aaa; }
.footer-bottom-links a:hover { color: #fff; }

/* ===== ABOUT PAGE ===== */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 40px 0; }
.stat-card {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
}
.stat-number { font-size: 42px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: #666; margin-top: 5px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .ilce-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-content { justify-content: center; text-align: center; }
    .top-bar-right { display: none; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,.15);
        transition: right .3s;
        overflow-y: auto;
        align-items: stretch;
        z-index: 999;
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li > a { padding: 12px 0; border-bottom: 1px solid #eee; }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 15px;
        display: none;
    }
    .dropdown.active .dropdown-menu { display: block; }
    .nav-cta { text-align: center; margin-top: 15px; justify-content: center; }

    .hero { padding: 55px 0 50px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }

    .section { padding: 50px 0; }
    .section-title h2 { font-size: 28px; }

    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .ilce-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; }

    .page-header h1 { font-size: 28px; }
    .content-box { padding: 25px; }

    .cta-section h2 { font-size: 26px; }

    /* Side buttons -> hidden on mobile, mobile bar shown instead */
    .side-buttons { display: none; }
    .mobile-bar { display: flex; }
    main { padding-bottom: 60px; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .ilce-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}
