@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #f8f9fa;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --sapphire-blue: #0984e3;
    --neon-blue: #00d2d3;
    --gold-accent: #fdcb6e;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --section-padding: 6%;
}

@media (min-width: 1600px) {
    :root {
        --section-padding: 10%;
    }
}
@media (max-width: 1199px) {
    :root {
        --section-padding: 4%;
    }
}
@media (max-width: 768px) {
    :root {
        --section-padding: 1rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Web Components Fix */
site-navbar, site-footer {
    display: block;
    width: 100%;
}

main {
    flex: 1;
    width: 100%;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--section-padding);
    position: relative;
    z-index: 100;
    margin: 0 auto;
    width: 100%;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo span {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}
.nav-links > li:has(.mega-menu) { position: static; }


.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a:hover {
    color: var(--sapphire-blue);
}

/* Dropdown Menu */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 280px;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown:hover .dropdown-menu.mega-menu { transform: translateX(-50%) translateY(0); }


.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    font-weight: 400;
    font-size: 0.95rem;
    display: block;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

/* Mega Menu */
.dropdown-menu.mega-menu { width: max-content; display: flex; padding: 3rem 5rem; gap: 5rem; position: fixed; left: 50%; transform: translateX(-50%); top: 100px; right: auto; list-style: none !important; }
.mega-col {
    flex: 1;
}
.mega-col-list, .mega-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.mega-col-list li, .mega-menu li {
    list-style: none !important;
}
.mega-title {
    font-weight: 700;
    color: var(--sapphire-blue);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(8, 76, 140, 0.1);
    padding-bottom: 0.5rem;
    display: block;
    line-height: 1.3;
    white-space: nowrap;
}
.mega-menu a {
    padding: 0.5rem 0 !important;
    white-space: nowrap !important;
    line-height: 1.4;
    font-size: 0.95rem !important;
}
.mega-menu i, .mega-menu img, .mega-menu svg {
    display: none !important;
}
.mega-menu a::before, .mega-menu a::after,
.mega-col-list li::before, .mega-col-list li::after {
    display: none !important;
    content: none !important;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--sapphire-blue);
}

/* Buttons */
.cta-btn {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(8, 76, 140, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 76, 140, 0.6);
    color: white !important;
}

.outline-btn {
    border: 2px solid var(--sapphire-blue);
    color: var(--sapphire-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.outline-btn:hover {
    background: var(--sapphire-blue);
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 70vh; /* Reduced from 80vh to bring content up */
    padding: 2rem var(--section-padding) 4rem; /* Reduced top padding */
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--sapphire-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* 3D Antigravity Area */
.antigravity-container {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    width: 100%;
}

.hero-object {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9,132,227,0.1) 0%, rgba(0,210,211,0.2) 100%);
    box-shadow: inset 0 0 50px rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    animation: float-main 6s ease-in-out infinite;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.hero-object::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop') center/cover;
    border-radius: 30%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    animation: spin 20s linear infinite;
    mix-blend-mode: multiply;
}

/* Glassmorphism Cards */
.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    width: 250px;
    box-shadow: var(--glass-shadow);
    z-index: 2;
    transition: transform 0.3s ease;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 210, 211, 0.5);
    box-shadow: 0 0 20px rgba(0, 210, 211, 0.2), var(--glass-shadow);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--sapphire-blue);
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.glass-card p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.card-1 {
    top: 5%;
    left: 2%;
    animation: float 5s ease-in-out infinite 0.5s;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.card-2 {
    bottom: 5%;
    left: 4%;
    animation: float 7s ease-in-out infinite 1s;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.card-3 {
    top: 5%;
    right: 2%;
    animation: float 6s ease-in-out infinite 1.5s;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.card-4 {
    bottom: 5%;
    right: 4%;
    animation: float 6.5s ease-in-out infinite 0.8s;
    will-change: transform;
    transform: translate3d(0,0,0);
}

/* Home Sections */
.home-section {
    padding: 6rem var(--section-padding);
    width: 100%;
}

.alternate-bg {
    background: rgba(8, 76, 140, 0.02);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.section-container {
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.center-text {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.center-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-image-container {
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    width: 100%;
    max-width: 600px;
}

.glass-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.futuristic-services-section {
    overflow-x: hidden; /* Prevent horizontal scrollbar on body from negative margins */
}

/* Premium Slider Architecture (JS Track) */
.premium-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    --card-gap: 2rem;
    --card-width: calc((100% - (2 * var(--card-gap))) / 3);
}

@media (max-width: 1200px) {
    .premium-slider-wrapper {
        --card-gap: 1.5rem;
        --card-width: calc((100% - var(--card-gap)) / 2);
    }
}

@media (max-width: 768px) {
    .premium-slider-wrapper {
        --card-gap: 1rem;
        --card-width: 100%;
        margin-top: 1.5rem;
    }
    .premium-slider-viewport {
        padding: 1rem 0 !important;
        margin: -1rem 0 !important;
    }
    .premium-slider-btn {
        display: none !important;
    }
}

.premium-slider-viewport {
    overflow: hidden;
    padding: 2rem; /* Provides 32px safe zone for shadow */
    margin: -2rem; /* Offsets padding so cards align perfectly with text */
}

.premium-slider-track {
    display: flex;
    gap: var(--card-gap);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.f-service-panel {
    flex: 0 0 var(--card-width);
    width: var(--card-width);
    box-sizing: border-box;
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.f-service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    flex-shrink: 0;
}
.f-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}
.f-service-panel:hover .f-service-img {
    transform: scale(1.06);
}

.f-service-panel:hover {
    transform: translateY(-10px);
    border-color: rgba(8, 76, 140, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Floating Navigation Buttons */
.premium-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--sapphire-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}
.premium-slider-btn:hover {
    background: var(--sapphire-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(8, 76, 140, 0.08);
}
.premium-slider-btn.prev-btn {
    left: -4rem; /* Yapdan tamamen dar tayor */
}
.premium-slider-btn.next-btn {
    right: -4rem;
}

@media (max-width: 1300px) {
    .premium-slider-btn.prev-btn {
        left: -1rem;
    }
    .premium-slider-btn.next-btn {
        right: -1rem;
    }
}

/* Navigation Dots */
.premium-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}
.premium-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(8, 76, 140, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}
.premium-slider-dots .dot.active {
    background: var(--sapphire-blue);
    transform: scale(1.3);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .premium-slider-wrapper {
        --card-width: calc((100% - var(--card-gap)) / 2);
    }
}
@media (max-width: 768px) {
    .premium-slider-wrapper {
        --card-gap: 1rem;
        --card-width: 100%;
    }
    .premium-slider-btn {
        display: none; /* Rely on dots for mobile to save space */
    }
}

.f-service-panel .f-icon {
    font-size: 3.5rem;
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.f-service-panel:hover .f-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--neon-blue);
}

.f-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.f-content h3 {
    font-size: 1.6rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.f-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    line-height: 1.6;
    flex-grow: 0;
}

.small-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    align-self: flex-start;
}

/* Grid Cards (Static Version for Sections) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.static-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blog Preview Card */
.blog-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(8, 76, 140, 0.05);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
}

.blog-content span {
    color: var(--sapphire-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Reference Logos */
.reference-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    width: 100%;
}

.reference-logos i {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.reference-logos i:hover {
    opacity: 1;
    color: var(--sapphire-blue);
    transform: scale(1.1);
}

/* Page Headers for Subpages */
.page-header {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(9,132,227,0.05) 0%, rgba(0,210,211,0.05) 100%);
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem var(--section-padding);
    margin: 0 auto;
    width: 100%;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 4rem var(--section-padding) 1rem;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin: 0 auto 3rem;
}

.footer-col h3, .footer-col h4 {
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--sapphire-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--sapphire-blue);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100%;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-main {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Interactive Incentives Section */
.interactive-incentives {
    display: flex;
    gap: 3rem;
    align-items: stretch; /* Sabit ykseklik iin eklendi */
    margin-top: 3rem;
    width: 100%;
}

.incentive-display {
    flex: 1;
    position: relative;
    padding: 4rem 3rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    width: 100%;
}

.incentive-display .display-icon {
    font-size: 5rem;
    color: var(--sapphire-blue);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 210, 211, 0.4);
}

.incentive-display h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.incentive-display p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.incentive-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inc-item {
    flex: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.inc-item i {
    font-size: 1.5rem;
    color: var(--sapphire-blue);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.inc-item:hover {
    transform: translateX(-10px);
    background: var(--bg-color);
}

.inc-item.active {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: white;
    transform: translateX(-15px);
    box-shadow: 0 10px 20px rgba(8, 76, 140, 0.08);
    border: none;
}

.inc-item.active i {
    color: white;
    opacity: 1;
}

@media (max-width: 1200px) {
    .interactive-incentives {
        flex-direction: column;
    }
    .inc-item:hover, .inc-item.active {
        transform: translateX(0) scale(1.02);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .cta-btn {
        display: none;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
        min-height: auto;
        justify-content: flex-start;
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .antigravity-container {
        width: 100%;
        margin-top: 2rem;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 2rem 5%;
        height: auto;
        justify-content: flex-start;
        align-items: center;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .antigravity-container::-webkit-scrollbar {
        display: none;
    }
    .hero-object {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.6);
        z-index: 0;
    }
    .card-1, .card-2, .card-3, .card-4 {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        margin: 0;
        animation: none;
        flex: 0 0 calc(50% - 0.75rem); /* Tablet: 2'li slider */
        max-width: none;
        scroll-snap-align: center;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .card-1, .card-2, .card-3, .card-4 {
        flex: 0 0 85% !important;
        max-width: 320px !important;
        width: 100% !important;
    }
}

@media (max-width: 1200px) {
    
    .split-layout, .split-layout.reverse {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    
    .home-section {
        padding: 4rem var(--section-padding);
    }
    
    .grid-cards {
        gap: 1.5rem;
    }
    
    .futuristic-services-container {
        padding: 0 0 2rem;
        gap: 1rem;
    }
    
    .f-service-panel {
        flex: 0 0 100%; /* Show 1 item on mobile */
        height: auto;
        min-height: 200px;
    }

    .slider-controls {
        top: auto;
        bottom: -1.5rem;
        right: 50%;
        transform: translateX(50%);
    }
    .f-service-panel:hover {
        height: auto;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.mobile-nav-links > li > a, .mobile-nav-links > li > span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
    margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    margin-top: 1rem;
}

.mobile-dropdown.open > span {
    color: var(--sapphire-blue);
}

.mobile-dropdown.open > span i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li {
    margin-bottom: 1rem;
}

.mobile-dropdown-menu li:last-child {
    margin-bottom: 0;
}

.mobile-dropdown-menu a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
}

.mobile-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.mobile-contact-info h4 {
    font-size: 1.2rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.mobile-contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.mobile-cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* Extracted from blog-detay.html */

        /* Blog Detail Specific Styles */
        .article-hero {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .article-hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .article-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
            z-index: 2;
        }
        
        .article-hero-content {
            position: relative;
            z-index: 3;
            padding: 0 var(--section-padding);
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: white;
            margin-top: 5rem;
        }

        .article-category {
            display: inline-block;
            background: var(--sapphire-blue);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .article-meta i {
            margin-right: 0.5rem;
            color: var(--neon-blue);
        }

        .article-container {
            padding: 5rem var(--section-padding);
            width: 100%;
            background: var(--bg-color);
        }

        .article-content {
            
            margin: 0 auto;
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
        }

        .article-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .article-content h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin: 2.5rem 0 1rem;
        }

        .article-content blockquote {
            border-left: 5px solid var(--sapphire-blue);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: rgba(8, 76, 140, 0.05);
            font-size: 1.25rem;
            font-style: italic;
            color: var(--sapphire-blue);
            border-radius: 0 10px 10px 0;
        }

        .share-section {
            max-width: 1080px;
            margin: 3rem auto 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.04);
        }

        .share-buttons {
            display: flex;
            gap: 1rem;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            color: var(--sapphire-blue);
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            cursor: pointer;
            outline: none;
        }

        .share-btn:hover {
            background: var(--sapphire-blue);
            color: white;
            transform: translateY(-3px);
        }

        .share-btn.share-linkedin:hover { background: #0A66C2; color: #ffffff; }
        .share-btn.share-x:hover { background: #000000; color: #ffffff; }
        .share-btn.share-facebook:hover { background: #1877F2; color: #ffffff; }
        .share-btn.share-whatsapp:hover { background: #25D366; color: #ffffff; }
        .share-btn.share-copy:hover { background: var(--sapphire-blue, #084C8C); color: #ffffff; }

        .back-to-blog {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .back-to-blog:hover {
            color: var(--sapphire-blue);
        }

        /* Related Blogs Styles */
        .related-blogs-section {
            padding: 4rem var(--section-padding) 6rem;
            background: linear-gradient(to bottom, var(--bg-color), white);
            width: 100%;
        }
        .related-title {
            font-size: 2rem;
            color: var(--sapphire-blue);
            margin-bottom: 3rem;
            text-align: center;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 3rem;
            width: 100%;
        }
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            cursor: pointer;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(8, 76, 140, 0.1);
        }
        .blog-image-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .blog-card:hover .blog-image { transform: scale(1.08); }
        .blog-category-badge {
            position: absolute; top: 1rem; right: 1rem;
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px);
            color: var(--sapphire-blue); padding: 0.5rem 1.2rem;
            border-radius: 30px; font-size: 0.85rem; font-weight: 700;
        }
        .blog-content { padding: 2.5rem 2rem; flex: 1; display: flex; flex-direction: column; }
        .blog-title { font-size: 1.4rem; color: var(--text-primary); margin-bottom: 1rem; font-weight: 700; transition: color 0.3s ease; }
        .blog-card:hover .blog-title { color: var(--sapphire-blue); }
        .blog-excerpt { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; flex: 1; }
        .blog-read-more { display: flex; align-items: center; gap: 0.5rem; color: var(--neon-blue); font-weight: 700; }
        .blog-read-more i { transition: transform 0.3s ease; }
        .blog-card:hover .blog-read-more i { transform: translateX(5px); }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 2rem;
            }
        }
    

.safir-inline-795f3c {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.safir-inline-b25d56 {
    color: var(--text-primary);
}

.safir-inline-ee8a4b {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.safir-inline-93d42e {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Extracted from blog.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .blog-section {
            padding: 4rem var(--section-padding) 6rem;
            margin: 0 auto;
            width: 100%;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 3rem;
            width: 100%;
        }

        /* Modern Blog Card */
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            cursor: pointer;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(8, 76, 140, 0.1);
        }

        .blog-image-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .blog-card:hover .blog-image {
            transform: scale(1.08);
        }

        .blog-category-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            color: var(--sapphire-blue);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
            z-index: 2;
        }

        .blog-content {
            padding: 2.5rem 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-title {
            font-size: 1.4rem;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 1rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        .blog-card:hover .blog-title {
            color: var(--sapphire-blue);
        }

        .blog-excerpt {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            flex: 1; /* Pushes the read-more button to the bottom */
        }

        .blog-read-more {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--neon-blue);
            font-weight: 700;
            font-size: 1rem;
        }
        .blog-read-more i {
            transition: transform 0.3s ease;
        }
        .blog-card:hover .blog-read-more i {
            transform: translateX(5px);
        }

        /* Abstract shapes for hero */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 {
            width: 300px;
            height: 300px;
            background: rgba(8, 76, 140, 0.06);
            top: -100px;
            left: -100px;
        }
        .shape-2 {
            width: 400px;
            height: 400px;
            background: rgba(0, 210, 211, 0.15);
            bottom: -200px;
            right: -100px;
        }

    

.safir-inline-c962d7 {
    position: relative;
    z-index: 2;
}

/* Extracted from devlet-tesvikleri.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .programs-nav {
            padding: 3rem var(--section-padding) 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-pill {
            background: white;
            color: var(--sapphire-blue);
            padding: 1rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .nav-pill:hover {
            background: var(--sapphire-blue);
            color: white;
            transform: translateY(-3px);
        }

        .programs-container {
            padding: 4rem var(--section-padding) 6rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .program-card {
            background: white;
            border-radius: 20px;
            padding: 4rem 3rem;
            margin-bottom: 4rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
        }

        .program-card h2 {
            font-size: 2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .program-card h2 i {
            color: var(--neon-blue);
            background: rgba(0, 210, 211, 0.1);
            padding: 1rem;
            border-radius: 15px;
            font-size: 1.5rem;
        }

        .program-card p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .program-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(8, 76, 140, 0.05);
            color: var(--sapphire-blue);
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
            word-break: break-all;
        }

        .program-link:hover {
            background: var(--sapphire-blue);
            color: white;
        }

        .email-alert {
            background: linear-gradient(135deg, rgba(8, 76, 140, 0.05), rgba(0, 210, 211, 0.05));
            border-left: 4px solid var(--sapphire-blue);
            padding: 1.5rem 2rem;
            border-radius: 0 15px 15px 0;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .email-alert i {
            font-size: 2rem;
            color: var(--neon-blue);
        }

        .email-alert p {
            margin: 0;
            font-size: 1.05rem;
        }
        
        .email-alert a {
            color: var(--sapphire-blue);
            font-weight: 700;
            text-decoration: none;
        }

        /* Image Placeholder Block */
        .image-placeholder {
            width: 100%;
            height: 300px;
            background: rgba(0,0,0,0.03);
            border: 2px dashed rgba(0,0,0,0.04);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            margin: 2rem 0;
            text-align: center;
            padding: 2rem;
        }

        .image-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: rgba(0,0,0,0.2);
        }

        /* Infographic Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(8, 76, 140, 0.1);
        }

        .info-card .info-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .info-card .info-title {
            font-size: 0.95rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .info-card .info-value {
            font-size: 1.8rem;
            color: var(--text-primary);
            font-weight: 800;
        }

        /* Specific colors for the first infographic */
        .card-red .info-icon { color: #e74c3c; }
        .card-green .info-icon { color: #2ecc71; }
        .card-blue .info-icon { color: #3498db; }
        .card-purple .info-icon { color: #9b59b6; }

        /* Conditions List */
        .conditions-section {
            margin-top: 3rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 2rem;
            margin-bottom: 2rem;
        }
        .conditions-section h3 {
            font-size: 1.4rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
        }
        .conditions-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .condition-item {
            background: linear-gradient(to right, rgba(8, 76, 140, 0.05), white);
            border-left: 4px solid var(--sapphire-blue);
            padding: 1.2rem 1.5rem;
            border-radius: 0 10px 10px 0;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .condition-item i {
            color: var(--neon-blue);
            font-size: 1.2rem;
        }
        .condition-item:hover {
            transform: translateX(10px);
            background: linear-gradient(to right, rgba(8, 76, 140, 0.1), white);
            box-shadow: 0 6px 15px rgba(8, 76, 140, 0.05);
        }

        @media (max-width: 768px) {
            .program-card {
                padding: 2rem;
            }
            .email-alert {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    

.safir-inline-7fdfe7 {
    color:var(--text-secondary);
    display:block;
    margin-top:0.2rem;
}

/* Extracted from erp.html */

        /* Specific Styles for Detail Page */
        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 6rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }
        
        .detail-section {
            padding: 4rem var(--section-padding);
            margin: 0 auto;
            width: 100%;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: -3rem auto 4rem;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-icon {
            font-size: 2.5rem;
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--sapphire-blue);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Checkmark List */
        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .check-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            font-weight: 600;
            color: var(--text-primary);
        }
        .check-list i {
            color: var(--neon-blue);
            font-size: 1.2rem;
        }

        /* Modern Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 4rem auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 24px;
            height: 100%;
            width: 2px;
            background: rgba(8, 76, 140, 0.06);
        }
        .timeline-item {
            position: relative;
            padding-left: 70px;
            margin-bottom: 3rem;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-icon {
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--sapphire-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 0 5px rgba(8, 76, 140, 0.06);
            z-index: 1;
        }
        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.02);
        }
        .timeline-content h4 {
            color: var(--sapphire-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        .timeline-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .timeline::before {
                display: none;
            }
            .timeline-item {
                padding-left: 0;
            }
            .timeline-icon {
                position: relative;
                left: auto;
                top: auto;
                margin: 0 auto 1rem;
            }
            .timeline-content {
                text-align: center;
                padding: 1.5rem;
            }
        }

        /* Content Blocks */
        .content-block {
            margin-bottom: 4rem;
        }
        .content-block h3 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .content-block p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .cta-banner {
            background: linear-gradient(135deg, var(--sapphire-blue), #075b9e);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            margin: 4rem auto;
            width: 100%;
            box-shadow: 0 20px 40px rgba(8, 76, 140, 0.08);
        }
        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .cta-banner p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-inline: auto;
        }
        .cta-banner .cta-btn {
            background: white;
            color: var(--sapphire-blue);
            border: none;
        }
        .cta-banner .cta-btn:hover {
            background: var(--neon-blue);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.4);
        }

    

.safir-inline-bcc4d8 {
    color: var(--neon-blue);
}

.safir-inline-cf0f3a {
    margin-top: 2rem;
}

.safir-inline-c809d2 {
    color: var(--sapphire-blue);
}

.safir-inline-87713c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.safir-inline-6182b0 {
    background: rgba(8, 76, 140, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 0;
}

.safir-inline-fa415b {
    font-size: 1.5rem;
}

.safir-inline-1f0261 {
    font-size: 1rem;
}

.safir-inline-abef5a {
    background: rgba(0, 210, 211, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 0;
}

.safir-inline-e7108b {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.safir-inline-95f7f0 {
    justify-content: center;
}

.safir-inline-9ef77e {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* Extracted from finansal-yonetim.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .finance-intro {
            padding: 5rem var(--section-padding);
            width: 100%;
            background: white;
            text-align: center;
            /* max-width: 900px; */
            margin: 0 auto;
        }

        .finance-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .finance-intro .highlight {
            font-weight: 700;
            color: var(--sapphire-blue);
        }

        /* Split Layout for Services */
        .service-section {
            padding: 5rem var(--section-padding);
            width: 100%;
            background: linear-gradient(to bottom, var(--bg-color), white);
        }

        .split-layout {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 6rem;
        }

        .split-layout.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1;
        }

        .split-content h2 {
            font-size: 2.2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .split-content h2 i {
            color: var(--neon-blue);
            font-size: 2.5rem;
        }

        .split-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 2rem;
        }

        .split-content p::before {
            content: '\f111'; /* FontAwesome circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.3rem;
            font-size: 0.6rem;
            color: var(--neon-blue);
        }

        .split-image {
            flex: 1;
            position: relative;
        }

        .split-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            position: relative;
            z-index: 2;
        }

        .image-backdrop {
            position: absolute;
            top: -2rem;
            left: -2rem;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(8, 76, 140, 0.1), rgba(0, 210, 211, 0.1));
            border-radius: 20px;
            z-index: 1;
        }

        .split-layout.reverse .image-backdrop {
            left: auto;
            right: -2rem;
        }

        /* Banner for Analysis & Reporting */
        .analysis-banner {
            background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
            padding: 5rem var(--section-padding);
            border-radius: 30px;
            color: white;
            text-align: center;
            box-shadow: 0 20px 40px rgba(8, 76, 140, 0.06);
            max-width: 1200px;
            margin: 0 auto 5rem;
            position: relative;
            overflow: hidden;
        }

        .analysis-banner i {
            font-size: 5rem;
            opacity: 0.1;
            position: absolute;
            top: -10px;
            right: 50px;
        }

        .analysis-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .analysis-banner p {
            font-size: 1.25rem;
            line-height: 1.8;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Schema Design */
        .schema-wrapper {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            margin: 0 auto 6rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            max-width: 1200px;
        }

        .schema-title {
            font-size: 2rem;
            color: var(--sapphire-blue);
            text-align: center;
            margin-bottom: 3rem;
        }

        .schema-layout {
            display: flex;
            gap: 4rem;
            align-items: flex-start;
        }

        .schema-main-flow {
            flex: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .schema-box {
            background: white;
            border: 2px solid var(--sapphire-blue);
            border-radius: 15px;
            padding: 1.5rem;
            width: 100%;
            box-shadow: 0 10px 20px rgba(8, 76, 140, 0.05);
            transition: all 0.3s ease;
        }

        .schema-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(8, 76, 140, 0.1);
        }

        .box-title {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding-bottom: 0.5rem;
            text-align: center;
        }

        .schema-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .schema-box ul li {
            padding: 0.3rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .schema-box ul li::before {
            content: '\f111';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.4rem;
            color: var(--neon-blue);
        }

        .arrow-down {
            font-size: 2rem;
            color: var(--neon-blue);
            margin: 1rem 0;
            animation: bounceDown 2s infinite;
        }

        @keyframes bounceDown {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(10px); }
            60% { transform: translateY(5px); }
        }

        .schema-core {
            display: flex;
            align-items: stretch;
            gap: 1rem;
            width: 100%;
        }

        .core-arrows {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: var(--neon-blue);
        }

        .result-box, .final-box {
            background: var(--sapphire-blue);
            color: white;
            text-align: center;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 1rem;
            width: 60%;
            border: none;
        }
        
        .final-box {
            background: var(--neon-blue);
        }

        .schema-side-flow {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            margin-top: 5rem;
        }

        .side-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .side-label {
            background: rgba(8, 76, 140, 0.05);
            color: var(--sapphire-blue);
            font-weight: 700;
            padding: 1rem;
            border-radius: 10px;
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
        }

        .side-item i {
            color: var(--neon-blue);
            font-size: 1.2rem;
        }

        .side-value {
            background: var(--sapphire-blue);
            color: white;
            font-weight: 700;
            padding: 1rem;
            border-radius: 10px;
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(8, 76, 140, 0.06);
        }

        /* Styled List (Reused from Devlet Tesvikleri) */
        .conditions-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .condition-item {
            background: linear-gradient(to right, rgba(8, 76, 140, 0.05), white);
            border-left: 4px solid var(--sapphire-blue);
            padding: 1.5rem;
            border-radius: 0 15px 15px 0;
            color: var(--text-primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }
        .condition-item i {
            color: var(--neon-blue);
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }
        .condition-item:hover {
            transform: translateX(10px);
            background: linear-gradient(to right, rgba(8, 76, 140, 0.1), white);
            box-shadow: 0 8px 20px rgba(8, 76, 140, 0.08);
        }

        @media (max-width: 1200px) {
            .split-layout, .split-layout.reverse {
                flex-direction: column;
                gap: 3rem;
            }
            .split-content p::before {
                top: 0.4rem;
            }
            .image-backdrop {
                display: none;
            }
            .schema-layout {
                flex-direction: column;
            }
            .schema-core {
                flex-direction: column;
            }
            .core-arrows {
                transform: rotate(90deg);
                margin: 1rem auto;
            }
            .schema-side-flow {
                margin-top: 2rem;
                width: 100%;
            }
        }
    

.safir-inline-d5e8c5 {
    flex:1;
}

.safir-inline-5cbeff {
    flex:1;
    background: rgba(8, 76, 140, 0.02);
}

.safir-inline-c42e0e {
    margin-bottom: 0;
}

.safir-inline-e1aaaf {
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.1), rgba(8, 76, 140, 0.1));
    left: 2rem;
}

.safir-inline-26c6d7 {
    border-left-color: var(--neon-blue);
}

.safir-inline-c0a1a3 {
    color: var(--sapphire-blue);
    display:block;
    margin-bottom:0.4rem;
    font-size:1.1rem;
}

.safir-inline-8200f2 {
    font-size:1rem;
    color: var(--text-secondary);
    line-height:1.6;
    display:block;
}

.safir-inline-6525ad {
    margin-top: 6rem;
    margin-bottom: 0;
}

.safir-inline-e398a1 {
    background: linear-gradient(135deg, rgba(8, 76, 140, 0.1), rgba(0, 210, 211, 0.1));
    left: -2rem;
}

.safir-inline-449a46 {
    font-size:1.05rem;
    color: var(--text-primary);
    line-height:1.6;
    font-weight:600;
}

/* Extracted from gizlilik.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .privacy-content {
            max-width: 900px;
            margin: 4rem auto 8rem;
            padding: 0 var(--section-padding);
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .privacy-content p {
            margin-bottom: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .privacy-content {
                padding: 2rem;
            }
        }
    

/* Extracted from hakkimizda.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .about-section {
            max-width: 1200px !important;
            margin: 0 auto !important;
            padding: 4rem 1.5rem !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Two Column Layout */
        .split-layout {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 8rem;
        }

        .split-layout.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1;
        }

        .split-content h2 {
            font-size: 2.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .split-content h2::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, rgba(8, 76, 140, 0.06), transparent);
        }

        .split-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .split-image {
            flex: 1;
            position: relative;
        }

        .split-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            position: relative;
            z-index: 2;
        }

        .image-backdrop {
            position: absolute;
            top: 2rem;
            left: -2rem;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(8, 76, 140, 0.1), rgba(0, 210, 211, 0.1));
            border-radius: 20px;
            z-index: 1;
        }
        
        .split-layout.reverse .image-backdrop {
            left: auto;
            right: -2rem;
        }

        /* Stats Grid */
        .stats-wrapper {
            background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
            padding: 5rem var(--section-padding);
            border-radius: 30px;
            color: white;
            margin: 0 auto 6rem;
            box-shadow: 0 20px 40px rgba(8, 76, 140, 0.06);
        }

        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .stats-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .stats-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.9;
        }

        @media (max-width: 1200px) {
            .split-layout, .split-layout.reverse {
                flex-direction: column;
                gap: 3rem;
            }
            .image-backdrop {
                display: none;
            }
        }

    

/* Extracted from hizmetler.html */

        .service-section {
            padding: 5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .service-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            color: var(--sapphire-blue);
        }
        .service-header i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .service-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-left: 4px solid var(--sapphire-blue);
        }
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(8, 76, 140, 0.05);
        }
        .service-item h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        .service-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
    

.safir-inline-211a04 {
    border-bottom: none;
}

/* Extracted from iletisim.html */

        .page-hero {
            position: relative;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .contact-container {
            width: 100%;
            margin: 4rem auto 6rem;
            padding: 0 var(--section-padding);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: stretch;
        }

        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        .contact-section-title {
            font-size: 2rem;
            color: var(--sapphire-blue);
            margin-bottom: 2rem;
        }

        /* Form Styles */
        .contact-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .form-control {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            color: var(--text-primary);
            background: #f8fafc;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.1);
        }
        textarea.form-control {
            resize: vertical;
            min-height: 140px;
            flex-grow: 1;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            margin-top: auto;
        }
        .checkbox-group input[type="checkbox"] {
            margin-top: 0.3rem;
            width: 18px;
            height: 18px;
            accent-color: var(--sapphire-blue);
            cursor: pointer;
        }
        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .checkbox-group a {
            color: var(--text-primary);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--sapphire-blue);
            text-underline-offset: 4px;
        }

        .submit-btn {
            background: var(--sapphire-blue);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .submit-btn:hover {
            background: var(--neon-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.3);
        }

        /* Location Styles */
        .location-info {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            height: 100%;
        }
        .address-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        .address-text-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .address-icon {
            font-size: 2rem;
            color: var(--sapphire-blue);
            background: rgba(8, 76, 140, 0.1);
            padding: 1rem;
            border-radius: 12px;
        }
        .address-text {
            color: var(--text-primary);
            line-height: 1.5;
            font-size: 0.95rem;
        }
        .address-text strong {
            font-weight: 700;
            color: var(--sapphire-blue);
        }
        .directions-btn {
            background: var(--sapphire-blue);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .directions-btn:hover {
            background: var(--neon-blue);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            flex-grow: 1;
            min-height: 350px;
            position: relative;
        }
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        @media (max-width: 768px) {
            .address-card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .address-text-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .directions-btn {
                width: 100%;
                text-align: center;
            }
        }

    

.safir-inline-a3ef57 {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.safir-inline-9f1494 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.safir-inline-d95a18 {
    flex: 1;
    min-width: 320px;
    padding: 1.5rem;
    justify-content: flex-start;
}

.safir-inline-a1f282 {
    font-size: 1.2rem;
    padding: 1rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safir-inline-b03375 {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.05rem;
    font-weight: 500;
}

.safir-inline-3e377c {
    color: inherit;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.safir-inline-db04d5 {
    position: relative;
    overflow: hidden;
}

.safir-inline-671037 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at -20% 50%, rgba(9,132,227,0.05) 0%, transparent 70%);
    z-index: -1;
}

.safir-inline-da7401 {
    color: var(--sapphire-blue);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.safir-inline-6f7412 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.safir-inline-c8d82a {
}
        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .checkbox-group a {
            color: var(--text-primary);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--sapphire-blue);
            text-underline-offset: 4px;
        }

        .submit-btn {
            background: var(--sapphire-blue);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .submit-btn:hover {
            background: var(--neon-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.3);
        }

        /* Location Styles */
        .location-info {
            background: #f8fafc;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .address-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
        }
        .address-text-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .address-icon {
            font-size: 2rem;
            color: var(--sapphire-blue);
            background: rgba(8, 76, 140, 0.1);
            padding: 1rem;
            border-radius: 12px;
        }
        .address-text {
            color: var(--text-primary);
            line-height: 1.5;
            font-size: 0.95rem;
        }
        .address-text strong {
            font-weight: 700;
            color: var(--sapphire-blue);
        }
        .directions-btn {
            background: var(--sapphire-blue);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .directions-btn:hover {
            background: var(--neon-blue);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            flex-grow: 1;
            min-height: 350px;
            position: relative;
        }
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        @media (max-width: 768px) {
            .address-card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .address-text-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .directions-btn {
                width: 100%;
                text-align: center;
            }
        }

    

.safir-inline-a3ef57 {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.safir-inline-9f1494 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.safir-inline-d95a18 {
    flex: 1;
    min-width: 320px;
    padding: 1.5rem;
    justify-content: flex-start;
}

.safir-inline-a1f282 {
    font-size: 1.2rem;
    padding: 1rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safir-inline-b03375 {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.05rem;
    font-weight: 500;
}

.safir-inline-3e377c {
    color: inherit;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.safir-inline-db04d5 {
    position: relative;
    overflow: hidden;
}

.safir-inline-671037 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at -20% 50%, rgba(9,132,227,0.05) 0%, transparent 70%);
    z-index: -1;
}

.safir-inline-da7401 {
    color: var(--sapphire-blue);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.safir-inline-6f7412 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.safir-inline-c8d82a {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.safir-inline-645b86 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
}

.safir-inline-c4ad81 {
    flex: 1;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--neon-blue);
}

.safir-inline-d58e81 {
    font-size: 2.2rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.safir-inline-5b3dce {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.safir-inline-d16b06 {
    flex: 1;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--sapphire-blue);
}

.safir-inline-600069 {
    margin-left: 0.5rem;
}

.safir-inline-d85c4e {
    position: relative;
}

.safir-inline-181181 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-blue), var(--sapphire-blue));
    filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
    transform: translate(-10%, 10%);
}

.safir-inline-83d7ea {
    position: relative;
    z-index: 1;
}

.safir-inline-a33e22 {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(8, 76, 140, 0.05);
    width: 100%;
    display: block;
}

.safir-inline-3a60ef {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-color: rgba(8, 76, 140, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.safir-inline-a97ea0 {
    background: rgba(9,132,227,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sapphire-blue);
    font-size: 1.4rem;
}

.safir-inline-538f15 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.safir-inline-556fbd {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.safir-inline-28f318 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(9,132,227,0.02) 100%);
}

.safir-inline-5fe6d9 {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.safir-inline-32b8fe {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(0,210,211,0.1);
    color: var(--neon-blue);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0,210,211,0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.safir-inline-c02c7d {
    margin-right: 5px;
}

.safir-inline-26d15c {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.safir-inline-6faf11 {
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safir-inline-79d717 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.safir-inline-fd0447 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    border: 1px solid rgba(0,0,0,0.02);
}

.safir-inline-0f561b {
    background: rgba(9,132,227,0.1);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sapphire-blue);
    font-size: 1.4rem;
}

.safir-inline-ec3152 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.safir-inline-12c979 {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.safir-inline-e61521 {
    background: rgba(0,210,211,0.1);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.4rem;
}

.safir-inline-aea51f {
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.safir-inline-526380 {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.safir-inline-c473aa {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.safir-inline-c6c7da {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.safir-inline-e5af8d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safir-inline-91775b {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sapphire-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safir-inline-4532b6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.safir-inline-492f6b {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.safir-inline-0e6593 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.safir-inline-e95c36 {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.safir-inline-a99e8d {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.safir-inline-8980fe {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safir-inline-2989fc {
    color: var(--sapphire-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.safir-inline-d60407 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safir-inline-0bb3f9 {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.safir-inline-20711e {
    margin-top: 3.5rem;
}

.safir-inline-a31b64 {
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
}

/* Extracted from kvkk.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .kvkk-content {
            max-width: 1260px;
            margin: 4rem auto 8rem;
            padding: 0 var(--section-padding);
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .kvkk-content h3 {
            color: var(--sapphire-blue);
            font-size: 1.5rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(8, 76, 140, 0.1);
        }
        .kvkk-content h3:first-child {
            margin-top: 0;
        }
        .kvkk-content p {
            margin-bottom: 1.5rem;
        }
        .kvkk-content ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        .kvkk-content li {
            margin-bottom: 0.8rem;
        }
        .contact-info {
            background: rgba(8, 76, 140, 0.05);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
            border-left: 4px solid var(--sapphire-blue);
        }

        @media (max-width: 768px) {
            .kvkk-content {
                padding: 2rem;
            }
        }
    

.safir-inline-5bc010 {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 0;
}

.safir-inline-3d7b01 {
    color: var(--neon-blue);
    width: 20px;
}

.safir-inline-c610b8 {
    color: inherit;
}

/* Extracted from referanslar.html */

        .page-hero.ref-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            display: flex;
            align-items: center;
            gap: 4rem;
            width: 100%;
            overflow: hidden;
        }

        .page-hero-content {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }

        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.15rem;
            line-height: 1.7;
        }

        .page-hero-image {
            flex: 1;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }

        .page-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: 20%; }

        /* References Layout */
        .references-container {
            display: flex;
            align-items: flex-start;
            gap: 3rem;
            padding: 5rem var(--section-padding) 8rem;
            width: 100%;
        }

        /* Sidebar Navigation */
        .category-sidebar {
            position: sticky;
            top: 120px;
            min-width: 280px;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .category-sidebar h3 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .category-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .category-nav a {
            display: block;
            padding: 0.8rem 1rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .category-nav a:hover, .category-nav a.active {
            background: rgba(8, 76, 140, 0.05);
            color: var(--sapphire-blue);
            transform: translateX(5px);
        }

        /* Main Content */
        .references-content {
            flex: 1;
            width: 100%;
        }

        .ref-category-section {
            margin-bottom: 5rem;
            scroll-margin-top: 120px; /* offset for sticky header if any */
        }

        .ref-category-section h2 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .ref-category-section h2::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, rgba(8, 76, 140, 0.06), transparent);
        }

        /* Logo Grid & Cards */
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .logo-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: default;
            overflow: hidden;
        }

        .logo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(8, 76, 140, 0.1);
            border-color: rgba(8, 76, 140, 0.06);
            background: linear-gradient(to bottom, white, rgba(8, 76, 140, 0.02));
        }

        .logo-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.4s ease;
        }

        .logo-card:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .page-hero.ref-hero {
                flex-direction: column;
                text-align: center;
                padding-top: 6rem;
            }
            .references-container {
                flex-direction: column;
            }
            .category-sidebar {
                width: 100%;
                position: static;
                margin-bottom: 2rem;
            }
            .logo-grid {
                grid-template-columns: 1fr;
            }
        }
    

/* Extracted from stratejik-yonetim.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 6rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .strategy-intro {
            padding: 5rem var(--section-padding);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 5rem;
            background: white;
        }

        .strategy-intro-content {
            flex: 1;
        }
        
        .strategy-intro-content h2 {
            font-size: 2.2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .strategy-intro-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .strategy-intro-image {
            flex: 1;
            position: relative;
        }

        .strategy-intro-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }

        .strategy-steps-section {
            padding: 6rem var(--section-padding);
            width: 100%;
            background: linear-gradient(to bottom, var(--bg-color), white);
        }

        .steps-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .steps-header h2 {
            font-size: 2.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
        }
        .steps-header p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .steps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            flex: 1 1 300px;
            max-width: 350px;
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--sapphire-blue), var(--neon-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(8, 76, 140, 0.1);
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: rgba(8, 76, 140, 0.1);
            color: var(--sapphire-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-icon {
            background: var(--sapphire-blue);
            color: white;
            transform: scale(1.1);
        }

        .step-number {
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(8, 76, 140, 0.08); /* slightly more visible */
            z-index: 0;
            line-height: 1;
        }

        .step-title {
            font-size: 1.25rem;
            color: var(--text-primary);
            font-weight: 700;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 1200px) {
            .strategy-intro {
                flex-direction: column;
            }
        }
    

/* Extracted from turquality.html */

        /* Specific Styles for Turquality Page */
        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 6rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(8, 76, 140, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title:not(.ref-hero .page-hero-title) {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle:not(.ref-hero .page-hero-subtitle) {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(15px);
            will-change: transform;
            transform: translateZ(0);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(8, 76, 140, 0.06); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .tq-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: -4rem auto 4rem;
            width: 100%;
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 0 var(--section-padding);
        }
        .tq-stat-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .tq-stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 1);
        }
        .tq-stat-icon {
            font-size: 3rem;
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        .tq-stat-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--sapphire-blue);
            margin-bottom: 0.5rem;
        }
        .tq-stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .detail-section {
            padding: 2rem var(--section-padding) 6rem;
            margin: 0 auto;
            width: 100%;
        }

        .content-block {
            margin-bottom: 5rem;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .section-header {
            font-size: 2.2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Split Layout */
        .split-layout {
            display: flex;
            align-items: stretch;
            gap: 4rem;
        }
        .split-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .split-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .split-image {
            flex: 1;
            position: relative;
        }
        .split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }

        .info-box {
            margin-top: 2rem;
            background: rgba(8, 76, 140, 0.03);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--sapphire-blue);
        }
        .info-box h4 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .external-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            background: rgba(8, 76, 140, 0.1);
            color: var(--sapphire-blue);
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(8, 76, 140, 0.06);
            margin-top: 1rem;
        }
        .external-link-btn:hover {
            background: var(--sapphire-blue);
            color: white;
            transform: translateX(5px);
        }

        /* 10 Topic Grid */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .topic-card {
            background: white;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            height: 100%;
        }
        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--sapphire-blue);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(8, 76, 140, 0.1);
            border-color: rgba(8, 76, 140, 0.06);
        }
        .topic-card:hover::before {
            transform: scaleX(1);
        }
        .topic-icon {
            font-size: 2rem;
            color: var(--neon-blue);
            margin-bottom: 0.8rem;
            transition: transform 0.3s ease;
        }
        .topic-card:hover .topic-icon {
            transform: scale(1.1);
        }
        .topic-title {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.15rem;
        }
        .topic-sublist {
            margin-top: 1.2rem;
            text-align: left;
            width: 100%;
            font-size: 0.95rem;
            color: var(--text-secondary);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1.2rem;
        }
        .topic-sublist ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .topic-sublist li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.2rem;
            line-height: 1.4;
        }
        .topic-sublist li::before {
            content: '-';
            position: absolute;
            left: 0;
            color: var(--neon-blue);
            font-weight: bold;
        }

        /* Timeline CSS */
        .timeline-container {
            margin-top: 3rem;
            position: relative;
            padding-left: 3rem;
        }
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: rgba(8, 76, 140, 0.1);
            border-radius: 4px;
        }
        .timeline-step {
            position: relative;
            margin-bottom: 3rem;
        }
        .timeline-step:last-child {
            margin-bottom: 0;
        }
        .timeline-marker {
            position: absolute;
            left: -3rem;
            top: 0;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--sapphire-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transform: translateX(-50%);
            box-shadow: 0 0 0 5px white, 0 5px 15px rgba(8, 76, 140, 0.08);
            z-index: 2;
        }
        .timeline-content {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .timeline-content:hover {
            box-shadow: 0 15px 30px rgba(8, 76, 140, 0.08);
            border-color: rgba(8, 76, 140, 0.06);
        }
        .timeline-content h4 {
            color: var(--sapphire-blue);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .timeline-content p {
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .cta-banner {
            background: linear-gradient(135deg, var(--sapphire-blue), #075b9e);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            margin: 2rem auto;
            width: 100%;
            box-shadow: 0 20px 40px rgba(8, 76, 140, 0.08);
        }
        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .cta-banner p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-inline: auto;
        }
        .cta-banner .cta-btn {
            background: white;
            color: var(--sapphire-blue);
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
        }
        .cta-banner .cta-btn:hover {
            background: var(--neon-blue);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.4);
        }

        /* Kazanmlar Grid */
        .kazanim-container {
            display: flex;
            gap: 2rem;
            margin-top: 4rem;
        }
        .kazanim-col {
            flex: 1;
            background: linear-gradient(135deg, rgba(8, 76, 140, 0.03), rgba(0, 210, 211, 0.05));
            border: 2px solid rgba(8, 76, 140, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(8, 76, 140, 0.05);
        }
        .kazanim-col-title {
            text-align: center;
            font-size: 1.5rem;
            color: var(--sapphire-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            border-bottom: 2px dashed rgba(8, 76, 140, 0.06);
            padding-bottom: 1rem;
        }
        .kazanim-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .kazanim-item {
            background: white;
            color: var(--text-primary);
            font-weight: 700;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border-left: 4px solid var(--neon-blue);
            transition: all 0.3s ease;
        }
        .kazanim-item:hover {
            transform: translateX(10px);
            border-left-color: white;
            box-shadow: 0 8px 20px rgba(8, 76, 140, 0.1);
            background: var(--sapphire-blue);
            color: white;
        }

        @media (max-width: 1200px) {
            .kazanim-container {
                flex-direction: column;
            }
            .split-layout {
                flex-direction: column;
                gap: 2rem;
            }
            .split-image {
                min-height: 300px;
            }
            .timeline-container {
                padding-left: 2rem;
            }
            .timeline-marker {
                left: -2rem;
                width: 2rem;
                height: 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .timeline-container {
                padding-left: 0;
            }
            .timeline-container::before {
                display: none;
            }
            .timeline-marker {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                margin: 0 auto 1rem;
                width: 3rem;
                height: 3rem;
                font-size: 1.2rem;
            }
            .timeline-content {
                text-align: center;
                padding: 1.5rem;
            }
            .timeline-step {
                margin-bottom: 2rem;
            }
        }
    

.safir-inline-31d92e {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.safir-inline-e49205 {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.safir-inline-bc0e39 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: normal;
    margin-left: 0.5rem;
}

.safir-inline-bbee7b {
    list-style-type: none;
    padding-left: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

.safir-inline-070fa1 {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
}

.safir-inline-3338ca {
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
}

.safir-inline-abfa35 {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.nav-logo-img { height: 70px; width: auto; display: block; }
.mobile-menu-logo-img { height: 50px; }
.mobile-dropdown-icon { pointer-events: none; }
.contact-link-text { color: inherit; text-decoration: none; }
.footer-logo-img { height: 44px!important; margin-bottom: 1.5rem; display: block; }

/* Global Mobile Padding Fixes */
@media (max-width: 768px) {
    .content-block,
    .program-card,
    .kvkk-content,
    .privacy-content,
    .contact-form,
    .f-service-panel,
    .step-card,
    .tq-stat-card,
    .info-card,
    .timeline-content,
    .article-content,
    .kazanim-col,
    .service-item,
    .stat-card {
        padding: 1.25rem !important;
    }
    
    .page-hero, .ref-hero {
        padding: 6rem 1rem 4rem !important;
    }

    .page-hero-title:not(.ref-hero .page-hero-title) {
        font-size: 2.2rem !important;
        word-break: break-word;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .ref-category-section h2 {
        justify-content: center;
        text-align: center;
    }
    .ref-category-section h2::after {
        display: none;
    }

    .tq-stats-grid, .stats-grid {
        margin-top: -2rem !important;
        margin-bottom: 2rem !important;
    }

    .safir-inline-79d717 {
        margin-bottom: 0 !important;
    }

    .home-section, .detail-section, .programs-container, .references-container, .about-section, .related-blogs-section, .blog-section, .service-section, .finance-intro {
        padding: 2rem 1rem !important;
    }
    
    .blog-content {
        padding: 1.5rem 1rem !important;
    }
    
    .stats-wrapper {
        padding: 2rem 1rem !important;
    }
    
    .content-section {
        padding: 2rem 1rem !important;
    }
    
    .kazanim-container {
        margin-top: 1.5rem !important;
    }
    
    .split-image {
        min-height: 200px !important;
    }
}

/* Mobile overrides for Mega Menu */
@media (max-width: 1200px) {
    .dropdown-menu.mega-menu {
        width: auto;
        flex-direction: column;
        padding: 0;
        gap: 0;
        left: 0;
        right: auto;
        text-align: left;
    }
    .mega-col {
        margin-bottom: 1rem;
    }
    .mega-title {
        padding: 0.75rem 1rem;
        margin-bottom: 0;
        background: rgba(8, 76, 140, 0.05);
        text-align: left;
        font-size: 1.2rem !important;
    }
    .mega-menu a {
        padding: 0.75rem 1rem !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
}

/* Strategy Features Grid Slider for Mobile/Tablet */
@media (max-width: 1200px) {
    .strategy-features-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .strategy-features-grid::-webkit-scrollbar {
        display: none;
    }
    .strategy-features-grid > div {
        flex: 0 0 calc(50% - 0.75rem) !important;
        scroll-snap-align: center;
        max-width: none !important;
    }
}
@media (max-width: 768px) {
    .strategy-features-grid > div {
        flex: 0 0 85% !important;
    }
}

/* Bordro Danismanligi Hizmet Grid */
.bordro-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.bordro-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bordro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 76, 140, 0.1);
    border-color: rgba(8, 76, 140, 0.06);
}
.bordro-icon {
    font-size: 3rem;
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease, transform 0.4s ease;
}
.bordro-card:hover .bordro-icon {
    color: var(--neon-blue);
    transform: scale(1.1);
}
.bordro-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Minimal Text Grid without Icons/Images */
.clean-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}
.clean-text-card {
    background: #fdfdfd;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--sapphire-blue);
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border-top: 1px solid rgba(0,0,0,0.02);
    border-right: 1px solid rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

/* Navbar Right Group & Social */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 1.5rem;
}
.nav-social-icons a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.nav-social-icons a:hover {
    color: var(--sapphire-blue);
}
.nav-search-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
}
.nav-search-btn:hover {
    color: var(--sapphire-blue);
}
.nav-cta {
    margin-left: 0.5rem;
}

/* Fullscreen Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-close {
    position: absolute;
    top: 3rem;
    right: 4rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}
.search-close:hover {
    transform: rotate(90deg);
    color: var(--sapphire-blue);
}
.search-content {
    width: 80%;
    max-width: 800px;
}
.search-content form {
    display: flex;
    border-bottom: 2px solid var(--sapphire-blue);
    padding-bottom: 10px;
}
.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 2.5rem;
    color: var(--text-main);
    outline: none;
}
.search-input::placeholder {
    color: #ccc;
}
.search-submit {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--sapphire-blue);
    cursor: pointer;
}

@media (max-width: 1200px) {
    .nav-right-group .nav-social-icons {
        display: none;
    }
}
@media (max-width: 992px) {
    .nav-right-group .nav-links, .nav-right-group .nav-cta {
        display: none;
    }
    .nav-right-group {
        gap: 1rem;
    }
}


/* Odak Hizmetleri Hover Overlay */
.f-service-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.f-hover-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sapphire-blue);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-sizing: border-box;
    border-radius: 20px;
}
.f-service-panel:hover .f-hover-links,
.f-service-panel.touch-active .f-hover-links {
    top: 0;
}
.f-hover-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.f-hover-links li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 0.5rem;
}
.f-hover-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.f-hover-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
}
.f-hover-links a:hover {
    color: var(--neon-blue);
    padding-left: 8px;
}














/* Sticky Navbar Styles */
site-navbar { display: block; min-height: 95px; }
.navbar { transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; will-change: transform; transform: translateZ(0); }
.navbar.is-sticky { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
.navbar.nav-hidden { transform: translateY(-100%) translateZ(0); }



/* Full Image Hero Text Overrides */
.page-hero {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.page-hero-title {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6) !important;
    margin-left: 0 !important;
    text-align: left !important;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
    margin-left: 0 !important;
    text-align: left !important;
    max-width: 800px !important;
}

@media (max-width: 768px) {
    .page-hero {
        align-items: center !important;
        text-align: center !important;
    }
    .page-hero-title, .page-hero-subtitle {
        text-align: center !important;
    }
}

/* ============================================================== */
/* CORPORATE FADE HERO (PREMIUM BESPOKE DESIGN)                   */
/* ============================================================== */

/* Ensure the hero section is positioned relatively to contain the overlay */
.page-hero {
    position: relative !important;
    padding: 6rem 5% 4rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    overflow: hidden !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    height: auto !important;
    min-height: 340px !important;
    max-height: none !important;
}

/* The Corporate Fade Overlay - Strictly constrained to left 50% */
.page-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    /* Dark shadow strictly fading out by 50% width from left */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%) !important;
    z-index: 1 !important;
}

/* Hide the old shape elements to keep it clean and corporate */
.page-hero .hero-shape {
    display: none !important;
}

/* Elegant Typography - Strictly Max 48% Width with Auto Font Resizing */
.page-hero .page-hero-title {
    position: relative !important;
    z-index: 2 !important;
    color: #ffffff !important;
    font-size: clamp(2.2rem, 3.2vw, 3.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.18 !important;
    margin-bottom: 1.5rem !important;
    max-width: 48% !important;
    width: 48% !important;
    text-shadow: none !important; /* Shadow not needed on solid dark blue */
    letter-spacing: -1px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Gold Premium Accent Line above the title */
.page-hero .page-hero-title::before {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 4px !important;
    background: #D4AF37 !important; /* Elegant Gold */
    margin-bottom: 1.2rem !important;
    border-radius: 2px !important;
}

.page-hero .page-hero-subtitle {
    position: relative !important;
    z-index: 2 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(1rem, 1.2vw, 1.2rem) !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    max-width: 48% !important;
    width: 48% !important;
    text-shadow: none !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Responsive Adjustments for Corporate Fade */
@media (max-width: 1200px) {
    .page-hero .page-hero-title {
        font-size: clamp(2rem, 3vw, 2.8rem) !important;
        max-width: 48% !important;
        width: 48% !important;
    }
    .page-hero .page-hero-subtitle {
        font-size: clamp(0.95rem, 1.1vw, 1.1rem) !important;
        max-width: 48% !important;
        width: 48% !important;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 22vh 5% 10vh !important;
    }
    
    .page-hero::before {
        /* On tablet & mobile, gradient goes top to bottom so text is readable */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0) 100%) !important;
    }

    .page-hero .page-hero-title {
        font-size: 2.4rem !important;
        max-width: 100% !important;
        width: 100% !important;
        letter-spacing: -1px !important;
    }

    .page-hero .page-hero-subtitle {
        font-size: 1.1rem !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 20vh 1.5rem 10vh !important;
    }
    .page-hero .page-hero-title {
        font-size: 2.3rem !important;
    }
}

/* ============================================================== */
/* MAKE HERO 100VH FULL SCREEN                                    */
/* ============================================================== */
.page-hero {
    min-height: 100vh !important;
}

@supports (min-height: 100dvh) {
    .page-hero {
        min-height: 100dvh !important;
    }
}




/* ============================================================== */
/* MOBILE HERO 50VH ADJUSTMENT                                    */
/* ============================================================== */
@media (max-width: 992px) {
    .page-hero:not(.ref-hero) {
        min-height: 55vh !important;
        padding: 9rem 5% 4rem !important;
        justify-content: center !important;
    }
}
@media (max-width: 768px) {
    .page-hero:not(.ref-hero) {
        height:50vh!important;
        padding: 8rem 1.5rem 3rem !important;
    }
}

/* ============================================================== */
/* HERO PERFECT CENTERING & LEFT ALIGNMENT OVERRIDE               */
/* ============================================================== */
.page-hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Perfect vertical center */
    align-items: flex-start !important; /* Perfect left alignment for flex items */
    text-align: left !important; /* Perfect left alignment for text */
    padding: 100px 5% 0 !important; /* Top padding offsets the fixed header, bottom 0 lets flexbox center it properly */
}

/* Ensure all text children are strictly left aligned */
.page-hero .page-hero-title,
.page-hero .page-hero-subtitle {
    text-align: left !important;
    margin-left: 0 !important;
    display: block !important;
}

@media (max-width: 992px) {
    .page-hero {
        padding: 80px 5% 0 !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 1.5rem 0 !important;
    }
}

/* ============================================================== */
/* FIX HERO 100VH OVERFLOW (BOX-SIZING CORRECTION)                */
/* ============================================================== */
.page-hero {
    box-sizing: border-box !important;
    height: 100vh !important;
    max-height: 100vh !important;
}

@media (max-width: 992px) {
    .page-hero {
        height: 55vh !important;
        max-height: 55vh !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh !important;
        max-height: 50vh !important;
    }
}

/* ============================================================== */
/* FIX HERO EXACT CALC HEIGHT (HEADER + HERO = 100VH)             */
/* ============================================================== */
.page-hero {
    box-sizing: border-box !important;
    /* Subtracting the header height (~100px) so the total is exactly 100vh */
    height: calc(100vh - 100px) !important;
    min-height: calc(100vh - 100px) !important;
    max-height: calc(100vh - 100px) !important;
    /* Remove the artificial top padding since the hero is not under the header */
    padding: 0 5% !important; 
}

@media (max-width: 992px) {
    .page-hero {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        padding: 0 5% !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        padding: 0 1.5rem !important;
    }
}

/* Lenis Smooth Scroll Core Rules */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ============================================================== */
/* HAKKIMIZDA & BLUE STATS CARD STYLES                            */
/* ============================================================== */
.about-section {
    padding: 4rem var(--section-padding);
    width: 100%;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    margin-bottom: 1.2rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.split-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.split-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Blue Background Stats Wrapper */
.stats-wrapper {
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(9, 132, 227, 0.25);
    text-align: center;
    color: #ffffff;
}

.stats-header {
    margin-bottom: 2.5rem;
}

.stats-header h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.stats-wrapper > p, .stats-header p {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.2rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.28) !important;
}

.stat-number {
    display: block !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin-bottom: 0.6rem !important;
    text-align: center !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.stat-text {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    text-align: center !important;
}
    max-height: 100vh !important;
}

@media (max-width: 992px) {
    .page-hero {
        height: 55vh !important;
        max-height: 55vh !important;
    }
}

/* ============================================================== */
/* PAGE HERO FLEXIBLE NATURAL HEIGHT & NO-REPEAT BACKGROUND       */
/* ============================================================== */
.page-hero {
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 600px !important;
    min-height: 360px !important;
    max-height: 600px !important;
    padding: 4rem 5% 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    overflow: hidden !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

@media (max-width: 992px) {
    .page-hero {
        height: auto !important;
        min-height: 280px !important;
        max-height: none !important;
        padding: 4rem 5% 3rem !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: auto !important;
        min-height: 240px !important;
        max-height: none !important;
        padding: 3rem 1.5rem 2.5rem !important;
    }
}

/* Lenis Smooth Scroll Core Rules */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ============================================================== */
/* HAKKIMIZDA & BLUE STATS CARD STYLES                            */
/* ============================================================== */
.about-section {
    padding: 4rem var(--section-padding);
    width: 100%;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    margin-bottom: 1.2rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.split-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.split-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Blue Background Stats Wrapper */
.stats-wrapper {
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(9, 132, 227, 0.25);
    text-align: center;
    color: #ffffff;
}

.stats-header {
    margin-bottom: 2.5rem;
}

.stats-header h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.stats-wrapper > p, .stats-header p {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.2rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.28) !important;
}

.stat-number {
    display: block !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin-bottom: 0.6rem !important;
    text-align: center !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.stat-text {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

@media (max-width: 992px) {
    .split-layout, .split-layout.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh !important;
        max-height: 50vh !important;
    }
}

/* ============================================================== */
/* FIX HERO EXACT CALC HEIGHT (HEADER + HERO = 100VH)             */
/* ============================================================== */
.page-hero {
    box-sizing: border-box !important;
    /* Subtracting the header height (~100px) so the total is exactly 100vh */
    height: calc(100vh - 100px) !important;
    min-height: calc(100vh - 100px) !important;
    max-height: calc(100vh - 100px) !important;
    /* Remove the artificial top padding since the hero is not under the header */
    padding: 0 5% !important; 
}

@media (max-width: 992px) {
    .page-hero {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        padding: 0 5% !important;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        padding: 0 1.5rem !important;
    }
}

/* Lenis Smooth Scroll Core Rules */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ============================================================== */
/* HAKKIMIZDA & BLUE STATS CARD STYLES                            */
/* ============================================================== */
.about-section {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 4rem 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    margin-bottom: 1.2rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.split-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.split-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Blue Background Stats Wrapper */
.stats-wrapper {
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(9, 132, 227, 0.25);
    text-align: center;
    color: #ffffff;
}

.stats-header {
    margin-bottom: 2.5rem;
}

.stats-header h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.stats-wrapper > p, .stats-header p {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.2rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.28) !important;
}

.stat-number {
    display: block !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin-bottom: 0.6rem !important;
    text-align: center !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.stat-text {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

@media (max-width: 992px) {
    .split-layout, .split-layout.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.5rem !important;
    }
}

/* Referanslar Sayfas Tab & Layout Yaps */
.references-container {
    display: flex;
    gap: 3rem;
    width: 100%;
    margin: 0;
    padding: 4rem var(--section-padding) 8rem var(--section-padding);
    align-items: flex-start;
}

.category-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(8, 76, 140, 0.08);
}

.category-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(8, 76, 140, 0.1);
}

.category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.category-nav li a {
    display: block;
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: rgba(8, 76, 140, 0.03);
    border: 1px solid transparent;
}

.category-nav li a:hover {
    background: rgba(8, 76, 140, 0.08);
    color: var(--sapphire-blue);
    transform: translateX(4px);
}

.category-nav li a.active {
    background: linear-gradient(135deg, var(--sapphire-blue), #0b5fa5);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(8, 76, 140, 0.25);
    border-color: transparent;
}

.references-content {
    flex: 1;
    min-width: 0;
}

.ref-category-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: fadeInTab 0.35s ease-in-out;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ref-category-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(0, 210, 211, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ref-category-section h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: var(--neon-blue);
    border-radius: 3px;
    display: inline-block;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.logo-card {
    background: #ffffff;
    border: 1px solid rgba(8, 76, 140, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(8, 76, 140, 0.12);
    border-color: var(--neon-blue);
}

.logo-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.logo-card img {
    max-width: 85%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .references-container {
        flex-direction: column;
        gap: 2rem;
    }
    .category-sidebar {
        width: 100%;
        position: static;
    }
    .category-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .category-nav li {
        flex: 1 1 auto;
    }
}


/* === EXTRACTED SERVICE STYLES === */

/* Styles from erp.html */

        .quote-block {
            background: linear-gradient(135deg, rgba(9, 132, 227, 0.05), rgba(30, 60, 114, 0.05));
            border-left: 4px solid var(--sapphire-blue);
            padding: 2rem 3rem;
            margin: 3rem auto;
            border-radius: 0 15px 15px 0;
            max-width: 900px;
            position: relative;
        }
        .quote-block::before {
            content: "\f10d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 1rem;
            top: 1rem;
            font-size: 2rem;
            color: rgba(9, 132, 227, 0.15);
        }
        .quote-item {
            margin-bottom: 1.5rem;
        }
        .quote-item:last-child {
            margin-bottom: 0;
        }
        .quote-text {
            font-size: 1.15rem;
            font-style: italic;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }
        .quote-author {
            font-weight: 700;
            color: var(--sapphire-blue);
            font-size: 0.95rem;
        }

        /* Timeline Redesign */
        .erp-timeline {
            position: relative;
            max-width: 1000px;
            margin: 4rem auto;
            padding-left: 2rem;
        }
        .erp-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--sapphire-blue), var(--neon-blue));
            border-radius: 3px;
        }
        .erp-timeline-step {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            margin-bottom: 2rem;
        }
        .erp-timeline-step:last-child {
            margin-bottom: 0;
        }
        .erp-timeline-marker {
            position: absolute;
            left: -2.8rem;
            top: 1.5rem;
            width: 30px;
            height: 30px;
            background: white;
            border: 4px solid var(--sapphire-blue);
            border-radius: 50%;
            z-index: 2;
        }
        .erp-timeline-step h4 {
            color: var(--sapphire-blue);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .erp-timeline-step p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .criteria-list {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .criteria-item {
            background: rgba(9, 132, 227, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
            color: var(--sapphire-blue);
            font-weight: 600;
        }

        /* Services Grid */
        .erp-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .erp-service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }
        .erp-service-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--neon-blue);
            box-shadow: 0 15px 40px rgba(9, 132, 227, 0.1);
        }
        .erp-service-card i {
            font-size: 2.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
        }
        .erp-service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-main);
            font-weight: 700;
        }
        .erp-service-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
    

/* Styles from dijital-donusum.html */

        .tq-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
    

/* Styles from dijital-donusum.html */

        .tq-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .tq-highlight-card {
            background: linear-gradient(135deg, var(--sapphire-blue), #1e3c72);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(9, 132, 227, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .privacy-content, .kvkk-content {
            max-width: 900px;
            margin: 4rem auto 8rem;
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .privacy-content p, .kvkk-content p {
            margin-bottom: 1.5rem;
        }
        .privacy-content h3, .kvkk-content h3 {
            font-size: 1.4rem;
            color: var(--sapphire-blue);
            margin-top: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .privacy-content ul, .kvkk-content ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        .privacy-content li, .kvkk-content li {
            margin-bottom: 0.5rem;
        }
        .privacy-content .contact-info, .kvkk-content .contact-info {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-left: 4px solid var(--sapphire-blue, #084c8c);
            border-radius: 12px;
            padding: 1.75rem;
            margin-top: 2.5rem;
        }
        .privacy-content .contact-info p, .kvkk-content .contact-info p {
            margin-bottom: 0.8rem;
        }
        .privacy-content .contact-info ul, .kvkk-content .contact-info ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .privacy-content a, .kvkk-content a {
            color: var(--neon-blue, #00d2d3);
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .privacy-content, .kvkk-content {
                padding: 2rem;
                margin: 2rem auto 4rem;
            }
        }
        /* Unified Theme Highlight Card & Support Items Banner */
        .tq-highlight-card {
            background: linear-gradient(135deg, var(--sapphire-blue) 0%, #1e3c72 100%);
            color: #ffffff;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(9, 132, 227, 0.2);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .tq-highlight-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.75rem;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
        }
        .support-items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1rem;
        }
        .support-item {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 1.1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0;
            transition: all 0.3s ease;
        }
        .support-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .support-item i {
            font-size: 1.35rem;
            color: var(--neon-blue);
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin: 0;
        }
        .support-item span {
            font-size: 1.02rem;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.4;
            text-align: left;
        }

        /* Unified Theme Desteklenen Kalemler Cards */
        .destek-section-wrapper {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 3.5rem 2rem;
            box-shadow: 0 10px 40px rgba(9, 132, 227, 0.04);
            margin: 3rem auto 5rem;
            max-width: 1200px;
        }

        .destek-header-block {
            text-align: center;
            margin-bottom: 3rem;
        }

        .destek-badge-tag {
            display: inline-block;
            background: rgba(9, 132, 227, 0.1);
            color: var(--sapphire-blue);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 0.75rem;
        }

        .destek-header-title {
            font-size: 2.2rem;
            color: var(--sapphire-blue);
            font-weight: 800;
            margin-bottom: 0.75rem;
        }

        .destek-header-desc {
            color: var(--text-secondary);
            max-width: 750px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .destek-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 1.5rem;
            align-items: start;
        }

        .destek-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-top: 4px solid var(--sapphire-blue);
            border-radius: 20px;
            padding: 2rem 1.75rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .destek-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(9, 132, 227, 0.12);
            border-top-color: var(--neon-blue);
        }

        .destek-card-wide {
            grid-column: 1 / -1;
        }

        .destek-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 1rem;
            margin-bottom: 1.25rem;
        }

        .destek-icon-badge {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--sapphire-blue), #1e3c72);
            color: #ffffff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            box-shadow: 0 5px 15px rgba(9, 132, 227, 0.2);
            flex-shrink: 0;
        }

        .destek-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--sapphire-blue);
            margin: 0;
            line-height: 1.3;
        }

        .destek-card-sub {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.1rem;
            font-style: italic;
        }

        .destek-pill-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .destek-two-col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 0.65rem 1rem;
        }

        .destek-pill-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-left: 3.5px solid var(--neon-blue);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.98rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.45;
            transition: all 0.25s ease;
        }

        .destek-pill-item:hover {
            background: #ffffff;
            border-color: #cbd5e1;
            border-left-color: var(--sapphire-blue);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .destek-pill-item i {
            color: var(--sapphire-blue);
            font-size: 0.85rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .destek-section-wrapper {
                padding: 2rem 1rem;
            }
            .destek-grid-container {
                grid-template-columns: 1fr;
            }
            .destek-two-col {
                grid-template-columns: 1fr;
            }
        }
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .destek-row-desc {
            font-size: 0.92rem;
            color: var(--text-secondary, #64748b);
            margin-bottom: 0.5rem;
            font-style: italic;
        }

        .destek-bullets {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .destek-bullets li {
            position: relative;
            padding-left: 1.4rem;
            font-size: 0.98rem;
            color: #334155;
            line-height: 1.5;
        }

        .destek-bullets li::before {
            content: "•";
            position: absolute;
            left: 0.2rem;
            top: -0.1rem;
            color: var(--neon-blue);
            font-weight: bold;
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .destek-list-container {
                padding: 0.5rem 1rem;
            }
            .destek-item-row {
                grid-template-columns: 1fr;
                gap: 0.75rem;
                padding: 1.25rem 0;
            }
        }
        
        .timeline-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--sapphire-blue);
            margin: 3rem 0;
        }
        .timeline-step {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            margin-bottom: 3rem;
        }
        .timeline-step:last-child {
            margin-bottom: 0;
        }
        .timeline-marker {
            position: absolute;
            left: -2rem;
            top: 1.8rem;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--sapphire-blue, #084c8c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transform: translateX(-50%);
            box-shadow: 0 0 0 5px white, 0 5px 15px rgba(8, 76, 140, 0.15);
            z-index: 2;
        }
        .timeline-step h4 {
            color: var(--sapphire-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .timeline-step ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .timeline-step ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }
        .timeline-step ul li::before {
            content: "";
            position: absolute;
            left: 0;
            color: var(--sapphire-blue);
            font-weight: bold;
        }
    


/* ==========================================================================
   State Support / Devlet Tesvikleri Premium UI Components
   ========================================================================== */
.tq-highlight-card {
    background: linear-gradient(135deg, var(--sapphire-blue, #0984e3), #1e3c72);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(9, 132, 227, 0.2);
    margin: 2rem auto;
    text-align: center;
}
.support-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.support-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}
.support-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}
.support-item i {
    font-size: 1.4rem;
    color: var(--neon-blue, #00d2d3);
    flex-shrink: 0;
}
.destek-section-wrapper {
    margin: 3.5rem 0;
}
.destek-header-block {
    text-align: center;
    margin-bottom: 2.5rem;
}
.destek-badge-tag {
    display: inline-block;
    background: rgba(9, 132, 227, 0.1);
    color: var(--sapphire-blue, #0984e3);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 0.75rem;
}
.destek-header-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sapphire-blue, #0984e3);
    margin-bottom: 0.75rem;
}
.destek-header-desc {
    font-size: 1.1rem;
    color: var(--text-secondary, #636e72);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}
.destek-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}
.destek-card {
    background: #ffffff;
    border: 1px solid rgba(9, 132, 227, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.destek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(9, 132, 227, 0.12);
    border-color: rgba(9, 132, 227, 0.3);
}
.destek-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.destek-icon-badge {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 210, 211, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sapphire-blue, #0984e3);
    flex-shrink: 0;
}
.destek-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sapphire-blue, #0984e3);
    margin: 0;
    line-height: 1.3;
}
.destek-card-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
}
.destek-card-wide {
    grid-column: 1 / -1;
}
.destek-pill-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.destek-pill-list.destek-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1rem;
}
.destek-pill-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.98rem;
    color: #334155;
    line-height: 1.5;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.destek-pill-item:hover {
    background: #ffffff;
    border-color: rgba(9, 132, 227, 0.3);
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.05);
}
.destek-pill-item i {
    color: #00b894;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.destek-pill-item span {
    flex: 1;
}


/* ==========================================================================
   Desteklenen Kalemler - Ozgun Modern Badge Stream Row Matrix Design
   ========================================================================== */
.destek-matrix-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}
.destek-row-block {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 2.5rem;
    position: relative;
    border-left: 6px solid var(--sapphire-blue, #0984e3);
    box-shadow: 0 8px 25px rgba(9, 132, 227, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.destek-row-block:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 35px rgba(9, 132, 227, 0.12);
}
.destek-row-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.destek-row-icon {
    width: 48px;
    height: 48px;
    background: rgba(9, 132, 227, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--sapphire-blue, #0984e3);
    flex-shrink: 0;
}
.destek-row-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sapphire-blue, #0984e3);
    margin: 0;
}
.destek-row-sub {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.2rem;
}
.destek-badge-stream {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}
.destek-stream-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.2s ease;
}
.destek-stream-pill:hover {
    background: var(--sapphire-blue, #0984e3);
    color: #ffffff;
    border-color: var(--sapphire-blue, #0984e3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.25);
}
.destek-stream-pill i {
    color: var(--sapphire-blue, #0984e3);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.destek-stream-pill:hover i {
    color: #ffffff;
}


/* ==========================================================================
   Blog Detail & Article Content Premium Styling
   ========================================================================== */
.article-container {
    margin: 0 auto;
    padding: 3rem var(--section-padding, 2rem) 5rem;
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #334155;
}
.article-content p {
    margin-bottom: 1.75rem;
}
.article-content strong {
    color: #0f172a;
    font-weight: 700;
}
.article-content h2, .article-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--sapphire-blue, #0984e3);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.35;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--sapphire-blue, #0984e3);
}
.article-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 1.75rem 0 2.5rem !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.article-content ul li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--sapphire-blue, #0984e3);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.article-content ul li:hover {
    transform: translateX(5px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(9, 132, 227, 0.08);
    border-color: rgba(9, 132, 227, 0.3);
}
.article-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--sapphire-blue, #0984e3);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.article-content blockquote {
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.04), rgba(0, 210, 211, 0.08));
    border: 1px solid rgba(9, 132, 227, 0.15);
    border-left: 5px solid var(--neon-blue, #00d2d3);
    border-radius: 18px;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--sapphire-blue, #0984e3);
    line-height: 1.75;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.article-content blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2.2rem;
    color: rgba(9, 132, 227, 0.15);
    position: absolute;
    top: 1.2rem;
    right: 1.75rem;
    font-style: normal;
}


/* ==========================================================================
   Fullscreen Live Search Modal & Downward Expanding Stream
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 30, 60, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 100000;
}
.search-close:hover {
    background: #ffffff;
    color: var(--sapphire-blue, #0984e3);
    transform: rotate(90deg) scale(1.1);
}
.search-modal-container {
    width: 90%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.search-modal-header {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 1.75rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-icon {
    position: absolute;
    left: 1.25rem;
    font-size: 1.6rem;
    color: var(--neon-blue, #00d2d3);
    pointer-events: none;
}
.search-input-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    padding: 0.5rem 3.5rem 0.5rem 4rem;
    font-family: inherit;
}
.search-input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}
.search-clear-btn {
    position: absolute;
    right: 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.search-clear-btn:hover {
    color: #ffffff;
}
.search-quick-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}
.quick-tag-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}
.quick-tag-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.quick-tag-btn:hover {
    background: var(--neon-blue, #00d2d3);
    color: #0984e3;
    border-color: var(--neon-blue, #00d2d3);
}
.search-results-stream {
    max-height: 65vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) transparent;
}
.search-result-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: slideDownFade 0.3s ease forwards;
}
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.search-result-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 35px rgba(9, 132, 227, 0.25);
}
.search-result-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.search-result-icon {
    width: 48px;
    height: 48px;
    background: rgba(9, 132, 227, 0.08);
    color: var(--sapphire-blue, #0984e3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.search-result-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sapphire-blue, #0984e3);
    background: rgba(9, 132, 227, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.35rem;
}
.search-result-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}
.search-result-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-result-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--sapphire-blue, #0984e3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.search-result-card:hover .search-result-arrow {
    background: var(--sapphire-blue, #0984e3);
    color: #ffffff;
    transform: translateX(4px);
}
.search-empty-state {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.search-empty-state i {
    font-size: 2.5rem;
    color: var(--neon-blue, #00d2d3);
    margin-bottom: 1rem;
}


/* ==========================================================================
   Strict Solid Fullscreen Live Search Overlay (Zero Scroll Leak)
   ========================================================================== */
html.search-active-lock, body.search-active-lock {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}
.search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #040f21 0%, #082140 50%, #05172d 100%) !important;
    z-index: 999999 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding-top: 6vh !important;
    padding-bottom: 6vh !important;
    overflow-y: auto !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}


/* ==========================================================================
   Zero-Grid Horizontal Roadmap Cable & Focus Stage (Stratejik Yönetim)
   ========================================================================== */
.strat-flow-system {
    margin-top: 3.5rem;
}
.strat-timeline-cable {
    position: relative;
    padding: 2.5rem 0 3.5rem;
    margin-bottom: 2.5rem;
}
.strat-cable-line {
    position: absolute;
    top: 67px;
    transform: translateY(-50%);
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: rgba(9, 132, 227, 0.15);
    border-radius: 4px;
    z-index: 1;
}
.strat-cable-progress {
    position: absolute;
    top: 67px;
    transform: translateY(-50%);
    left: 12.5%;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--sapphire-blue), var(--neon-blue));
    border-radius: 4px;
    z-index: 2;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.strat-nodes-row {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}
.strat-node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    width: 25%;
}
.strat-node-wrapper:hover {
    transform: translateY(-4px);
}
.strat-node-dot {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.strat-node-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: #64748b;
    transition: color 0.35s ease;
}
.strat-node-ring {
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.35s ease;
}
.strat-node-wrapper.active .strat-node-dot {
    background: var(--sapphire-blue);
    border-color: var(--sapphire-blue);
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(9, 132, 227, 0.35);
}
.strat-node-wrapper.active .strat-node-num {
    color: #ffffff;
}
.strat-node-wrapper.active .strat-node-ring {
    border-color: rgba(9, 132, 227, 0.4);
}
.strat-node-info {
    margin-top: 1.25rem;
}
.strat-node-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #475569;
    margin: 0 0 0.25rem;
    transition: color 0.3s ease;
}
.strat-node-wrapper.active .strat-node-title,
.strat-node-wrapper:hover .strat-node-title {
    color: var(--sapphire-blue);
}
.strat-node-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.strat-stage-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(9, 132, 227, 0.07);
    border: 1px solid rgba(9, 132, 227, 0.12);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.strat-stage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}
@media (max-width: 991px) {
    .strat-stage-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.strat-stage-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.strat-meta-counter {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--sapphire-blue);
    letter-spacing: -0.5px;
}
.strat-meta-tag {
    background: rgba(0, 210, 211, 0.12);
    color: var(--sapphire-blue);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.strat-stage-heading {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--sapphire-blue);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.strat-stage-paragraph {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.strat-stage-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.25rem;
}
.strat-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1e293b;
}
.strat-bullet-item i {
    color: var(--neon-blue);
    font-size: 1.1rem;
}
.strat-custom-btn {
    padding: 1rem 2.4rem;
    font-size: 1rem;
    border-radius: 50px;
}
.strat-media-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.strat-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.strat-stage-card:hover .strat-media-img {
    transform: scale(1.04);
}
.strat-media-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 15, 33, 0) 40%, rgba(4, 15, 33, 0.6) 100%);
}
.strat-media-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    color: var(--sapphire-blue);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .strat-nodes-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding-left: 2rem;
    }
    .strat-cable-line, .strat-cable-progress {
        top: 2rem;
        left: 2.7rem;
        width: 4px !important;
        right: auto;
    }
    .strat-cable-line { height: calc(100% - 4rem); }
    .strat-node-wrapper {
        flex-direction: row;
        gap: 1.25rem;
        text-align: left;
        max-width: 100%;
    }
    .strat-node-info { margin-top: 0; }
    .strat-stage-card { padding: 2rem 1.5rem; }
    .strat-stage-heading { font-size: 1.6rem; }
}

/* Odak Hizmetlerimiz Service Card Image Hover */
.f-service-panel:hover .f-service-img {
    transform: scale(1.06);
}

/* ==========================================================================
   Odak Hizmetlerimiz Perfect Card Padding & Hover Overlay Fix
   ========================================================================== */
.f-service-panel {
    flex: 0 0 var(--card-width) !important;
    position: relative !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
}
.f-service-panel:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(8, 76, 140, 0.12) !important;
    border-color: rgba(8, 76, 140, 0.15) !important;
}
.f-service-img-wrapper {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    position: relative !important;
    background: #f1f5f9 !important;
    flex-shrink: 0 !important;
}
.f-service-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.4s ease !important;
}
.f-service-panel:hover .f-service-img {
    transform: scale(1.06) !important;
}
.f-content {
    display: flex !important;
    flex-direction: column !important;
    padding: 2rem 1.75rem 2.25rem !important;
    flex-grow: 1 !important;
}
.f-content h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--sapphire-blue) !important;
    margin-bottom: 0.85rem !important;
    line-height: 1.35 !important;
}
.f-content p {
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 0 !important;
    flex-grow: 0 !important;
}
.f-hover-links {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--sapphire-blue) !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 2.5rem 2rem !important;
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
    border-radius: 24px !important;
}
.f-service-panel:hover .f-hover-links,
.f-service-panel.touch-active .f-hover-links {
    top: 0 !important;
}

/* ==========================================================================
   Fixed Non-Scrollable Search Header + Scrollable Results Stream
   ========================================================================== */
html.search-active-lock, body.search-active-lock {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}
.search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #040f21 0%, #082140 50%, #05172d 100%) !important;
    z-index: 999999 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4vh 2rem 3vh !important;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}
.search-modal-container {
    max-width: 900px !important;
    width: 100% !important;
    height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}
.search-modal-header {
    flex-shrink: 0 !important;
    width: 100% !important;
}
.search-results-stream {
    flex: 1 !important;
    overflow-y: auto !important;
    margin-top: 1.5rem !important;
    padding-right: 0.75rem !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--neon-blue, #00d2d3) rgba(255, 255, 255, 0.05) !important;
}
.search-results-stream::-webkit-scrollbar {
    width: 6px !important;
}
.search-results-stream::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 4px !important;
}
.search-results-stream::-webkit-scrollbar-thumb {
    background: var(--neon-blue, #00d2d3) !important;
    border-radius: 4px !important;
}

/* ==========================================================================
   Guaranteed Mouse Wheel Scroll for Search Results Stream
   ========================================================================== */
.search-results-stream {
    touch-action: pan-y !important;
    overscroll-behavior: contain !important;
    pointer-events: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* ==========================================================================
   Kurumsal Stratejik YÃ¶netim & Gelecek TasarÄ±mÄ± Module Complete Styling
   ========================================================================== */
.strat-roadmap-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}
.strat-roadmap-section .section-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 var(--section-padding, 6%) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.strat-header-block {
    text-align: left;
    max-width: 820px;
    margin: 0 0 3.5rem;
}
.strat-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(9, 132, 227, 0.08);
    color: var(--sapphire-blue, #084c8c);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    border: 1px solid rgba(9, 132, 227, 0.15);
}
.strat-badge-pill i {
    color: var(--neon-blue, #00d2d3);
}
.strat-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--sapphire-blue, #084c8c);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.25;
}
.strat-summary {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.strat-flow-system {
    margin-top: 3.5rem;
}
.strat-timeline-cable {
    position: relative;
    padding: 2.5rem 0 3.5rem;
    margin-bottom: 2.5rem;
}
.strat-cable-line {
    position: absolute;
    top: 67px;
    transform: translateY(-50%);
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: rgba(9, 132, 227, 0.15);
    border-radius: 4px;
    z-index: 1;
}
.strat-cable-progress {
    position: absolute;
    top: 67px;
    transform: translateY(-50%);
    left: 12.5%;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--sapphire-blue, #084c8c), var(--neon-blue, #00d2d3));
    border-radius: 4px;
    z-index: 2;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.strat-nodes-row {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}
.strat-node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    width: 25%;
}
.strat-node-wrapper:hover {
    transform: translateY(-4px);
}
.strat-node-dot {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.strat-node-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: #64748b;
    transition: color 0.35s ease;
}
.strat-node-ring {
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.35s ease;
}
.strat-node-wrapper.active .strat-node-dot {
    background: var(--sapphire-blue, #084c8c);
    border-color: var(--sapphire-blue, #084c8c);
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(9, 132, 227, 0.35);
}
.strat-node-wrapper.active .strat-node-num {
    color: #ffffff;
}
.strat-node-wrapper.active .strat-node-ring {
    border-color: rgba(9, 132, 227, 0.4);
}
.strat-node-info {
    margin-top: 1.25rem;
}
.strat-node-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #475569;
    margin: 0 0 0.25rem;
    transition: color 0.3s ease;
}
.strat-node-wrapper.active .strat-node-title,
.strat-node-wrapper:hover .strat-node-title {
    color: var(--sapphire-blue, #084c8c);
}
.strat-node-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.strat-stage-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(9, 132, 227, 0.07);
    border: 1px solid rgba(9, 132, 227, 0.12);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.strat-stage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}
@media (max-width: 991px) {
    .strat-stage-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.strat-stage-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.strat-meta-counter {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--sapphire-blue, #084c8c);
    letter-spacing: -0.5px;
}
.strat-meta-tag {
    background: rgba(0, 210, 211, 0.12);
    color: var(--sapphire-blue, #084c8c);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.strat-stage-heading {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--sapphire-blue, #084c8c);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.strat-stage-paragraph {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.strat-stage-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.25rem;
}
.strat-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1e293b;
}
.strat-bullet-item i {
    color: var(--neon-blue, #00d2d3);
    font-size: 1.1rem;
}
.strat-custom-btn {
    padding: 1rem 2.4rem;
    font-size: 1rem;
    border-radius: 50px;
}
.strat-media-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .strat-roadmap-section {
        padding: 2.5rem 0 !important;
    }
    .strat-roadmap-section .section-container {
        padding: 0 1rem !important;
    }
    .strat-header-block {
        margin-bottom: 1.5rem !important;
    }
    .strat-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    .strat-summary {
        font-size: 0.95rem !important;
    }
    .strat-timeline-cable {
        margin-bottom: 1.25rem !important;
        position: relative !important;
    }
    .strat-cable-line, .strat-cable-progress {
        display: none !important;
    }
    .strat-nodes-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .strat-node-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        background: #ffffff !important;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 14px !important;
        padding: 0.65rem 0.85rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.6rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
        transition: all 0.25s ease !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }
    .strat-node-wrapper.active {
        background: var(--sapphire-blue, #084c8c) !important;
        border-color: var(--sapphire-blue, #084c8c) !important;
        box-shadow: 0 6px 18px rgba(8, 76, 140, 0.25) !important;
    }
    .strat-node-dot {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        border-radius: 50% !important;
        background: rgba(9, 132, 227, 0.1) !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    .strat-node-wrapper.active .strat-node-dot {
        background: #ffffff !important;
    }
    .strat-node-num {
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        color: var(--sapphire-blue, #084c8c) !important;
    }
    .strat-node-wrapper.active .strat-node-num {
        color: var(--sapphire-blue, #084c8c) !important;
    }
    .strat-node-ring {
        display: none !important;
    }
    .strat-node-info {
        margin: 0 !important;
        text-align: left !important;
        overflow: hidden !important;
    }
    .strat-node-title {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .strat-node-wrapper.active .strat-node-title {
        color: #ffffff !important;
    }
    .strat-node-sub {
        display: none !important;
    }
    .strat-stage-card {
        padding: 1.25rem !important;
        border-radius: 20px !important;
        margin-top: 0.5rem !important;
        box-shadow: 0 10px 30px rgba(9, 132, 227, 0.08) !important;
    }
    .strat-stage-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }
    .strat-stage-heading {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    .strat-stage-paragraph {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.25rem !important;
    }
    .strat-media-frame {
        height: 220px !important;
        border-radius: 14px !important;
        width: 100% !important;
    }
    .strat-custom-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 0.8rem 1.25rem !important;
    }
}
/* ==========================================================================
   Home HakkÄ±mÄ±zda (Kurumsal YÃ¶netim ve Proaktif Ã‡Ã¶zÃ¼mler) Clean Image Frame
   ========================================================================== */
.home-about-section {
    padding: 5rem 0;
    position: relative;
}
.about-lead-p {
    font-size: 1.15rem;
    color: var(--sapphire-blue);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-body-p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.about-stats-grid {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}
.about-stat-card {
    background: rgba(9, 132, 227, 0.05);
    border: 1px solid rgba(9, 132, 227, 0.12);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    min-width: 150px;
}
.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sapphire-blue);
    margin-bottom: 0.2rem;
    line-height: 1;
}
.about-stat-icon {
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin-bottom: 0.2rem;
    line-height: 1;
}
.about-stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-btn-wrap {
    margin-top: 1rem;
}

.about-media-wrapper {
    position: relative;
    width: 100%;
}
.about-media-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(8, 76, 140, 0.12);
    border: 1px solid rgba(8, 76, 140, 0.1);
    background: #f8fafc;
}
.about-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.about-media-frame:hover .about-media-img {
    transform: scale(1.04);
}
.about-media-glow {
    display: none !important;
}
.home-about-section .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.about-glass-badge {
    position: absolute !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
    right: 1.25rem !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18) !important;
    border-radius: 18px !important;
    padding: 1rem 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    z-index: 10 !important;
}

.about-glass-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: rgba(9, 132, 227, 0.12) !important;
    color: var(--sapphire-blue, #0984e3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    flex-shrink: 0 !important;
}

.about-glass-title {
    color: #0f172a !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    margin: 0 0 0.2rem 0 !important;
    line-height: 1.25 !important;
}

.about-glass-sub {
    font-size: 0.86rem !important;
    color: #334155 !important;
    font-weight: 600 !important;
    display: block !important;
    line-height: 1.3 !important;
}

@media (max-width: 991px) {
    .home-about-section .split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-stats-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .about-stat-card {
        flex: 1;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .about-media-frame {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }
    .about-glass-badge {
        bottom: 0.75rem !important;
        left: 0.75rem !important;
        right: 0.75rem !important;
        padding: 0.75rem 0.95rem !important;
        border-radius: 14px !important;
    }
    .about-glass-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.15rem !important;
    }
    .about-glass-title {
        font-size: 0.92rem !important;
    }
    .about-glass-sub {
        font-size: 0.8rem !important;
    }
}

/* ==========================================================================
   Hakkimizda Section Master Container Constraint
   ========================================================================== */
.about-section,
.home-about-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 4rem 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.about-section .split-layout,
.about-section .full-layout,
.about-section .stats-wrapper,
.home-about-section .section-container {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .about-section,
    .home-about-section {
        padding: 2.5rem 1rem !important;
    }
}



/* ==========================================================================
   Stratejik Yönetim Section Side-by-Side Fitted Image Rules
   ========================================================================== */
.strat-stage-grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 2.5rem !important;
    align-items: center !important;
}

.strat-stage-text {
    width: 100% !important;
}

.strat-stage-media {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.strat-media-frame {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}

.strat-media-img {
    width: 100% !important;
    height: auto !important;
    max-height: 580px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 20px !important;
}

@media (max-width: 991px) {
    .strat-stage-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

/* ==========================================================================
   Detail Page Hero Background Image & Height Restrictions
   ========================================================================== */
.page-hero {
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 600px !important;
    min-height: 360px !important;
    max-height: 600px !important;
    padding: 4rem 5% 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    overflow: hidden !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

@media (max-height: 900px), (max-width: 1600px) {
    .page-hero {
        height: calc(100vh - 80px) !important;
        min-height: calc(100vh - 80px) !important;
        max-height: none !important;
    }
}


/* ==========================================================================
   Full Width Header - Transparent Default + White When Sticky
   ========================================================================== */
.site-header, nav, .navbar {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9990 !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.site-header.is-sticky, .navbar.is-sticky {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.85rem 4% !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.nav-logo-img {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.nav-right-group {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
}

/* Header Action Buttons (Search & Hamburger) */
.nav-search-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(9, 132, 227, 0.2) !important;
    background: rgba(9, 132, 227, 0.08) !important;
    color: var(--sapphire-blue, #084c8c) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-size: 1.15rem !important;
    outline: none !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.nav-search-btn:hover, .nav-search-btn:focus {
    background: linear-gradient(135deg, var(--sapphire-blue, #084c8c), var(--neon-blue, #00d2d3)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 18px rgba(9, 132, 227, 0.35) !important;
}

.mobile-menu-icon {
    display: none !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(9, 132, 227, 0.2) !important;
    background: rgba(9, 132, 227, 0.08) !important;
    color: var(--sapphire-blue, #084c8c) !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-size: 1.25rem !important;
    outline: none !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.mobile-menu-icon:hover, .mobile-menu-icon:focus {
    background: linear-gradient(135deg, var(--sapphire-blue, #084c8c), var(--neon-blue, #00d2d3)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 18px rgba(9, 132, 227, 0.35) !important;
}

@media (max-width: 991px) {
    .nav-links, .nav-social-icons, .nav-cta { display: none !important; }
    .mobile-menu-icon { display: flex !important; }
    .nav-right-group { gap: 0.75rem !important; }
    .navbar { padding: 0.75rem 1.25rem !important; }
}

/* Premium Smooth Mobile Menu Overlay Animation (Zero Horizontal Overflow) */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-menu-header, .mobile-menu-content {
    transform: translateY(-16px) scale(0.98);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
}

.mobile-menu-overlay.active .mobile-menu-header,
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-links > li {
    opacity: 0;
    animation: mobileItemSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(1) { animation-delay: 0.04s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(2) { animation-delay: 0.08s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(3) { animation-delay: 0.12s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(4) { animation-delay: 0.16s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(5) { animation-delay: 0.20s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(6) { animation-delay: 0.24s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(7) { animation-delay: 0.28s !important; }
.mobile-menu-overlay.active .mobile-nav-links > li:nth-child(8) { animation-delay: 0.32s !important; }

@keyframes mobileItemSlideIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.1rem 1.4rem !important;
    border-bottom: 1px solid #f1f5f9 !important;
    background: #ffffff !important;
}

.mobile-menu-logo-img {
    height: 40px !important;
    width: auto !important;
}

.mobile-menu-close {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.mobile-menu-close:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    transform: rotate(90deg) !important;
}

.mobile-menu-content {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 1.25rem 1.4rem 2rem 1.4rem !important;
}

.mobile-nav-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

.mobile-nav-links li {
    list-style: none !important;
}

.mobile-nav-links a, .mobile-dropdown > span {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.7rem 0.95rem !important;
    border-radius: 12px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-links a:hover, .mobile-dropdown > span:hover {
    background: rgba(9, 132, 227, 0.08) !important;
    color: var(--sapphire-blue, #084c8c) !important;
}

.mobile-dropdown-icon {
    font-size: 0.9rem !important;
    transition: transform 0.3s ease !important;
    color: #94a3b8 !important;
}

.mobile-dropdown.open > span .mobile-dropdown-icon {
    transform: rotate(180deg) !important;
    color: var(--sapphire-blue, #084c8c) !important;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none !important;
    padding: 0.25rem 0 0.25rem 1rem !important;
    margin: 0.2rem 0 0.35rem 0.5rem !important;
    border-left: 2px solid rgba(9, 132, 227, 0.2) !important;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-dropdown.open > .mobile-dropdown-menu {
    display: block !important;
}

.mobile-dropdown-menu a {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 0.85rem !important;
    color: #334155 !important;
}

.mobile-mega-title {
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    color: var(--sapphire-blue, #084c8c) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 0.6rem 0.85rem 0.2rem !important;
    list-style: none !important;
}

.mobile-mega-title-bordered {
    border-top: 1px dashed #cbd5e1 !important;
    margin-top: 0.5rem !important;
    padding-top: 0.65rem !important;
}

.mobile-contact-info {
    margin-top: 1.5rem !important;
    padding: 1.25rem !important;
    background: #f8fafc !important;
    border-radius: 18px !important;
    border: 1px solid #e2e8f0 !important;
}

.mobile-contact-info h4 {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0.65rem !important;
}

.mobile-contact-info p {
    font-size: 0.95rem !important;
    color: #334155 !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.mobile-contact-info p i {
    color: var(--sapphire-blue, #084c8c) !important;
}

.mobile-contact-info a {
    color: #334155 !important;
    text-decoration: none !important;
}

/* Force Crisp Pure White Text on All Contact Buttons */
.cta-btn,
.nav-cta,
.mobile-cta-btn,
a.cta-btn,
a.nav-cta,
a.mobile-cta-btn,
.cta-btn:visited,
.nav-cta:visited,
.mobile-cta-btn:visited,
.cta-btn:hover,
.nav-cta:hover,
.mobile-cta-btn:hover,
.cta-btn:focus,
.nav-cta:focus,
.mobile-cta-btn:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

.mobile-cta-btn {
    display: block !important;
    text-align: center !important;
    margin-top: 1rem !important;
    background: linear-gradient(135deg, var(--sapphire-blue, #084c8c), var(--neon-blue, #00d2d3)) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.3) !important;
    transition: transform 0.25s ease !important;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px) !important;
}

/* Search Modal Controls */
.search-input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.25rem !important;
    backdrop-filter: blur(10px) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.search-input-wrapper:focus-within {
    border-color: var(--neon-blue, #00d2d3) !important;
    box-shadow: 0 0 25px rgba(0, 210, 211, 0.25) !important;
}

.search-input-icon {
    font-size: 1.3rem !important;
    color: var(--neon-blue, #00d2d3) !important;
    margin-right: 1rem !important;
}

.search-input-field {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
}

.search-input-field::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.search-clear-btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    display: none;
    padding: 0.2rem !important;
    transition: color 0.2s ease !important;
}

.search-clear-btn:hover {
    color: #ffffff !important;
}

.search-close {
    position: absolute !important;
    top: 2rem !important;
    right: 2.5rem !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.search-close:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    transform: rotate(90deg) !important;
}

.search-quick-tags {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
    margin-top: 1.25rem !important;
}

.quick-tag-label {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 600 !important;
    margin-right: 0.5rem !important;
}

.quick-tag-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.35rem 0.9rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.quick-tag-btn:hover {
    background: var(--neon-blue, #00d2d3) !important;
    border-color: var(--neon-blue, #00d2d3) !important;
    color: #040f21 !important;
    font-weight: 700 !important;
}


/* ==========================================================================
   MASTER MOBILE HORIZONTAL OVERFLOW PREVENTION (ZERO RIGHT-SCROLL LEAK)
   ========================================================================== */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
}
body {
    box-sizing: border-box !important;
}
*, *::before, *::after {
    max-width: 100vw;
    box-sizing: border-box;
}
.mobile-menu-overlay:not(.active) {
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
.search-overlay:not(.active) {
    display: none !important;
}
header, footer, main, nav, section, article, aside, div,
.site-header, .site-footer, .navbar, .hero, .section-container,
.home-section, .article-container, .related-blogs-section {
    max-width: 100% !important;
    box-sizing: border-box !important;
}
@media (max-width: 991px) {
    .shape-1, .shape-2, .shape-3, .bg-shape, .decor-shape, [class*="shape-"] {
        display: none !important;
    }
    .premium-slider-btn.prev-btn {
        left: 0.5rem !important;
    }
    .premium-slider-btn.next-btn {
        right: 0.5rem !important;
    }
}
img, iframe, video {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}
table {
    display: block !important;
    max-width: 100% !important;
    overflow-x: auto !important;
}
pre, code {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    max-width: 100% !important;
    overflow-x: auto !important;
}
p, span, h1, h2, h3, h4, h5, h6, li, a, td, th {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

/* ==========================================================================
   UNIFIED MASTER SECTION CONTAINER SYSTEM (EXACT 1400PX WIDE ALIGNMENT ALL SECTIONS)
   ========================================================================== */
.section-container,
.home-section .section-container,
.hero .section-container,
.about-section .section-container,
.home-about-section .section-container,
.strat-roadmap-section .section-container,
.related-blogs-section .section-container,
.article-container,
.page-container {
    max-width: 1400px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .section-container,
    .home-section .section-container,
    .hero .section-container,
    .about-section .section-container,
    .home-about-section .section-container,
    .strat-roadmap-section .section-container,
    .related-blogs-section .section-container,
    .article-container,
    .page-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

.readx-wrapper {
    width: 100%;
    color: var(--text-primary);
    line-height: 1.6;
}

.readx-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glass Card Component */
.readx-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(9, 132, 227, 0.15);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.readx-glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(9, 132, 227, 0.35);
    box-shadow: 0 15px 40px rgba(9, 132, 227, 0.15);
}

.readx-hero-box {
    text-align: center;
    padding: 2rem 0 3rem;
}

.readx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.12), rgba(0, 210, 211, 0.15));
    border: 1px solid rgba(9, 132, 227, 0.25);
    color: var(--sapphire-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.readx-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #0984e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.readx-main-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
}

.readx-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.readx-metric-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(9, 132, 227, 0.15);
    border-radius: 18px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.readx-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sapphire-blue), var(--neon-blue));
}

.readx-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(9, 132, 227, 0.15);
}

.readx-metric-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sapphire-blue);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.readx-metric-lbl {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.3rem;
}

.readx-metric-sub {
    font-size: 0.82rem;
    color: #64748b;
}

.readx-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.readx-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.readx-section-header p {
    font-size: 1.05rem;
    color: #64748b;
}

.readx-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

.readx-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.readx-pillar-card:hover {
    border-color: var(--sapphire-blue);
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.1);
}

.readx-pillar-icon {
    width: 52px;
    height: 52px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--sapphire-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.readx-pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

.readx-pillar-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.5;
}

.readx-modules-section {
    background: linear-gradient(180deg, rgba(9, 132, 227, 0.03) 0%, rgba(0, 210, 211, 0.05) 100%);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    margin-bottom: 4.5rem;
    border: 1px solid rgba(9, 132, 227, 0.1);
}

.readx-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.readx-module-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.25s ease;
}

.readx-module-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 211, 0.15);
}

.readx-mod-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 210, 211, 0.15));
    color: var(--sapphire-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.readx-mod-info h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.readx-mod-info p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

.readx-deepdive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 4.5rem;
}

.readx-deep-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.readx-deep-card:hover {
    border-color: var(--sapphire-blue);
    box-shadow: 0 15px 40px rgba(9, 132, 227, 0.12);
}

.readx-deep-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.readx-deep-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.readx-deep-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
}

.readx-deep-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.readx-deep-list li {
    font-size: 0.92rem;
    color: #475569;
    padding: 0.55rem 0;
    border-bottom: 1px dashed #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.readx-deep-list li:last-child {
    border-bottom: none;
}

.readx-deep-list li i {
    color: var(--neon-blue);
    font-size: 0.85rem;
}

.readx-two-column-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.readx-feature-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.2);
}

.readx-feature-banner h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.readx-feature-banner h3 i {
    color: var(--neon-blue);
}

.readx-feature-banner p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.readx-tag-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.readx-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--sapphire-blue);
    color: #e2e8f0;
    padding: 0.7rem 0.95rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.2s ease;
}

.readx-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    border-left-color: var(--neon-blue);
}

.readx-tag i {
    color: #94a3b8;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.readx-erp-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1rem;
}

.readx-erp-badge {
    background: rgba(9, 132, 227, 0.2);
    border: 1px solid rgba(9, 132, 227, 0.4);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Contact CTA Banner */
.readx-cta-banner {
    background: linear-gradient(135deg, var(--sapphire-blue) 0%, #0284c7 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(9, 132, 227, 0.3);
    margin-bottom: 2rem;
}

.readx-cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.readx-cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.readx-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    color: var(--sapphire-blue);
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.readx-cta-btn:hover {
    background: #f8fafc;
    color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .readx-metrics-grid,
    .readx-pillars-grid,
    .readx-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .readx-deepdive-grid {
        grid-template-columns: 1fr;
    }
    .readx-two-column-sec {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .readx-metrics-grid,
    .readx-pillars-grid,
    .readx-modules-grid,
    .readx-tag-list {
        grid-template-columns: 1fr;
    }
    .readx-main-title {
        font-size: 2rem;
    }
    .readx-cta-banner h2 {
        font-size: 1.7rem;
    }
}

/* Fix CTA Buttons with White Backgrounds */
a.tq-cta-btn, .tq-cta-btn, a.tq-cta-btn:visited, .tq-cta-btn:visited { background: #ffffff !important; color: #0984e3 !important; font-weight: 700 !important; text-decoration: none !important; }
a.tq-cta-btn:hover, .tq-cta-btn:hover { background: #f8fafc !important; color: #00d2d3 !important; transform: translateY(-3px) !important; }
