/* Akın Kombi - Ana Tema CSS */

/* ============================================
   HOME ABOUT SECTION - Premium Style
   ============================================ */
.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    background: #0a1220;
}
.home-about .about-image {
    background: linear-gradient(135deg, rgba(255,122,26,0.15), rgba(11,20,38,0.6)), url('/assets_main/img/bg-wood-texture.webp') center/cover;
    position: relative;
}
.home-about .about-image::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, transparent, #0a1220);
}
.home-about .about-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-about .section-subtitle {
    color: #ff7a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.home-about .section-subtitle::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #ff7a1a;
}
.home-about .section-title {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.home-about p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 15px;
}
.home-about .lead-text {
    color: #e5ecf8;
    font-size: 1.1rem;
}
.home-about .btn {
    background: linear-gradient(135deg, #ff7a1a, #e66a0a);
    border: none;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
}
@media (max-width: 992px) {
    .home-about { grid-template-columns: 1fr; }
    .home-about .about-image { min-height: 300px; }
    .home-about .about-image::after { display: none; }
    .home-about .about-content { padding: 40px 20px; }
}

/* ============================================
   TRAKYA REGION SECTION - Premium Style
   ============================================ */
.trakya-region {
    background: linear-gradient(135deg, #0f1b30 0%, #0a1220 100%);
    position: relative;
    overflow: hidden;
}
.trakya-region::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255,122,26,0.08), transparent 60%);
    pointer-events: none;
}
.trakya-region .section-subtitle {
    color: #ff7a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.trakya-region .section-subtitle::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #ff7a1a;
}
.trakya-region .section-title {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}
.trakya-region p, .trakya-region .lead-text {
    color: #94a3b8;
    line-height: 1.8;
}
.trakya-region .lead-text {
    color: #e5ecf8;
    font-size: 1.1rem;
}
.trakya-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.trakya-feature:hover {
    background: rgba(255,122,26,0.08);
    border-color: rgba(255,122,26,0.2);
    transform: translateX(5px);
}
.trakya-feature i {
    font-size: 1.5rem;
    color: #ff7a1a;
    width: 50px;
    height: 50px;
    background: rgba(255,122,26,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trakya-feature h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 5px;
}
.trakya-feature p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* Global Container Rules - Tüm Sayfalar İçin */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Page specific containers override */
.about-page .container,
.contact-page .container,
.project-page .container,
.category-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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);
    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: 'Inter', 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;
    }

    /* Hamburger butonu göster */
    .ak-burger {
        display: flex;
        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;
    }

    .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;
        visibility: visible;
    }

    /* Header Ayarları */
    .ak-header__inner {
        padding: 15px 20px;
    }

    .ak-cta {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .ak-cta i {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    /* Genel Ayarlar */
    .home-section {
        padding: 50px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .container {
        padding: 0 20px;
    }

    /* Hero Grid */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Hero Başlık */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .eyebrow {
        font-size: 0.85rem;
    }

    /* Butonlar */
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btnx {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Hero Checks */
    .hero-checks {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    /* Metrics */
    .metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .metric strong {
        font-size: 2rem;
    }

    /* Grid Sistemleri */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section Title */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-lead {
        font-size: 1rem;
    }

    /* Card */
    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    /* Hero Visual */
    .hero-visual {
        order: -1;
        max-height: 250px;
    }

    .hero-figure img {
        max-height: 250px;
        object-fit: cover;
    }

    /* Stats Band */
    .stats-band {
        padding: 30px 0;
    }

    .stats-band>div {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Brand Strip */
    .brand-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .brand-logo {
        height: 70px;
        padding: 10px;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Packages */
    .packages {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq details {
        padding: 15px;
    }

    .faq summary {
        font-size: 1rem;
    }

    /* Footer */
    .main-footer {
        padding-top: 50px;
    }

    .main-footer>.container>div:first-child {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-footer h3 {
        font-size: 1.3rem;
    }

    .main-footer h4 {
        font-size: 1rem;
    }

    /* Region List */
    .region-list {
        gap: 10px;
    }

    .region-pill {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Logo */
    .ak-logo__icon-container {
        width: 28px;
        height: 28px;
    }

    .ak-logo__name {
        font-size: 1.1rem;
    }

    .ak-logo__tagline {
        font-size: 0.65rem;
    }

    /* Sticky Buttons */
    .sticky-emergency {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Model Pages */
    .model-title {
        font-size: 1.6rem;
    }

    .tech-table {
        font-size: 0.9rem;
    }

    /* Breadcrumb */
    nav[style*="font-size: 0.9rem"] {
        font-size: 0.8rem;
        padding: 15px 0 0;
    }

    /* Badge Tag */
    .badge-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    /* CTA Section */
    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    /* Overflow Fix */
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img {
        height: auto;
    }

    /* CTA Telefon Numarası Mobilde Gizle */
    .ak-cta {
        padding: 10px;
    }

    .ak-cta i {
        margin-right: 0;
    }

    .ak-cta span {
        display: none;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Küçük Mobil (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btnx {
        font-size: 0.95rem;
        padding: 12px 18px;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .brand-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .ak-mobile {
        width: 90%;
    }
}

/* 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;
}

/* Zarif ve Estetik Logo */
.ak-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ak-logo:hover {
    transform: translateY(-1px);
}

.ak-logo__icon-container {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-logo__flame {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(255, 122, 26, 0.25));
    transition: all 0.4s ease;
}

.ak-logo:hover .ak-logo__flame {
    filter: drop-shadow(0 4px 10px rgba(255, 122, 26, 0.4));
    transform: scale(1.08);
}

.ak-logo__brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ak-logo__name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.ak-logo:hover .ak-logo__name {
    color: #ff7a1a;
}

.ak-logo__tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.ak-logo:hover .ak-logo__tagline {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .ak-logo__icon-container {
        width: 28px;
        height: 28px;
    }

    .ak-logo__name {
        font-size: 1.15rem;
    }

    .ak-logo__tagline {
        font-size: 0.65rem;
    }
}

/* Model Detay Sayfaları */
.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);
    border-radius: 12px;
    overflow: hidden;
}

.product-content table thead {
    background: linear-gradient(135deg, var(--accent-color), rgba(255, 122, 26, 0.8));
}

.product-content table thead tr {
    background: linear-gradient(135deg, var(--accent-color), rgba(255, 122, 26, 0.8));
    background-color: transparent;
}

.product-content table thead th,
.product-content table thead tr th,
.product-content table tr th {
    padding: 15px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    background: transparent;
    background-color: transparent;
}

.product-content table tbody td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5ecf8;
    background-color: transparent;
}

.product-content table tbody tr {
    background: transparent;
    background-color: transparent;
}

.product-content table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.product-content table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.product-content table tbody td strong {
    color: #fff;
}

.extra-info,
.user-tips,
.specs-container {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    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;
    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;
    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;
}

.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);
}

.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;
    background-color: transparent;
}

.tech-table td strong {
    color: #fff;
}

.tech-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.tech-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.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%;
    }
}

/* ========================================
   HERO GRID DÜZELTMELERI - TÜM SAYFALAR
   ======================================== */

/* Desktop görünümü için hero-grid */
@media (min-width: 992px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .hero-visual {
        order: 0;
        max-height: none;
    }

    .hero-figure {
        position: relative;
    }

    .hero-figure img {
        max-height: none;
        height: auto;
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
}

/* Tablet görünümü */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-visual {
        order: 0;
        max-height: none;
    }

    .hero-figure img {
        max-height: 350px;
    }
}

/* Metrics düzeltmeleri */
@media (min-width: 769px) {
    .metrics {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .metric {
        flex: 0 0 auto;
        min-width: 120px;
    }
}

/* Grid içindeki inline style'ları düzelt */
@media (min-width: 769px) {
    [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr;
    }
}

/* Section Elevated padding düzeltmesi */
@media (max-width: 768px) {
    .section-elevated {
        padding: 30px 20px;
    }
}

/* ============================================
   PROJE SAYFALARI - EK STİLLER
   ============================================ */

/* Breadcrumb */
.category-breadcrumb {
    background: var(--bg-dark, #0a1220);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb-list {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}
.breadcrumb-list a {
    color: #94a3b8;
    text-decoration: none;
}
.breadcrumb-list a:hover { color: #ff7a1a; }
.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #64748b;
}
.breadcrumb-list li:last-child { color: #ff7a1a; }

/* Price Table */
.price-table {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.price-table table {
    width: 100%;
    border-collapse: collapse;
}
.price-table thead tr {
    background: rgba(255,122,26,0.1);
}
.price-table th, .price-table td {
    padding: 18px 20px;
    text-align: left;
    color: #fff;
}
.price-table th { font-weight: 600; }
.price-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-table .text-muted {
    color: #94a3b8;
    font-size: 0.85rem;
}
.price-table .price {
    text-align: right;
    color: #ff7a1a;
    font-weight: 700;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .price-table th, .price-table td { padding: 12px; font-size: 0.9rem; }
    .price-table .price { font-size: 1rem; }
}

/* Info Box */
.info-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,122,26,0.1);
    border-left: 4px solid #ff7a1a;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.info-box i { color: #ff7a1a; font-size: 1.2rem; margin-top: 2px; }
.info-box p { margin: 0; color: #e5ecf8; font-size: 0.95rem; line-height: 1.6; }

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.content-block h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.content-block p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Villages Grid */
.villages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.village-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #e5ecf8;
    text-decoration: none;
    transition: all 0.3s;
}
.village-card:hover {
    background: rgba(255,122,26,0.1);
    border-color: rgba(255,122,26,0.3);
    transform: translateX(5px);
}
.village-card i { color: #ff7a1a; }
.village-card span { flex: 1; }
.village-card .arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}
.village-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Related Categories */
.related-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.related-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #e5ecf8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}
.related-card:hover {
    background: rgba(255,122,26,0.15);
    border-color: rgba(255,122,26,0.4);
    color: #ff7a1a;
    transform: translateY(-3px);
}
.related-card i { color: #ff7a1a; }

/* Hero alt geçiş */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #F9F7F2);
    pointer-events: none;
}




/* About Section Mobil */
@media (max-width: 768px) {
    .home-about {
        grid-template-columns: 1fr;
    }
    .home-about .about-image {
        min-height: 300px;
    }
    .home-about .about-content {
        padding: 40px 24px;
    }
    .home-about h2 {
        font-size: 2rem;
    }
}

/* ============================================
   MOBILE HOME-ABOUT FIX - Override Inline Styles
   ============================================ */
@media (max-width: 992px) {
    section.home-about {
        grid-template-columns: 1fr !important;
        display: block !important;
    }
    section.home-about .about-image {
        min-height: 300px !important;
        display: block !important;
    }
    section.home-about .about-content {
        padding: 40px 24px !important;
        display: block !important;
    }
    section.home-about h2 {
        font-size: 1.8rem !important;
    }
}

/* ============================================
   PREMIUM HOME-ABOUT SECTION ENHANCEMENTS
   Section 2: Hikayemiz - Ana sayfa temasına uyumlu
   ============================================ */

/* Ana section stili */
section.home-about {
    position: relative;
    overflow: hidden;
}

/* Arka plan efekti */
section.home-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: floatBg 15s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

/* Görsel alanı premium efektler */
section.home-about .about-image {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

section.home-about .about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(139,69,19,0.2) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

section.home-about:hover .about-image::before {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(139,69,19,0.25) 100%);
}

/* 500+ Mutlu Müşteri kartı premium stili */
section.home-about .about-image > div:last-child {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(249,247,242,0.95)) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(212,175,55,0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

section.home-about .about-image > div:last-child:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 0 0 2px rgba(212,175,55,0.2) !important;
}

/* İçerik alanı animasyonları */
section.home-about .about-content {
    position: relative;
    z-index: 2;
}

/* Badge kartları hover efektleri */
section.home-about .about-content > div:nth-child(5) > div {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

section.home-about .about-content > div:nth-child(5) > div:hover {
    transform: translateY(-3px);
    background: rgba(212,175,55,0.18) !important;
    border-color: rgba(212,175,55,0.4) !important;
    box-shadow: 0 8px 25px rgba(212,175,55,0.15);
}

/* CTA Butonu premium hover */
section.home-about .about-content a[href*='hakkimizda'] {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section.home-about .about-content a[href*='hakkimizda']::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

section.home-about .about-content a[href*='hakkimizda']:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.45) !important;
}

section.home-about .about-content a[href*='hakkimizda']:hover::before {
    left: 100%;
}

/* ============================================
   SECTION 3: TRAKYA REGION - TEXT KONTRAST FIX
   ============================================ */

/* Ana bölüm koyu arka plan */
.trakya-region {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1b30 50%, #16213e 100%) !important;
}

/* Lead text okunabilirlik */
.trakya-region .lead-text {
    color: #e5ecf8 !important;
    font-weight: 400;
}

/* Trakya kartları içindeki metinler */
.trakya-feature h4 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.trakya-feature p {
    color: #c3cfe2 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Trakya feature kartları geliştirilmiş stiller */
.trakya-feature {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.trakya-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trakya-feature:hover {
    background: rgba(212,175,55,0.12) !important;
    border-color: rgba(212,175,55,0.35) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(212,175,55,0.2);
}

.trakya-feature:hover::before {
    opacity: 1;
}

/* Trakya feature ikonları */
.trakya-feature i {
    font-size: 1.4rem !important;
    color: #D4AF37 !important;
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1)) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}

.trakya-feature:hover i {
    background: linear-gradient(135deg, #D4AF37, #b8962e) !important;
    color: #fff !important;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

/* Section title koyu tema üzerinde */
.trakya-region .section-title {
    color: #ffffff !important;
}

/* Section subtitle */
.trakya-region .section-subtitle {
    color: #D4AF37 !important;
}

/* Trakya grid layout */
.trakya-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Trakya harita görsel efektleri */
.trakya-map {
    position: relative;
}

.trakya-map img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

.trakya-map:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

/* Map badge'leri */
.map-badge {
    background: rgba(255,255,255,0.95) !important;
    color: #1a1a2e !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.map-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.map-badge.active {
    background: linear-gradient(135deg, #D4AF37, #b8962e) !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}

/* Mobil uyumluluk */
@media (max-width: 992px) {
    .trakya-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .trakya-feature {
        padding: 20px !important;
    }
    
    .trakya-map {
        order: -1;
    }
}


/* ============================================
   TRAKYA SECTION FIX - AÇIK TEMA (BEYAZ ARKA PLAN)
   Önceki koyu tema kurallarını override et
   ============================================ */

/* Trakya region AÇIK tema - !important ile override */
.trakya-region {
    background: #F9F7F2 !important;
    background-image: none !important;
}

/* Trakya başlıklar KOYU renk (açık arka plan üzerine) */
.trakya-region .section-title {
    color: #1a1a1a !important;
}

.trakya-region .section-subtitle {
    color: #D4AF37 !important;
}

/* Lead text - KOYU renk */
.trakya-region .lead-text {
    color: #444444 !important;
    font-weight: 400;
}

/* Trakya feature kartları - AÇIK TEMA */
.trakya-feature {
    background: #ffffff !important;
    border: 1px solid rgba(212,175,55,0.2) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.trakya-feature:hover {
    background: #ffffff !important;
    border-color: rgba(212,175,55,0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(212,175,55,0.2);
}

/* Trakya feature başlıkları - KOYU */
.trakya-feature h4 {
    color: #1a1a1a !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

/* Trakya feature açıklamaları - KOYU GRİ (OKUNABİLİR) */
.trakya-feature p {
    color: #555555 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Trakya feature ikonları */
.trakya-feature i {
    font-size: 1.4rem !important;
    color: #D4AF37 !important;
    width: 55px !important;
    height: 55px !important;
    background: rgba(212,175,55,0.12) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
}

.trakya-feature:hover i {
    background: linear-gradient(135deg, #D4AF37, #b8962e) !important;
    color: #fff !important;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

/* Map badge açık tema */
.map-badge {
    background: #ffffff !important;
    color: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-badge.active {
    background: linear-gradient(135deg, #D4AF37, #b8962e) !important;
    color: #fff !important;
}

