/* Gema Yapı - Master Design System v3.1 - ULTIMATE MOBILE FIX */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #020617;
    --navy: #0f172a;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --white: #ffffff;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Fixes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

[class*="col-"] {
    padding: 0 20px;
    width: 100%;
}

.g-5 {
    margin: 0 -20px;
}

.g-5>[class*="col-"] {
    padding: 0 20px;
}

/* Article Typography (For Neatness) */
.article-body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.9;
}

.article-body h2,
.article-body h3 {
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
}

.article-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (min-width: 992px) {
    .col-lg-8 {
        width: 66.666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-3 {
        width: 25%;
    }
}

/* Header & Mobile Menu */
header {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    padding: 0.8rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Page Header Inner */
.page-header {
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9)), url('../yuklemeler/modern_glass_slider_1.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    opacity: 0.5;
}


.logo h1 span {
    color: white;
    -webkit-text-fill-color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gradient);
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-right .btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.header-right .btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.mobile-toggle {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: none;
    line-height: 1;
}

@media (max-width: 991px) {

    .nav-links,
    .contact-btn {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
}

.mobile-links {
    text-align: center;
    width: 100%;
}

.mobile-links li {
    margin-bottom: 1.5rem;
}

.mobile-links a {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

/* Hero Slider */
.hero-swiper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.swiper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.swiper.swiper-initialized {
    opacity: 1;
}

.swiper-slide {
    position: relative;
    display: flex !important;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;
    background-position: center !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 0 1rem;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin-top: 80px;
    }

    .hero-btns {
        justify-content: center;
    }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-content p {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2500;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.action-btn:hover {
    transform: translateY(-5px);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-call {
    background: #3b82f6;
}


/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Sections */
.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

/* About */
.ab-section .lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.feature-item i {
    color: var(--accent);
}

.about-img-box {
    position: relative;
    margin-top: 2rem;
}

.experience-badge {
    position: absolute;
    bottom: 15px;
    left: -10px;
    background: var(--accent-gradient);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge strong {
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .ab-section .row {
        flex-direction: column-reverse;
    }

    .text-start {
        text-align: center !important;
    }

    .features-list {
        justify-items: center;
    }

    .sidebar {
        position: static !important;
        margin-top: 3rem !important;
    }
}

/* Cards & Grids */
.why-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {

    .why-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .why-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.why-card,
.service-card {
    background: var(--navy);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    transition: var(--transition);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
}

.service-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    background: #0d1425;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more {
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.read-more:hover {
    gap: 0.8rem;
    color: white;
}

/* Article Content Styling */
.article-content h3,
.article-content h4 {
    color: white;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
}

.article-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 20px 20px 0;
    font-style: italic;
    color: var(--text-main);
}

/* Testimonials */
.test-card {
    background: var(--navy);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.test-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: auto;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

/* CTA */
.cta-box {
    background: var(--accent-gradient);
    padding: 2.5rem;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 1.5rem;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
.main-footer {
    background: #01040a;
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-top {
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Brand Column */
.footer-logo a h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo a h2 span {
    color: var(--accent);
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Links Column */
.footer-links {
    display: grid;
    gap: 0.8rem;
}

.footer-links li a {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links li a:hover i {
    opacity: 1;
}

/* Contact Column */
.contact-list {
    display: grid;
    gap: 1.5rem;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-list .icon-box {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-list span,
.contact-list a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-list a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p span {
    color: white;
    font-weight: 600;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
}

/* Fixed WhatsApp */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 2500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Swiper Fixes */
.swiper-button-next,
.swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center !important;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}