/* Akın Kombi - Ana Tema CSS */

/* Region List Styles */
.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.region-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    color: #d8e5fb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.region-pill:hover {
    background: rgba(255, 122, 26, 0.15);
    border-color: rgba(255, 122, 26, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.region-pill i {
    color: var(--accent-color);
    font-size: 0.9em;
}

/* FAQ List Styles */
.faq-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 122, 26, 0.3);
}

.faq-item h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3:before {
    content: "Q:";
    color: var(--accent-color);
    font-weight: 800;
    flex-shrink: 0;
}

.faq-item p {
    color: #d8e5fb;
    line-height: 1.6;
    padding-left: 30px;
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.card p {
    color: #d8e5fb;
    line-height: 1.6;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.card ul li {
    padding: 8px 0;
    color: #d8e5fb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul li i {
    color: var(--accent-color);
}

.card-figure {
    margin: 0 0 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

.card-figure img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Badge Tag */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 122, 26, 0.15);
    border: 1px solid rgba(255, 122, 26, 0.3);
    border-radius: 20px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Section Title */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-lead {
    font-size: 1.1rem;
    color: #d8e5fb;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Dropdown Menu Styles */
.ak-nav__dropdown {
    position: relative;
    display: inline-block;
}

.ak-nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 27, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 8px;
    padding: 8px 0;
}

.ak-nav__dropdown:hover .ak-nav__dropdown-menu {
    display: block;
}

.ak-nav__dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #d8e5fb;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.ak-nav__dropdown-menu a:hover {
    background: rgba(255, 122, 26, 0.15);
    color: #fff;
}

.ak-nav__dropdown-menu a.active {
    background: rgba(255, 122, 26, 0.25);
    color: #ff7a1a;
    font-weight: 700;
}

.ak-nav__dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.ak-nav__dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.ak-nav__dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 26, 0.5);
    border-radius: 3px;
}

.ak-nav__dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 122, 26, 0.7);
}

/* Original Styles */
.home-page { background: radial-gradient(circle at 10% 18%, rgba(255,122,26,0.07), transparent 30%), #0b1426; color: #e5ecf8; }
.home-section { padding: 90px 0; position: relative; overflow: hidden; }
.home-section::before { content:''; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 8% 10%, rgba(255,122,26,0.05), transparent 25%), radial-gradient(circle at 88% 12%, rgba(0,180,255,0.05), transparent 28%); }
.section-elevated { position: relative; background: linear-gradient(135deg, rgba(15,27,48,0.8), rgba(13,22,38,0.9)); border: 1px solid rgba(255,255,255,0.04); box-shadow: 0 30px 60px rgba(0,0,0,0.25); border-radius: 18px; padding: 60px; overflow: hidden; z-index: 1; }
.section-elevated::after { content:''; position:absolute; inset:-20px; background: radial-gradient(circle at 20% 20%, rgba(255,122,26,0.08), transparent 40%), radial-gradient(circle at 80% 10%, rgba(0,180,255,0.08), transparent 40%); z-index:0; pointer-events: none; }
.section-elevated > * { position: relative; z-index: 1; }

.hero { position: relative; padding: 130px 0 100px; color: #e8efff; background: linear-gradient(135deg, rgba(11,20,38,0.94), rgba(15,38,74,0.9)), url('/assets_main/img/acilkombiservis.webp') center/cover; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 14% 20%, rgba(255,122,26,0.25), transparent 38%), radial-gradient(circle at 82% 12%, rgba(0,175,255,0.22), transparent 42%); opacity: 0.9; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; align-items: center; }
.hero-visual { display: grid; gap: 18px; }
.hero-figure { margin: 0; background: rgba(16,27,48,0.85); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 10px; box-shadow: 0 22px 48px rgba(0,0,0,0.4); }
.hero-figure img { display: block; width: 100%; height: auto; border-radius: 12px; object-fit: cover; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); font-weight: 800; letter-spacing: .6px; color: #9ad7ff; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1.1; margin: 18px 0 14px; }
.hero-lead { font-size: 1.08rem; color: #d8e5fb; max-width: 680px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 14px; }
.pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #eaf2ff; padding: 10px 14px; border-radius: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; position: relative; z-index: 10; }
.hero-checks { list-style: none; padding: 0; margin: 14px 0 6px 0; display: flex; flex-wrap: wrap; gap: 12px 18px; color: #d8e5fb; }
.hero-checks li { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.hero-checks li i { color: #1ec28f; }
.btnx { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 14px; font-weight: 800; letter-spacing: 0.2px; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; justify-content: center; text-decoration: none; cursor: pointer; }
.hero-actions .btnx { min-width: 220px; text-align: center; }
.btnx-primary { background: linear-gradient(135deg, #ff7a1a, #ff5c00); color: #fff; box-shadow: 0 18px 36px rgba(255,92,0,0.32); }
.btnx-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 42px rgba(255,92,0,0.38); }
.btnx-ghost { background: rgba(255,255,255,0.08); color: #eaf2ff; border-color: rgba(255,255,255,0.18); }
.btnx-ghost:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btnx-secondary { background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)); color: #ffe8d6; border-color: rgba(255,255,255,0.24); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
.btnx-secondary:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.36); }
.hero-panel { background: rgba(15,27,48,0.9); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 26px; box-shadow: 0 20px 48px rgba(0,0,0,0.35); backdrop-filter: blur(8px); }
.hero-panel h3 { color: #fff; margin-bottom: 12px; }
.hero-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-panel li { display: flex; align-items: center; gap: 10px; color: #d8e5fb; }
.hero-panel li i { color: #1ec28f; }

.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 20px; }
.metric { 
    text-align: center; 
    padding: 30px 20px; 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 16px; 
    backdrop-filter: blur(10px); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.metric:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,122,26,0.3);
}
.metric:hover::before {
    opacity: 1;
}
.metric strong { 
    display: block; 
    font-size: 3rem; 
    font-weight: 900;
    background: linear-gradient(135deg, #ff7a1a, #ffae42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.metric span { 
    color: #cbd5e1; 
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.floating { animation: floaty 8s ease-in-out infinite; }

.card { position: relative; background: rgba(16,27,48,0.9); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 26px; box-shadow: 0 18px 38px rgba(0,0,0,0.32); transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s; display: grid; gap: 12px; grid-template-rows: auto auto auto 1fr auto; overflow: hidden; }
.card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--accent-color), rgba(255,255,255,0)); opacity: 0.9; transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1); transform: scaleX(0); transform-origin: left; }
.card:hover::before { transform: scaleX(1); }
.card-figure { margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
.card-figure img { width: 100%; height: 170px; object-fit: cover; display: block; }
.card:hover { transform: translateY(-10px) scale(1.01); border-color: rgba(255,255,255,0.18); box-shadow: 0 28px 56px rgba(0,0,0,0.45); }
.card h3 { margin-bottom: 10px; color: #fff; }
.card p { margin: 0 0 12px; color: #cbd5e1; }
.card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.card li { display: flex; align-items: center; gap: 10px; color: #d5e1f5; }
.card li i { color: #1ec28f; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.step { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px; color: #dbe6f5; box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.step strong { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.step span { color: #cbd5e1; display: block; margin-top: 6px; }

.faq details { background: rgba(16,27,48,0.9); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 14px 28px rgba(0,0,0,0.22); }
.faq summary { padding: 16px 18px; cursor: pointer; font-weight: 800; color: #eaf2ff; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-color); transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details div { padding: 0 18px 16px 18px; color: #cbd5e1; line-height: 1.7; }

.cta { background: linear-gradient(135deg, #ff7a1a, #ff5c00); color: #fff; text-align: center; border-radius: 18px; padding: 48px 28px; box-shadow: 0 22px 46px rgba(255,92,0,0.35); }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: #ffe8d6; margin-bottom: 22px; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: stretch; }
.contact-card { background: rgba(16,27,48,0.92); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 26px; box-shadow: 0 18px 38px rgba(0,0,0,0.32); }
.contact-row { display: flex; gap: 14px; margin-bottom: 12px; color: #e5ecf8; }
.contact-row i { color: var(--accent-color); margin-top: 4px; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.map-wrapper iframe { width: 100%; min-height: 340px; border: none; border-radius: 16px; box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

.brand-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; align-items: center; }
.brand-logo { 
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px; 
    padding: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100px; 
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}
.brand-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s ease;
}
.brand-logo img { 
    max-height: 50px; 
    width: auto; 
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.brand-logo:hover { 
    transform: translateY(-6px); 
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 12px 28px rgba(255,107,53,0.15);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}
.brand-logo:hover::before {
    opacity: 1;
}
.brand-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Mobil için optimize */
@media (max-width: 768px) {
    .brand-strip { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 12px; }
    .brand-logo { height: 80px; padding: 15px; }
    .brand-logo img { max-height: 40px; }
}

.testimonial { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px; box-shadow: 0 16px 32px rgba(0,0,0,0.25); position: relative; overflow: hidden; }
.testimonial::before { content: '"'; position: absolute; top: -24px; left: 12px; font-size: 100px; color: rgba(255,255,255,0.06); font-weight: 900; }
.testimonial p { color: #dbe6f5; margin-bottom: 12px; }
.testimonial strong { color: #fff; display: block; }
.stars { color: #ffb347; margin-bottom: 8px; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .6s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 4px; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.testimonial-dot.active { background: #ff7a1a; transform: scale(1.1); }
.testimonial-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; pointer-events: none; }
.testimonial-btn { pointer-events: all; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.12); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.testimonial-btn:hover { transform: translateY(-2px); background: rgba(0,0,0,0.5); }

.badge-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: linear-gradient(135deg, rgba(255,122,26,0.18), rgba(0,175,255,0.12)); border: 1px solid rgba(255,255,255,0.12); color: #eaf2ff; border-radius: 14px; box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
.badge-tag i { color: #ffae42; }

.trust-bar { margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.trust-pill { background: linear-gradient(135deg, rgba(255,122,26,0.14), rgba(0,175,255,0.14)); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; color: #eaf2ff; box-shadow: 0 10px 24px rgba(0,0,0,0.24); }
.trust-pill i { color: #ffae42; }
.section-title { color: #fff; font-size: clamp(2rem, 3vw, 2.6rem); margin: 12px 0; font-weight: 800; }
.section-lead { color: #cfd8ec; max-width: 820px; margin-bottom: 26px; }
.region-list { display: flex; flex-wrap: wrap; gap: 10px; }
.region-pill { padding: 10px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: #eaf2ff; font-weight: 700; box-shadow: 0 10px 22px rgba(0,0,0,0.22); display: inline-flex; align-items: center; gap: 8px; }
.link-more { color: var(--accent-color); font-weight: 700; text-decoration: none; }
.link-more:hover { text-decoration: underline; }
.cta.with-image { background-image: linear-gradient(135deg, rgba(255,122,26,0.92), rgba(15,38,74,0.92)), url('/assets_main/img/akinkombiarac.webp'); background-size: cover; background-position: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 20px; }
.card-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

@keyframes floaty { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }

/* Premium Hero Animasyonları */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-10px) scale(1.02);
    }
    50% {
        transform: translateY(-15px) scale(1.03);
    }
    75% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero-figure img {
    transition: transform 0.3s ease;
}

.hero-figure:hover img {
    transform: scale(1.05) !important;
    animation-play-state: paused;
}

/* Sticky Acil Buton */
.sticky-emergency {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.sticky-btn.phone {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 8px 24px rgba(255,122,26,0.6), 0 0 0 10px rgba(255,122,26,0.1); }
}

/* Premium Advantage Cards */
.advantage-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.advantage-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-family: 'Manrope', sans-serif;
}

.advantage-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .sticky-emergency {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    .sticky-btn {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    .sticky-btn:active {
        transform: scale(0.95);
    }
    .advantage-card {
        padding: 30px 20px;
    }
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Desktop - Hamburger ve Mobil Menü Gizle */
@media (min-width: 1025px) {
    .ak-burger {
        display: none;
    }
    
    .ak-mobile {
        display: none;
    }
    
    .ak-overlay {
        display: none;
    }
}

/* Mobil Header ve Menü */
@media (max-width: 1024px) {
    /* Desktop menüyü gizle */
    .ak-nav {
        display: none !important;
    }
    
    /* Hamburger butonu göster */
    .ak-burger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .ak-burger span {
        width: 24px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .ak-burger--close span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .ak-burger--close span:nth-child(2) {
        opacity: 0;
    }
    
    .ak-burger--close span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobil Menü */
    .ak-mobile {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, #0f1b30 0%, #0b1426 100%);
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    }
    
    .ak-mobile.active {
        right: 0 !important;
    }
    
    .ak-mobile__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        background: rgba(0,0,0,0.2);
    }
    
    .ak-mobile__links {
        padding: 20px 0;
    }
    
    .ak-mobile__link {
        display: block;
        padding: 15px 25px;
        color: #e5ecf8;
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .ak-mobile__link:hover,
    .ak-mobile__link:active {
        background: rgba(255,122,26,0.1);
        border-left-color: #ff7a1a;
        color: white;
        padding-left: 30px;
    }
    
    /* Mobil Dropdown */
    .ak-mobile__dropdown {
        position: relative;
    }
    
    .ak-mobile__dropdown-toggle {
        display: block;
        width: 100%;
        padding: 15px 25px;
        color: #e5ecf8;
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        text-align: left;
        background: none;
        border: none;
        border-left: 3px solid transparent;
        cursor: pointer;
    }
    
    .ak-mobile__dropdown-toggle:hover {
        background: rgba(255,122,26,0.1);
        border-left-color: #ff7a1a;
        color: white;
        padding-left: 30px;
    }
    
    .ak-mobile__dropdown.active .ak-mobile__dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .ak-mobile__dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(0,0,0,0.2);
    }
    
    .ak-mobile__dropdown.active .ak-mobile__dropdown-menu {
        max-height: 800px;
    }
    
    .ak-mobile__dropdown-link {
        display: block;
        padding: 12px 25px 12px 45px;
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }
    
    .ak-mobile__dropdown-link:hover {
        background: rgba(255,122,26,0.15);
        color: #ff7a1a;
        padding-left: 50px;
    }
    
    /* Overlay */
    .ak-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }
    
    .ak-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Header Ayarları */
    .ak-header__inner {
        padding: 15px 20px !important;
    }
    
    .ak-cta {
        font-size: 0.9rem !important;
        padding: 10px 16px !important;
    }
    
    .ak-cta i {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    /* Genel Ayarlar */
    .home-section { padding: 50px 0 !important; }
    .hero { padding: 80px 0 60px !important; }
    .container { padding: 0 20px !important; }
    
    /* Hero Grid */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Hero Başlık */
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-lead {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .eyebrow {
        font-size: 0.85rem !important;
    }
    
    /* Butonlar */
    .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .btnx {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
    }
    
    /* Hero Checks */
    .hero-checks {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }
    
    /* Metrics */
    .metrics {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .metric strong {
        font-size: 2rem !important;
    }
    
    /* Grid Sistemleri */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Section Title */
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .section-lead {
        font-size: 1rem !important;
    }
    
    /* Card */
    .card {
        padding: 20px !important;
    }
    
    .card h3 {
        font-size: 1.2rem !important;
    }
    
    /* Hero Visual */
    .hero-visual {
        order: -1 !important;
        max-height: 250px !important;
    }
    
    .hero-figure img {
        max-height: 250px !important;
        object-fit: cover !important;
    }
    
    /* Stats Band */
    .stats-band {
        padding: 30px 0 !important;
    }
    
    .stats-band > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    /* Brand Strip */
    .brand-strip {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .brand-logo {
        height: 70px !important;
        padding: 10px !important;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr !important;
    }
    
    /* Packages */
    .packages {
        grid-template-columns: 1fr !important;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr !important;
    }
    
    /* FAQ */
    .faq details {
        padding: 15px !important;
    }
    
    .faq summary {
        font-size: 1rem !important;
    }
    
    /* Footer */
    .main-footer {
        padding-top: 50px !important;
    }
    
    .main-footer > .container > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .main-footer h3 {
        font-size: 1.3rem !important;
    }
    
    .main-footer h4 {
        font-size: 1rem !important;
    }
    
    /* Region List */
    .region-list {
        gap: 10px !important;
    }
    
    .region-pill {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
    
    /* Sticky Buttons */
    .sticky-emergency {
        bottom: 15px !important;
        right: 15px !important;
        gap: 10px !important;
    }
    
    .sticky-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    /* Model Pages */
    .model-title {
        font-size: 1.6rem !important;
    }
    
    .tech-table {
        font-size: 0.9rem !important;
    }
    
    /* Breadcrumb */
    nav[style*="font-size: 0.9rem"] {
        font-size: 0.8rem !important;
        padding: 15px 0 0 !important;
    }
    
    /* Badge Tag */
    .badge-tag {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    /* CTA Section */
    .cta h2 {
        font-size: 1.8rem !important;
    }
    
    .cta p {
        font-size: 1rem !important;
    }
    
    /* Overflow Fix */
    body {
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100% !important;
    }
    
    img {
        height: auto !important;
    }
    
    /* CTA Telefon Numarası Mobilde Gizle */
    .ak-cta {
        padding: 10px !important;
    }
    
    .ak-cta i {
        margin-right: 0 !important;
    }
    
    .ak-cta span {
        display: none !important;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px !important;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Küçük Mobil (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .btnx {
        font-size: 0.95rem !important;
        padding: 12px 18px !important;
    }
    
    .metrics {
        grid-template-columns: 1fr !important;
    }
    
    .brand-strip {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .sticky-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .ak-mobile {
        width: 90% !important;
    }
}

/* Model Sayfa Hero */
.model-page-hero {
    position: relative;
    overflow: hidden;
}

.model-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,122,26,0.1), transparent 50%);
    pointer-events: none;
}

.product-content {
    max-width: 1000px;
    margin: 0 auto;
}

.model-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.model-title i {
    color: var(--accent-color);
}

.product-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.product-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-content ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #e5ecf8;
    line-height: 1.6;
}

.product-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.product-content ul li strong {
    color: #fff;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
}

.tech-table td {
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #e5ecf8;
}

.tech-table td strong {
    color: #fff;
}

.tech-table tr:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

.product-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255,255,255,0.03) !important;
    border-radius: 12px;
    overflow: hidden;
}

.product-content table thead {
    background: linear-gradient(135deg, var(--accent-color), rgba(255,122,26,0.8)) !important;
}

.product-content table thead tr {
    background: linear-gradient(135deg, var(--accent-color), rgba(255,122,26,0.8)) !important;
    background-color: transparent !important;
}

.product-content table thead th,
.product-content table thead tr th,
.product-content table tr th {
    padding: 15px !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-align: left !important;
    background: transparent !important;
    background-color: transparent !important;
}

.product-content table tbody td {
    padding: 12px 15px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #e5ecf8 !important;
    background-color: transparent !important;
}

.product-content table tbody tr {
    background: transparent !important;
    background-color: transparent !important;
}

.product-content table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.02) !important;
}

.product-content table tbody tr:hover {
    background: rgba(255,255,255,0.05) !important;
}

.product-content table tbody td strong {
    color: #fff !important;
}

.extra-info, .user-tips, .specs-container {
    background: rgba(255,255,255,0.03) !important;
    border-left: 4px solid var(--accent-color) !important;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.extra-info h3, .user-tips h3, .specs-container h3,
.extra-info h4, .user-tips h4, .specs-container h4 {
    color: #fff !important;
    margin-top: 20px;
    margin-bottom: 12px;
    border: none;
    padding: 0;
}

.extra-info h3:first-child, .user-tips h3:first-child, .specs-container h3:first-child {
    margin-top: 0;
}

.extra-info p, .user-tips p {
    color: #cbd5e1 !important;
    line-height: 1.7;
    margin: 10px 0;
}

.extra-info ul, .user-tips ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.extra-info ul li, .user-tips ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #e5ecf8 !important;
}

.extra-info ul li::before, .user-tips ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.extra-info strong, .user-tips strong {
    color: var(--accent-color) !important;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255,255,255,0.03) !important;
    border-radius: 12px;
    overflow: hidden;
}

.tech-table td {
    padding: 15px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #e5ecf8 !important;
    background-color: transparent !important;
}

.tech-table td strong {
    color: #fff !important;
}

.tech-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.02) !important;
}

.tech-table tr:hover td {
    background: rgba(255,255,255,0.05) !important;
}

.cta-actions {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-service, .btn-price {
    flex: 1;
    min-width: 200px;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-service {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    color: #fff;
    box-shadow: 0 8px 16px rgba(255,122,26,0.3);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255,122,26,0.4);
}

.btn-price {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-price:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .model-title {
        font-size: 1.8rem;
    }
    
    .product-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-service, .btn-price {
        width: 100%;
    }
}

