/* Custom Properties & Premium Theme / Dark Mode Variables */
:root {
    --primary-color: #FF6B00;
    /* Enerjik, ısınmayı anımsatan turuncu */
    --primary-dark: #cc5600;
    --text-color: #1A1A24;
    --text-light: #5A5A6A;
    --bg-color: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f1c40f;
    --font-main: 'Outfit', sans-serif;
    --radius: 16px;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --text-color: #F0F0F5;
    --text-light: #A0A0B0;
    --bg-color: #0F0F16;
    --glass-bg: rgba(20, 20, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition), color var(--transition);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover~.cursor-outline,
body.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 0, 0.1);
}

/* Glassmorphism Utilities */
.glass-panel,
.glass-card,
.glass-nav,
.glass-bg {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    /* In hero */
    border: 2px solid white;
}

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

[data-theme="dark"] .btn-secondary {
    color: white;
    border-color: white;
}

[data-theme="dark"] .btn-secondary:hover {
    background: white;
    color: black;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
    transition: top 0.3s;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

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

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

.theme-toggle,
.lang-select {
    background: rgba(150, 150, 150, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.theme-toggle:hover,
.lang-select:hover {
    background: var(--primary-color);
    color: white;
}

.lang-select {
    border-radius: 20px;
    width: auto;
    font-size: 0.9rem;
    padding: 5px 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu-content a {
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 800;
}

.close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 22, 0.8) 0%, rgba(15, 15, 22, 0.4) 100%),
        url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1920&q=80') center/cover;
    z-index: -1;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    padding: 50px;
    margin-top: 50px;
}

.badge {
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #FF6B00, #FFB800);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding-top: 0;
}

.stat-item {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* HERO ACTION BAĞLANTI & MOBİL DÜZENLEMELERİ */
.hero-action-btn:hover {
    transform: translateX(0) scale(1.03) !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 1)) !important;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 900px) {
    .hidden-mobile { display: none !important; }
    .hero-container {
        flex-direction: column !important;
        padding-top: 80px !important;
        gap: 20px !important;
    }
    .hero-content {
        padding-right: 0 !important;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    .hero-stats {
        justify-content: center !important;
        margin-bottom: 20px !important;
    }
    .hero-action-btn {
        transform: none !important;
        width: 100%;
        padding: 15px 20px !important;
    }
    .hero-action-btn h3 {
        font-size: 1.2rem !important;
    }
    .btn-call {
        padding: 8px 12px !important;
        border-radius: 8px !important;
        font-size: 0.9rem !important;
    }
    .logo span {
        font-size: 1.2rem !important;
    }
}

/* Marquee */
.marquee-container {
    background: var(--primary-color);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

.marquee span {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 40px;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Countdown */
.countdown-section {
    padding: 60px 0;
}

.countdown-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
}

.countdown-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.time-block span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.time-block small {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

/* Section Spacing */
section {
    padding: 100px 0;
}

/* Ariza Bulucu */
.search-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group select,
.input-group input {
    flex: 1;
    padding: 15px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: rgba(150, 150, 150, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-main);
    outline: none;
}

.input-group select {
    flex: 0.5;
}

.result-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--success);
}

.result-box.error {
    background: rgba(231, 76, 60, 0.1);
    border-color: var(--danger);
}

.hidden {
    display: none !important;
}

/* Fiyat Hesaplayici -> Premium Pricing Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.pricing-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.pricing-features li i {
    color: var(--success);
    margin-top: 5px;
}

.pricing-features li.disabled {
    color: var(--text-light);
    opacity: 0.6;
}

.pricing-features li.disabled i {
    color: var(--danger);
}

/* Service Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.process-step {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.process-step:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 900;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Premium Feature Grid (Replaced Check-box) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.stat-box {
    padding: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box p {
    font-weight: 600;
    color: var(--text-light);
}

/* Testimonials */
.testimo-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar structure for aesthetics */
.testimo-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimo-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimo-card {
    min-width: 300px;
    scroll-snap-align: start;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.stars {
    color: var(--warning);
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
    object-fit: cover;
}

/* Base Form Input Standard */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--glass-border);
    background: rgba(150, 150, 150, 0.1);
    color: var(--text-color);
    border-radius: var(--radius);
    outline: none;
    font-family: var(--font-main);
}

.appointment-form {
    max-width: 600px;
    margin: 0 auto;
}

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

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    max-width: 400px;
    text-align: center;
    padding: 40px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-popup.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
}

/* Footer Element */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-item h3 {
    margin-bottom: 20px;
}

.footer-item ul {
    list-style: none;
}

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

.footer-item ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-item ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Utility Animations */
.reveal {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 107, 0, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#preloader.fade-out {
    opacity: 0;
}

/* Responsive Overrides */
@media screen and (max-width: 900px) {
    .hero {
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .nav-links, .nav-actions .btn-primary {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .feature-grid, .pricing-grid, .process-timeline, .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .input-group {
        flex-direction: column;
    }
    .feature-grid, .pricing-grid, .process-timeline, .stats .container, .footer-content {
        grid-template-columns: 1fr;
    }
    .countdown-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.testimo-card {
    min-width: 350px;
    scroll-snap-align: start;
    padding: 30px;
}

.testimo-card .stars {
    color: var(--warning);
    margin-bottom: 15px;
}

.testimo-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimo-card h4 {
    color: var(--primary-color);
}

/* Appointment Form */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.appointment-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    margin-top: 30px;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 30px;
}

.appointment-form {
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(150, 150, 150, 0.05);
    color: var(--text-color);
    font-family: var(--font-main);
}

.appointment-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(150, 150, 150, 0.05);
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: var(--font-main);
    resize: vertical;
}

/* FAQ Accordion */
.accordion {
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--glass-border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 0 25px 0;
    color: var(--text-light);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    margin-top: 50px;
}

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

.footer-grid h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(150, 150, 150, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
    font-family: var(--font-main);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

.mobile-call-float {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(150, 150, 150, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--primary-color);
    animation: loadBar 1s inset infinite;
}

@keyframes loadBar {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: var(--bg-color);
    padding: 50px;
    text-align: center;
    max-width: 500px;
    position: relative;
    border: 2px solid var(--primary-color);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
}

.exit-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Push Notification Mock Popup */
.push-mock {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 12px;
    z-index: 9990;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.push-mock.show {
    transform: translateX(-50%) translateY(0);
}

.push-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.push-content i {
    font-size: 2rem;
    color: var(--primary-color);
}

.push-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.push-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.push-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: bold;
}

.btn-primary-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {

    .pricing-grid,
    .appointment-grid,
    .feature-grid,
    .process-timeline,
    .stats .container {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
        border-width: 1px;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    /* AI-1: Gemini Assistant Styles */
    .gemini-assistant-container {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .gemini-chat-window {
        width: 320px;
        height: 400px;
        background: rgba(10, 10, 10, 0.95);
        border: 1px solid rgba(59, 130, 246, 0.4);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform: scale(0);
        transform-origin: bottom left;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gemini-chat-window.active {
        transform: scale(1);
    }

    .gemini-header {
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
    }

    .gemini-body {
        flex: 1;
        padding: 15px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .gemini-msg {
        padding: 10px 15px;
        border-radius: 12px;
        font-size: 0.9rem;
        max-width: 85%;
        line-height: 1.4;
    }

    .gemini-msg.bot {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-color);
        align-self: flex-start;
        border-bottom-left-radius: 0;
    }

    .gemini-msg.user {
        background: #3b82f6;
        color: white;
        align-self: flex-end;
        border-bottom-right-radius: 0;
    }

    .gemini-input-area {
        padding: 15px;
        border-top: 1px solid var(--glass-border);
        display: flex;
        gap: 10px;
    }

    .gemini-input-area input {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        padding: 10px;
        color: var(--text-color);
    }

    .gemini-fab {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: white;
        font-size: 1.5rem;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
        transition: transform 0.3s;
    }

    .gemini-fab:hover {
        transform: scale(1.1);
    }

    .gemini-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .countdown-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-call-float {
        display: inline-flex;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .ba-slider {
        height: 250px;
    }

    .ba-resize img {
        width: calc(100vw - 40px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .time-block span {
        font-size: 1.5rem;
    }

    .input-group {
        flex-direction: column;
    }
}
/* --- F13.1: Embedded Admin Panel (Hidden) --- */
.admin-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 10000; display: flex;
    justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.admin-modal-overlay.active { opacity: 1; visibility: visible; }
.admin-modal-content {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    padding: 30px; border-radius: 12px;
    width: 90%; max-width: 400px; text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.admin-modal-overlay.active .admin-modal-content { transform: translateY(0); }
.admin-table {
    width: 100%; min-width: 600px; border-collapse: collapse; background: rgba(255, 255, 255, 0.9); border-radius: 8px; overflow: hidden;
}
.admin-table th, .admin-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.05); }
.admin-table th { background: rgba(255, 107, 0, 0.1); color: var(--primary-color); font-weight: 600; }
.table-responsive { overflow-x: auto; margin-top: 20px; border-radius: 8px; box-shadow: inset 0 0 10px rgba(0,0,0,0.1); }

/* ========================================
   V3 NEW COMPONENTS
   ======================================== */

/* Live Status Bar */
.live-status-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10001;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1500 100%);
    color: white;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,107,0,0.3);
}
.live-dot { width:8px; height:8px; border-radius:50%; background:#4CAF50; flex-shrink:0; }
.live-status-cta { margin-left:auto; color:var(--primary-color); font-weight:600; text-decoration:none; }
.live-status-cta:hover { text-decoration:underline; }

/* offset nav for status bar */
.navbar { top: 35px !important; }
.hero { padding-top: 140px !important; }

/* Hero Trust Mini */
.trust-mini { display:flex; align-items:center; gap:6px; font-size:0.85rem; color:rgba(255,255,255,0.85); }

/* Hero scroll indicator */
.hero-scroll-indicator {
    position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
    color:rgba(255,255,255,0.6); font-size:1.5rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* Hero container for left alignment */
.hero-container { height: 100%; display:flex; align-items:center; }
.hero-content { max-width: 600px; }

/* Trust Strip */
.trust-strip { padding: 30px 0; background: var(--glass-bg); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.trust-card {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: var(--text-color);
}
.trust-card i { font-size: 1.5rem; color: var(--primary-color); flex-shrink:0; }
.trust-card strong { display:block; font-size:0.9rem; }
.trust-card span { color: var(--text-light); font-size:0.8rem; }

/* ARIZA BULUCU */
.ariza-section { padding: 80px 0; }
.ariza-tabs { padding: 0; overflow: hidden; }
.tab-nav { display: flex; background: rgba(0,0,0,0.05); border-bottom: 1px solid var(--glass-border); }
.tab-btn {
    flex: 1; padding: 16px 20px; border: none; background: none;
    cursor: pointer; font-family: inherit; font-size: 0.95rem;
    color: var(--text-light); transition: var(--transition); font-weight: 500;
    border-bottom: 3px solid transparent;
}
.tab-btn.active { color: var(--primary-color); border-bottom-color: var(--primary-color); background: rgba(255,107,0,0.05); }
.tab-content { display: none; padding: 25px; }
.tab-content.active { display: block; }
.ariza-form { display: flex; gap: 12px; flex-wrap: wrap; }
.ariza-input {
    flex: 1; min-width: 200px; padding: 12px 16px;
    border: 1px solid var(--glass-border); border-radius: 8px;
    background: rgba(255,255,255,0.7); font-family: inherit; font-size: 0.95rem;
    color: var(--text-color);
}
.belirti-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.belirti-card {
    padding: 15px; border: 1px solid var(--glass-border); border-radius: 8px;
    cursor: pointer; text-align: center; font-size: 0.9rem;
    transition: var(--transition); background: var(--glass-bg);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.belirti-card i { font-size: 1.5rem; color: var(--primary-color); }
.belirti-card:hover { background: rgba(255,107,0,0.1); border-color: var(--primary-color); transform: translateY(-2px); }
.result-box { padding: 15px; border-radius: 8px; background: rgba(76,175,80,0.1); border: 1px solid #4CAF50; margin-top: 15px; }
.result-box.hidden { display: none; }

/* AI Chat in Tabs */
.ai-chat-area { border: 1px solid var(--glass-border); border-radius: 10px; overflow: hidden; }
.ai-messages { height: 200px; overflow-y: auto; padding: 15px; display: flex; flex-direction: column; gap: 10px; }
.ai-msg { padding: 10px 14px; border-radius: 12px; max-width: 85%; font-size: 0.9rem; line-height: 1.5; }
.ai-msg.bot { background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2); align-self: flex-start; }
.ai-msg.user { background: var(--primary-color); color: white; align-self: flex-end; border-radius: 12px 12px 0 12px; }
.ai-msg.loading { color: var(--text-light); font-style: italic; }
.ai-input-row { display: flex; border-top: 1px solid var(--glass-border); }
.ai-input-row input { flex: 1; padding: 12px 15px; border: none; background: transparent; font-family: inherit; color: var(--text-color); font-size: 0.9rem; }
.ai-input-row button { padding: 12px 18px; background: var(--primary-color); color: white; border: none; cursor: pointer; }

/* PACKAGE RECOMMENDER */
.rec-btn {
    padding: 8px 14px; border-radius: 20px; border: 1px solid var(--glass-border);
    cursor: pointer; font-size: 0.85rem; background: var(--glass-bg); color: var(--text-color);
    transition: var(--transition); font-family: inherit;
}
.rec-btn:hover { background: rgba(255,107,0,0.1); border-color: var(--primary-color); color: var(--primary-color); }
.pkg-guarantee { font-size: 0.8rem; color: #4CAF50; margin: 12px 0; padding: 6px 10px; background: rgba(76,175,80,0.08); border-radius: 6px; display: flex; align-items: center; gap: 6px; }

/* MAP SECTION */
.map-section { padding: 80px 0; }
.map-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; margin-top: 30px; }
.map-card {
    padding: 20px 15px; text-align: center; border-radius: 10px;
    transition: var(--transition); cursor: default;
}
.map-card i { font-size: 1.5rem; color: var(--text-light); margin-bottom: 8px; display: block; }
.map-card h4 { margin: 0 0 8px; font-size: 1rem; }
.map-card.active-zone i { color: var(--primary-color); }
.zone-badge { padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.zone-badge.available { background: rgba(76,175,80,0.15); color: #4CAF50; }
.zone-badge.next-day { background: rgba(255,152,0,0.15); color: #FF9800; }

/* TESTIMONIALS VERIFIED BADGE */
.verified-badge { font-size: 0.8rem; color: #4CAF50; margin: 4px 0 10px; }

/* BLOG SECTION */
.blog-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; margin-top: 30px; }
.blog-card { padding: 25px; border-radius: 12px; display: flex; flex-direction: column; gap: 10px; }
.blog-tag { display: inline-block; padding: 4px 12px; border-radius: 20px; background: rgba(255,107,0,0.15); color: var(--primary-color); font-size: 0.8rem; font-weight: 600; }
.ai-tag { background: rgba(99,102,241,0.15); color: #6366f1; }
.blog-card h3 { font-size: 1.1rem; margin: 0; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; flex: 1; }
.blog-read-more { color: var(--primary-color); cursor: pointer; font-weight: 600; font-size: 0.9rem; }
.blog-read-more:hover { text-decoration: underline; }
.blog-modal-overlay {
    position: fixed; top:0; left:0; width:100%; height:100vh;
    background: rgba(0,0,0,0.7); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.blog-modal-overlay.active { opacity: 1; visibility: visible; }
.blog-modal-content {
    position: relative; padding: 40px; max-width: 700px; width: 90%;
    border-radius: 15px; max-height: 80vh; overflow-y: auto;
}

/* FORM TRUST BADGES */
.trust-badges-form { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px; }
.trust-badge-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-light); }

/* AI CHAT WIDGET */
.ai-widget-btn {
    position: fixed; bottom: 110px; right: 20px;
    width: 55px; height: 55px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; cursor: pointer; z-index: 8999;
    box-shadow: 0 5px 20px rgba(99,102,241,0.4);
    transition: var(--transition);
}
.ai-widget-btn:hover { transform: scale(1.1); }
.ai-badge {
    position: absolute; top: -5px; right: -5px;
    background: var(--primary-color); color: white;
    font-size: 0.6rem; font-weight: 800; padding: 2px 5px;
    border-radius: 8px;
}
.ai-widget-panel {
    position: fixed; bottom: 175px; right: 20px;
    width: 330px; border-radius: 15px; z-index: 8998;
    display: none; flex-direction: column; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.ai-widget-panel.open { display: flex; }
.ai-widget-header {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.ai-widget-messages {
    height: 250px; overflow-y: auto; padding: 15px;
    display: flex; flex-direction: column; gap: 10px;
    background: var(--bg-color);
}
.ai-widget-input {
    display: flex; border-top: 1px solid var(--glass-border); background: var(--bg-color);
}
.ai-widget-input input { flex:1; padding:12px 15px; border:none; background:transparent; font-family:inherit; color:var(--text-color); font-size:0.9rem; }
.ai-widget-input button { padding:12px 15px; background:linear-gradient(135deg,#6366f1,#4f46e5); color:white; border:none; cursor:pointer; }

/* ADMIN PANEL V3 */
.admin-dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--glass-border); }
.admin-stats-row { display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-stat { flex: 1; min-width: 100px; text-align: center; padding: 15px; background: rgba(255,107,0,0.05); border: 1px solid rgba(255,107,0,0.2); border-radius: 10px; }
.admin-stat i { font-size: 1.5rem; color: var(--primary-color); display: block; margin-bottom: 8px; }
.admin-stat span { font-size: 1.5rem; font-weight: 800; color: var(--text-color); display: block; }
.admin-stat small { color: var(--text-light); font-size: 0.8rem; }
.admin-ai-summary { border-left: 4px solid var(--primary-color) !important; }
.status-dot-new { display:inline-block; width:8px; height:8px; border-radius:50%; background:#4CAF50; margin-right:5px; }

/* RESPONSIVE V3 */
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .trust-strip .trust-card:last-child { display: none; }
    .ariza-form { flex-direction: column; }
    .map-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .ai-widget-panel { width: calc(100vw - 40px); }
    .live-status-bar { font-size: 0.75rem; padding: 6px 10px; }
    .live-status-cta { display: none; }
    .hero { padding-top: 120px !important; }
    .hero h1 { font-size: 2.2rem !important; }
    .hero-trust { display: none !important; }
}

/* ========================================
   V4 PREMIUM MODERNIZATION STYLES & SURPRISES
   ======================================== */

/* V4: WEATHER EFFECTS CONTAINER */
.weather-overlay {
    position: fixed; top:0; left:0; width:100%; height:100vh;
    pointer-events: none; z-index: 999; overflow: hidden;
}
.snow-flake {
    position: absolute; background: white; border-radius: 50%;
    opacity: 0.6; filter: blur(1px); animation: fall linear infinite;
}
@keyframes fall {
    0% { transform: translateY(-10px) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.5; }
    100% { transform: translateY(100vh) translateX(20px); opacity: 0; }
}

/* V4: TOAST NOTIFICATIONS */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 10002; display: flex; flex-direction: column; gap: 10px; }
.v4-toast {
    background: rgba(45, 45, 45, 0.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-left: 4px solid #4CAF50; color: white; padding: 15px 20px; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 12px;
    transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem; max-width: 300px;
}
.v4-toast.show { transform: translateX(0); }
.v4-toast i { font-size: 1.5rem; color: #4CAF50; }

/* V4: AI MOOD BADGE */
.ai-mood-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 30px; margin-bottom: 20px; background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.3); font-size: 0.85rem; font-weight: 500; }

/* V4: CLICK SOUND (Pseudo Class for Hover/Click states) */
.btn-click-sound:active { transform: scale(0.95); }

/* V4: GLOW CARDS (Apple Style) */
.glow-card { position: relative; overflow: hidden; transform-style: preserve-3d; }
.glow-effect {
    position: absolute; top:0; left:0; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    border-radius: 50%; opacity: 0; pointer-events: none;
    transform: translate(-50%, -50%); transition: opacity 0.3s; z-index: 0;
}
.glow-card:hover .glow-effect { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* V4: ARIZA SPOTLIGHT UI */
.ariza-spotlight-wrapper { border-radius: 12px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.spotlight-header { background: rgba(0,0,0,0.4); padding: 12px 20px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mac-btns { display: flex; gap: 6px; }
.mac-btns span { width: 12px; height: 12px; border-radius: 50%; background: #ff5f56; }
.mac-btns span:nth-child(2) { background: #ffbd2e; }
.mac-btns span:nth-child(3) { background: #27c93f; }
.spotlight-title { flex: 1; text-align: center; color: var(--text-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }

.ariza-tabs-v4 { display: flex; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tab-v4-btn { flex: 1; padding: 15px; background: transparent; border: none; color: var(--text-light); font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: 0.3s; border-right: 1px solid rgba(255,255,255,0.05); }
.tab-v4-btn:last-child { border-right: none; }
.tab-v4-btn.active { color: var(--text-color); background: rgba(255,255,255,0.05); }
.tab-v4-btn i { color: var(--primary-color); }

.spotlight-body { padding: 30px; }
.tab-content-v4 { display: none; }
.tab-content-v4.active { display: block; animation: fadeUp 0.4s ease forwards; }

.spotlight-input-box { display: flex; align-items: center; background: rgba(0,0,0,0.2); border: 2px solid transparent; border-radius: 12px; padding: 5px; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.spotlight-input-box:focus-within { border-color: var(--primary-color); box-shadow: 0 0 15px rgba(255,107,0,0.2); }
.spotlight-icon { padding: 0 15px; font-size: 1.2rem; color: var(--text-light); }
.spotlight-input-box input { flex: 1; background: transparent; border: none; color: white; font-size: 1.2rem; padding: 10px 0; outline: none; font-family: inherit; }
.spotlight-input-box input::placeholder { color: rgba(255,255,255,0.3); }
.spotlight-btn { background: var(--primary-color); color: white; border: none; padding: 12px 25px; border-radius: 8px; cursor: pointer; font-weight: 600; }

.spotlight-empty-state { text-align: center; padding: 40px 0; color: var(--text-light); }
.spotlight-empty-state i { font-size: 3rem; color: rgba(255,255,255,0.1); margin-bottom: 15px; display: block; }
.spotlight-result-area { margin-top: 20px; }

/* V4: SYMPTOM CARDS */
.symptom-grid-v4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.symptom-card-v4 { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 20px; text-align: center; cursor: pointer; transition: 0.3s; }
.symptom-card-v4:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.icon-wrapper { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.5rem; }
.alert-red { background: rgba(255, 95, 86, 0.1); color: #ff5f56; }
.alert-blue { background: rgba(0, 229, 255, 0.1); color: #00e5ff; }
.alert-orange { background: rgba(255, 189, 46, 0.1); color: #ffbd2e; }
.alert-gray { background: rgba(255, 255, 255, 0.1); color: white; }

/* V4 AI CHAT TAB */
.ai-chat-area-v4 { background: rgba(0,0,0,0.2); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.ai-messages-v4 { height: 250px; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.ai-input-row-v4 { display: flex; border-top: 1px solid rgba(255,255,255,0.05); }
.ai-input-row-v4 input { flex: 1; background: transparent; border: none; padding: 15px 20px; color: white; font-family: inherit; }
.ai-input-row-v4 button { background: var(--primary-color); color: white; border: none; padding: 0 25px; cursor: pointer; }

/* V4: PRICING COMPARE OVERHAUL */
.pricing-grid-v4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--glass-bg); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); margin-top: 20px; }
.pricing-card-v4 { padding: 40px 30px; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; }
.pricing-card-v4:last-child { border-right: none; }
.pricing-header-v4 h3 { font-size: 1.2rem; color: var(--text-light); margin-bottom: 10px; }
.price-v4 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.pricing-features-v4 { list-style: none; padding: 0; margin: 0 0 30px; flex: 1; }
.pricing-features-v4 li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; gap: 10px; align-items: flex-start; }
.pricing-features-v4 li:last-child { border-bottom: none; }
.pricing-features-v4 i { margin-top: 4px; color: #4CAF50; }
.pricing-features-v4 li.disabled { color: var(--text-light); opacity: 0.5; }
.pricing-features-v4 li.disabled i { color: var(--text-light); }
.btn-outline-v4 { width: 100%; padding: 12px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: white; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.btn-outline-v4:hover { background: rgba(255,255,255,0.05); border-color: white; }
.pricing-card-v4.popular { transform: scale(1.05); z-index: 2; background: rgba(30,30,30,0.9); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color:var(--primary-color); border-radius: 16px; border-right: none; }
.popular-badge-v4 { position: absolute; top:0; left:50%; transform:translate(-50%, -50%); background: linear-gradient(135deg, #ff6b00, #ff8c00); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; }
.text-gradient { background: linear-gradient(135deg, #ff6b00, #ff8c00); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-success { color: #4CAF50 !important; }

/* V4: BLOG REWRITE & SKELETONS */
.blog-grid-v4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.blog-card-v4 { border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: 0.4s; top: 0; position: relative; }
.blog-card-v4:hover { top: -10px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: rgba(255,107,0,0.3); }
.blog-img-v4 { width: 100%; height: 220px; background-size: cover; background-position: center; position: relative; }
.blog-badge-v4 { position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.6); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); }
.voice-read-btn { position: absolute; bottom: 20px; right: 20px; width: 45px; height: 45px; border-radius: 50%; background: var(--primary-color); color: white; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(255,107,0,0.4); z-index: 2; transition: 0.3s; }
.voice-read-btn:hover { transform: scale(1.1); }
.blog-content-v4 { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.blog-meta-v4 { color: var(--text-light); font-size: 0.85rem; margin-bottom: 10px; display: flex; justify-content: space-between; }
.blog-title-v4 { font-size: 1.3rem; margin-bottom: 15px; color: var(--text-color); }
.blog-desc-v4 { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 25px; flex: 1; line-height: 1.6; }
.blog-read-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 600; text-decoration: none; transition: 0.3s; }
.blog-read-btn:hover { gap: 12px; }

/* SKELETON LOADER ANIMATION */
.skeleton-box { background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%); background-size: 200% 100%; animation: loadingSkeleton 1.5s infinite; }
.skeleton-text { background: rgba(255,255,255,0.05); border-radius: 4px; margin-bottom: 8px; }
@keyframes loadingSkeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* V4: BLOG MODAL */
.blog-modal-v4-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.8); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.blog-modal-v4-overlay.active { opacity: 1; visibility: visible; }
.blog-modal-v4 { position: relative; max-width: 800px; width: 95%; max-height: 85vh; padding: 50px; overflow-y: auto; background: var(--bg-color); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.close-modal-v4 { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; width: 40px; height: 40px; border-radius: 50%; color: white; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.close-modal-v4:hover { background: var(--primary-color); transform: rotate(90deg); }
.blog-modal-header { font-size: 0.9rem; color: var(--primary-color); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }

/* V4: SECRET KONAMI ADMIN PANEL */
.admin-konami-overlay { position: fixed; top:0; left:0; width:100%; height:100vh; background: rgba(0,0,0,0.95); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); z-index: 10005; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform: scale(1.05); }
.admin-konami-overlay.active { opacity: 1; visibility: visible; transform: scale(1); }
.admin-konami-panel { width: 95%; max-width: 1200px; height: 85vh; border: 1px solid var(--primary-color); box-shadow: 0 0 100px rgba(255,107,0,0.1); display: flex; flex-direction: column; overflow: hidden; border-radius: 16px; }
.admin-dashboard-v4-header { padding: 25px 30px; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.admin-v4-layout { display: flex; flex: 1; overflow: hidden; }
.admin-v4-sidebar { width: 280px; background: rgba(0,0,0,0.2); padding: 25px; display: flex; flex-direction: column; gap: 20px; border-right: 1px solid rgba(255,255,255,0.05); }
.admin-stat-small { display: flex; justify-content: space-between; align-items: center; padding: 15px; background: rgba(255,255,255,0.05); border-radius: 8px; }
.admin-stat-small strong { font-size: 1.5rem; color: white; }
.admin-v4-main { flex: 1; padding: 25px; overflow-y: auto; }
.badge-status { padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer; display: inline-block; transition: 0.3s; }
.badge-status.new { background: rgba(255,107,0,0.1); color: var(--primary-color); border: 1px solid rgba(255,107,0,0.3); }
.badge-status.done { background: rgba(76,175,80,0.1); color: #4CAF50; border: 1px solid rgba(76,175,80,0.3); }

/* V4: CONFLICT WARNING BADGE */
.ai-conflict-warning { padding: 12px 15px; background: rgba(255, 189, 46, 0.1); border: 1px solid #ffbd2e; border-radius: 8px; color: #ffbd2e; font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; animation: fadeUp 0.3s; }

/* RESPONSIVE OVERRIDES FOR V4 */
@media (max-width: 900px) {
    .pricing-grid-v4 { grid-template-columns: 1fr; gap: 20px; background: transparent; border: none; }
    .pricing-card-v4 { border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; margin-bottom: 20px; }
    .pricing-card-v4.popular { transform: scale(1); border-radius: 16px; }
    .admin-v4-layout { flex-direction: column; }
    .admin-v4-sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* ========================================
   V5 SURPRISE FEATURES STYLES
   ======================================== */

/* SURPRISE 2: LIVE INDICATOR */
.live-indicator { display: flex; align-items: center; gap: 8px; background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.3); padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: #fff; margin-right: 15px; }
.pulse-dot { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; box-shadow: 0 0 10px #2ecc71; animation: dotPulse 1.5s infinite; }
@keyframes dotPulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); } }
[data-theme="light"] .live-indicator { color: var(--text-color); }

/* SURPRISE 3: SOS BUTTON */
.float-sos { position: fixed; width: 60px; height: 60px; bottom: 40px; left: 40px; background-color: #ff3b30; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 5px 20px rgba(255, 59, 48, 0.4); z-index: 9999; display: flex; align-items: center; justify-content: center; text-decoration: none; overflow: hidden; transition: 0.3s; }
.float-sos:hover { width: 150px; justify-content: flex-start; padding-left: 15px; }
.float-sos span { display: none; font-size: 1rem; font-weight: bold; margin-left: 10px; white-space: nowrap; }
.float-sos:hover span { display: inline-block; }
.pulse-sos { animation: sosPulse 2s infinite; }
@keyframes sosPulse { 0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 59, 48, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); } }

/* V6: VISUAL SERVICE CARDS (Replaced Savings Calc) */
.services-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.service-card-v2 { position: relative; height: 350px; border-radius: 20px; overflow: hidden; background-size: cover; background-position: center; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.service-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(255,107,0,0.3); }
.service-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%); color: white; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; transition: 0.3s; }
.service-card-v2:hover .service-card-overlay { background: linear-gradient(to top, rgba(255,107,0,0.9) 0%, rgba(0,0,0,0.6) 100%); }
.service-card-overlay i { font-size: 2.5rem; background: var(--primary-color); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 15px; transition: 0.3s; }
.service-card-v2:hover .service-card-overlay i { background: #fff; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; transform: scale(1.1); }
.service-card-overlay h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card-overlay p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.5; }

/* V6: COMMON FAULTS ACCORDION (Replaced Before/After) */
.ariza-split-layout { display: flex; align-items: stretch; background: var(--bg-color); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 20px 50px rgba(0,0,0,0.2); margin-top: 30px; }
.ariza-image-side { width: 45%; background-size: cover; background-position: center; position: relative; min-height: 400px; }
.ariza-badge { position: absolute; bottom: 30px; left: 30px; background: rgba(0,0,0,0.7) !important; color: white; border: 1px solid rgba(255,255,255,0.2); padding: 12px 25px; border-radius: 30px; font-weight: 600; font-size: 1rem; }
.ariza-content-side { width: 55%; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.ariza-accordion { display: flex; flex-direction: column; gap: 15px; }
.ariza-item { background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(59, 130, 246, 0.15); border-radius: 12px; overflow: hidden; transition: 0.3s; cursor: pointer; }
.ariza-item:hover { border-color: rgba(59, 130, 246, 0.4); background: rgba(15, 23, 42, 0.8); }
.ariza-item.active { background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(23, 37, 84, 0.6)); border-color: #3B82F6; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.ariza-item-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--text-color); }
.ariza-item.active .ariza-item-header { color: #60A5FA; }
.ariza-item-body { padding: 0 20px 20px; color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.6; display: none; }

/* RESPONSIVE UPGRADES */
@media (max-width: 900px) {
    .services-grid-v2 { grid-template-columns: 1fr; }
    .ariza-split-layout { flex-direction: column; }
    .ariza-image-side { width: 100%; height: 250px; min-height: 250px; }
    .ariza-content-side { width: 100%; padding: 30px 20px; }
}

@media (max-width: 768px) {
    .hidden-mobile { display: none !important; }
    .float-sos { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 24px; }
    .float-sos:hover { width: 50px; padding-left: 0; justify-content: center; }
    .float-sos:hover span { display: none; }
}

/* ============================================
   🚨 ACİL SERVİS BÖLÜMİ - PREMIUM V6
   ============================================ */
.acil-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0505 0%, #3d0000 30%, #7a0000 60%, #c0392b 100%);
    overflow: hidden;
}

/* Hareketli arka plan efekti */
.acil-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: acilOrb 8s ease-in-out infinite;
}
.acil-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,59,48,0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: acilOrb 10s ease-in-out infinite reverse;
}
@keyframes acilOrb {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.2) translate(30px, -30px); }
}

.acil-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header */
.acil-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}
.acil-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,220,200,1);
    margin-bottom: 25px;
}
.pulse-dot-red {
    width: 10px;
    height: 10px;
    background: #ff4136;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4136;
    animation: dotPulse 1.2s infinite;
    display: inline-block;
}
.acil-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.acil-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.acil-header p strong { color: #ffbd2e; }

/* 3 Ana CTA Kart Satırı */
.acil-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.acil-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 25px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.15);
}
.acil-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: 0.3s;
}
.acil-card:hover { transform: translateY(-6px) scale(1.02); }
.acil-card:hover::before { background: rgba(255,255,255,0.05); }
.acil-card:hover .acil-card-arrow { transform: translateX(5px); }

.acil-card-red { background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98)); border-left: 4px solid #EF4444; box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.acil-card-red .acil-card-icon { color: #EF4444; border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.1); text-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
.acil-card-red:hover { border-color: #EF4444; box-shadow: 0 15px 35px rgba(239, 68, 68, 0.15); }

.acil-card-green { background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98)); border-left: 4px solid #10B981; box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.acil-card-green .acil-card-icon { color: #10B981; border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.1); text-shadow: 0 0 15px rgba(16, 185, 129, 0.4); }
.acil-card-green:hover { border-color: #10B981; box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15); }

.acil-card-orange { background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98)); border-left: 4px solid #F59E0B; box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.acil-card-orange .acil-card-icon { color: #F59E0B; border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.1); text-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
.acil-card-orange:hover { border-color: #F59E0B; box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15); }

.acil-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}
.acil-card-content { flex: 1; }
.acil-card-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); display: block; margin-bottom: 4px; }
.acil-card-content h3 { font-size: 1.3rem; font-weight: 800; margin: 0 0 4px; }
.acil-card-content p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin: 0; }
.acil-card-arrow { font-size: 1.2rem; color: rgba(255,255,255,0.7); transition: 0.3s; }

/* Güven Rozetleri */
.acil-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.acil-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 15px 25px;
    border-radius: 14px;
    color: white;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: 0.3s;
    min-width: 170px;
}
.acil-trust-badge:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.acil-trust-badge i { font-size: 1.6rem; color: #ffbd2e; }
.acil-trust-badge strong { font-size: 1rem; display: block; }
.acil-trust-badge small { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* Responsive */
@media (max-width: 900px) {
    .acil-cards-row { grid-template-columns: 1fr; }
    .acil-trust-badge { min-width: auto; flex: 1; }
}
@media (max-width: 600px) {
    .acil-section { padding: 70px 0; }
    .acil-header h2 { font-size: 2rem; }
    .acil-badges-row { flex-direction: column; align-items: stretch; }
    .acil-trust-badge { justify-content: center; }
}

/* ============================================
   🏄‍♂️ YATAY KAYDIRMALI KART SİSTEMİ (HORIZONTAL SCROLL)
   ============================================ */
.horizontal-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    cursor: grab;
}
.horizontal-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.horizontal-scroll-container:active {
    cursor: grabbing;
}
.horizontal-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content;
    padding: 20px 15px; /* Kartların gölgelerinin kesilmemesi için */
}
.horizontal-card {
    width: 380px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.horizontal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}
.search-card-box .glass-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.search-card-box .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,107,0,0.2);
}

@media (max-width: 768px) {
    .horizontal-scroll-track { gap: 20px; }
    .horizontal-card { width: 300px !important; }
}
