@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #58c5c7;
}

html::-webkit-scrollbar {
    width: 6px;
    background-color: #58c5c7;
}

html::-webkit-scrollbar-thumb {
    background-color: #000;
}

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

body {
    background-color: white;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
input,
button {
    font-family: 'Poppins', sans-serif !important;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}


:root {
    --color-primary: #f3743f;
    --color-primary-hover: #cd5c2d;
    --color-text-dark: #101010;
    --color-text-gray: #666666;
    --color-text-light: #999999;
    --color-white: #FFFFFF;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-border: #E5E5E5;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    --font-size-xl: 22px;
    --font-size-lg: 20px;
    --font-size-md: 16px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;

    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    --nav-column-width: 400px;
    --nav-l3-width: 600px;
    /* Wider panel for products */
    --header-height: 80px;

    --transition-fast: 0.2s ease;
    --transition-slide: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Burger Button */
.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    gap: 5px;
    transition: var(--transition-fast);
}

.burger-btn:hover {
    opacity: 0.7;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: 0;
    transition: var(--transition-slide);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 24px;
    width: auto;
}

/* Header Icons */
.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.header-icon-btn:hover {
    color: var(--color-primary);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-overlay);
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    transition: opacity var(--transition-slide), visibility var(--transition-slide);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu - Expandable Container */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-column-width);
    max-width: 100vw;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 300;
    transform: translateX(-100%);
    transition: transform var(--transition-slide), width var(--transition-slide);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.navigation.active {
    transform: translateX(0);
}

/* Level 3 active - expand to show 2 columns */
/* Level 3 active - expand to show 2 columns */
.navigation.level-3-active {
    width: calc(var(--nav-column-width) + var(--nav-l3-width));
}

/* Navigation Header */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    min-height: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
}

.back-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-btn:hover {
    color: var(--color-primary);
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--color-primary);
}

/* Breadcrumb */
.breadcrumb {
    padding: 0 var(--spacing-lg);
    min-height: 0;
    overflow: hidden;
    transition: min-height var(--transition-slide), padding var(--transition-slide);
    flex-shrink: 0;
}

.breadcrumb.has-items {
    min-height: auto;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    gap: 0;
    /* Gap handled by separators margin */
}

/* Hide scrollbar for Chrome/Safari/Opera */
.breadcrumb.has-items::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(-10px);
    animation: breadcrumbFadeIn 0.3s ease forwards;
}

@keyframes breadcrumbFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Columns Container - Flex layout for side-by-side columns */
.menu-columns-container {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Each column is a fixed-width sliding area */
.menu-column {
    width: var(--nav-column-width);
    min-width: var(--nav-column-width);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--color-border);
}

.menu-column:last-child {
    border-right: none;
}

/* Sliding wrapper for L1/L2 - REF ACTORED to Drawer Style */
.menu-slider {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /* transition: transform var(--transition-slide); */
}

/* .menu-slider.at-level-2 {
    transform: translateX(-50%);
} */

/* Menu panels within slider */
.menu-panel {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--spacing-lg);
    background-color: var(--color-white);
}

/* Level 1 Panel - Always visible at base */
#panelLevel1 {
    position: relative;
    z-index: 1;
}

/* Level 2 Panels - Absolute, off-screen LEFT (slide right) */
.menu-panel[id^="l2panel-"] {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    transition: left var(--transition-slide);
    display: none;
    /* Controlled by JS, but good default */
    border-right: 1px solid var(--color-border);
}

/* Active state for L2 panels - Handled by class or JS specific logic */
.menu-slider.at-level-2 .menu-panel.active-l2 {
    left: 0;
}

/* Level 3 Panel - Absolute, off-screen LEFT (slide right inside slider) */
#panelLevel3 {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 3;
    transition: left var(--transition-slide);
    display: none;
    border-right: 1px solid var(--color-border);
}

.menu-slider.at-level-3 #panelLevel3.active-l3 {
    display: block !important;
    left: 0 !important;
}

/* Level 3 column - hidden initially, shown when active */
.menu-column-level3 {
    position: absolute;
    right: calc(-1 * var(--nav-l3-width));
    top: 0;
    width: var(--nav-l3-width);
    height: 100%;
    background: var(--color-white);
    transition: right var(--transition-slide);
    overflow-y: auto;
    padding: var(--spacing-lg);
    border-left: 1px solid var(--color-border);
}

.navigation.level-3-active .menu-column-level3 {
    right: 0;
}

/* Navigation List */
.nav-list {
    list-style: none;
}

.nav-item {
    border-bottom: 1px solid var(--color-border);
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: var(--font-size-md);
    font-weight: 300;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover .arrow-icon {
    transform: translateX(4px);
    opacity: 1;
}

.nav-link.active-parent {
    color: var(--color-primary);
}

.arrow-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Product Items (Level 3) */
.nav-item-product .nav-link {
    display: flex;
    flex-direction: row;
    /* Side-by-side */
    align-items: flex-start;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-md);
}

.product-thumb {
    flex-shrink: 0;
    width: 60px;
    height: auto;
    border-radius: 0;
    overflow: visible;
    background-color: transparent;
    border: none;
}

.product-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: var(--font-size-md);
    font-weight: 300;
    color: var(--color-text-dark);
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.product-desc {
    font-size: var(--font-size-sm);
    font-weight: 300;
    color: var(--color-text-gray);
    line-height: 1.4;
}

.nav-item-product .nav-link:hover .product-name {
    color: var(--color-primary);
}

/* Secondary Navigation */
.nav-secondary {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.nav-list-secondary {
    list-style: none;
}

.nav-item-secondary {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.nav-item-secondary:last-child {
    border-bottom: none;
}

.nav-link-secondary {
    display: block;
    padding: var(--spacing-md) 0;
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: var(--font-size-md);
    font-weight: 300;
    transition: color var(--transition-fast);
}

.nav-link-secondary:hover {
    color: var(--color-primary);
}

/* CTA Button */
.nav-cta {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    /* Butonun sol kenarını menü öğeleriyle hizalamak için margin-left */
    margin-left: 32px;
}

.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    /* Buton genişliği içerik kadar - Schindler tarzı */
    width: auto;

    /* Padding - sol ve sağ eşit */
    padding: 12px 24px;

    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 600;

    /* Hafif yuvarlatılmış köşeler - Schindler tarzı */
    border-radius: 0;

    transition: background-color var(--transition-fast);
}

.cta-button:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
}

.cta-button svg {
    flex-shrink: 0;
}

/* Level 3 Title */
.level3-title {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

/* Main Content */
.main-content {
    margin-top: var(--header-height);
    padding: var(--spacing-xl);
    min-height: calc(100vh - var(--header-height));
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
}

.demo-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.demo-content p {
    font-size: var(--font-size-lg);
    color: var(--color-text-gray);
    margin-bottom: var(--spacing-md);
}

/* Mobile Responsive Styles */
@media (max-width: 850px) {
    :root {
        --nav-column-width: 100vw;
    }

    .navigation {
        width: 100vw;
    }

    /* On mobile, Level 3 also takes full width and slides over */
    .navigation.level-3-active {
        width: 100vw;
    }

    .menu-column-level3 {
        width: 100vw;
        left: -100vw;
        right: auto;
        transition: left var(--transition-slide);
    }

    .navigation.level-3-active .menu-column-level3 {
        left: 0;
        right: auto;
    }

    /* Hide first column when level 3 is active on mobile */
    .navigation.level-3-active .menu-column:first-child {
        transform: translateX(-100%);
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 56px;
        --font-size-xl: 18px;
        --font-size-lg: 16px;
        --font-size-md: 14px;
    }

    .burger-btn,
    .close-btn,
    .back-btn,
    .header-icon-btn {
        width: 40px;
        height: 40px;
    }

    .burger-line {
        width: 20px;
    }

    .menu-panel,
    .menu-column-level3 {
        padding: var(--spacing-md);
    }

    .cta-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
}

/* Focus States for Accessibility */
.burger-btn:focus,
.close-btn:focus,
.back-btn:focus,
.header-icon-btn:focus,
.nav-link:focus,
.nav-link-secondary:focus,
.cta-button:focus {
    outline: none;
}

/* Only show focus outline for keyboard navigation */
.burger-btn:focus-visible,
.close-btn:focus-visible,
.back-btn:focus-visible,
.header-icon-btn:focus-visible,
.nav-link:focus-visible,
.nav-link-secondary:focus-visible,
.cta-button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scrollbar Styling */
.menu-panel::-webkit-scrollbar,
.menu-column-level3::-webkit-scrollbar {
    width: 6px;
}

.menu-panel::-webkit-scrollbar-track,
.menu-column-level3::-webkit-scrollbar-track {
    background: transparent;
}

.menu-panel::-webkit-scrollbar-thumb,
.menu-column-level3::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 0;
}

.menu-panel::-webkit-scrollbar-thumb:hover,
.menu-column-level3::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-light);
}





/* Breadcrumb Styles */
.breadcrumb-item {
    color: var(--color-text-gray);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.breadcrumb-item.root-item {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Breadcrumb Separator - Only show between items */
.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #ccc;
    font-weight: normal;
    display: inline-block;
}

/* Bootstrap'ın kendi ::before ayracını kaldır (çift // olmasın) */
.breadcrumb-item+.breadcrumb-item::before {
    display: none !important;
    content: none !important;
    padding: 0 !important;
}

.breadcrumb-item:last-child {
    color: var(--color-text-dark);
    cursor: default;
    pointer-events: none;
}

.breadcrumb-item:last-child::after {
    display: none;
}

/* Mobile Breadcrumb Adjustments */
@media (max-width: 850px) {
    .breadcrumb-item {
        font-size: 11px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 4px;
    }
}

/* Gizli checkbox */
.user-checkbox {
    display: none;
}

/* Buton */
.user-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    background: white;
    color: #0f0f0f;
    border-radius: 0;
    font-size: 15px;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Panel */
.user-submenu {
    position: absolute;
    top: 100%;
    /* butonun hemen altı */
    width: 120px;
    right: 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}

/* Checkbox seçiliyse aç */
.user-checkbox:checked~.user-submenu {
    max-height: 400px;
    opacity: 1;
    width: 120px;
}

/* Alt alanlar */
.subitem {
    display: block;
    padding: 5px 14px;
    margin: 6px 0;
    text-decoration: none;
    color: #111827;
    border-radius: 4px;
    border-bottom: 1px solid #ccc;
}

.subitem:last-child {
    border-bottom: none;
}

.subitem:hover {
    background: #e2e8f0;
}

/* Chevron döndürme */
.chev {
    transition: transform 0.2s ease;
}

.user-checkbox:checked+.user-toggle .chev {
    transform: rotate(-180deg);
}








/* ========================================
   STATS OVERLAY SECTION - kutular.html Tasarımı
   ======================================== */
.slider-with-stats-wrapper {
    position: relative;
}

.stats-overlay-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(50%);
}

.stats-overlay-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-overlay-card {
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    animation: cardFadeIn 0.5s ease forwards;
}

.stat-overlay-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-overlay-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-overlay-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-overlay-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Alt kırmızı çizgi animasyonu */
.stat-overlay-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #f97316;
    transition: width 0.3s ease;
}

.stat-overlay-card:hover::after {
    width: 100%;
}

/* İkon Kutusu */
.stat-overlay-card .icon-box {
    background-color: #fff7ed;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.stat-overlay-card .icon-box svg {
    width: 35px;
    height: 35px;
    stroke: #f97316;
    stroke-width: 2.5;
    fill: none;
}

.stat-overlay-card .icon-box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: 0.3s;
}

.stat-overlay-card:hover .icon-box {
    background: #f97316;
}

.stat-overlay-card:hover .icon-box svg {
    stroke: #fff;
}

.stat-overlay-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}

/* İçerik */
.stat-overlay-card .content h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
}

.stat-overlay-card .content p {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider'dan sonra gelen section için boşluk */
.slider-with-stats-wrapper+section,
.slider-with-stats-wrapper+.about-modern-section {
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-overlay-section {
        position: relative;
        transform: none;
        background: #f8f8f8;
        padding: 30px 0;
    }

    .stats-overlay-row {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .slider-with-stats-wrapper+section,
    .slider-with-stats-wrapper+.about-modern-section {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .stat-overlay-card {
        padding: 12px;
    }
}

/* Eski features-section stilleri (gizli tutuluyor) */
.features-section {
    display: none;
}

.issection {
    padding: 20px 0;
}

/* ========================================
   ABOUT US / HAKKIMIZDA SECTION - CREATIVE
   ======================================== */
.hakkimizdasection {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 50%, #fff5f0 100%);
}

/* Floating Decorative Shapes */
.hakkimizda-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.hakkimizda-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(243, 116, 63, 0.15) 0%, rgba(255, 139, 87, 0.05) 100%);
    top: -100px;
    right: -50px;
    animation: float1 8s ease-in-out infinite;
}

.hakkimizda-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(243, 116, 63, 0.1) 0%, rgba(255, 200, 150, 0.08) 100%);
    bottom: -80px;
    left: 10%;
    animation: float2 10s ease-in-out infinite;
}

.hakkimizda-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(243, 116, 63, 0.12) 0%, transparent 100%);
    top: 40%;
    left: -60px;
    animation: float3 6s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 20px) rotate(10deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.1);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* Image Wrapper with Frame Effect */
.hakkimizda-image-wrapper {
    position: relative;
    z-index: 1;
}

.hakkimizda-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.hakkimizda-image-wrapper:hover .hakkimizda-image-frame {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
}

.hakkimizdasection img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hakkimizda-image-wrapper:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(243, 116, 63, 0.25);
}

/* Experience Badge */
.hakkimizda-experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b35 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(243, 116, 63, 0.4);
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 15px 40px rgba(243, 116, 63, 0.4);
    }

    50% {
        box-shadow: 0 20px 50px rgba(243, 116, 63, 0.6);
    }
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Content Area */
.hakkimizda-content {
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

/* Kicker / Subtitle */
.hakkimizda-kicker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.kicker-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #ffb088 100%);
    border-radius: 2px;
}

.kicker-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
}

/* Title */
.hakkimizda-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    position: relative;
}

.hakkimizda-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    border-radius: 2px;
}

/* Text */
.hakkimizda-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-gray);
    margin-bottom: 35px;
    padding-top: 15px;
}

.hakkimizda-text p {
    margin-bottom: 15px;
}

/* Stats Counter */
.hakkimizda-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* CTA Button */
.hakkimizda-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b35 100%);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(243, 116, 63, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hakkimizda-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hakkimizda-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(243, 116, 63, 0.45);
    color: white;
}

.hakkimizda-btn:hover::before {
    left: 100%;
}

.hakkimizda-btn svg {
    transition: transform 0.3s ease;
}

.hakkimizda-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .hakkimizdasection {
        padding: 80px 0;
    }

    .hakkimizda-content {
        padding-left: 0;
        padding-top: 60px;
    }

    .hakkimizda-title {
        font-size: 36px;
    }

    .hakkimizda-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hakkimizda-experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px;
    }

    .badge-number {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hakkimizda-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hakkimizda-title {
        font-size: 28px;
    }

    .hakkimizdasection img {
        height: 300px;
    }
}

.btn-primary {
    background-color: #ff8b57;
    border: #ff8b57;
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f26323;
    border: #f26323;
}


.anasayfaurunlersection {
    min-height: 400px;
    margin: 40px 0;
}

.anasayfaurunlersection span {
    padding: 15px 0;
    border-bottom: 2px solid #f26323;
}

.anasayfaurunlersection h2 {
    margin: 25px 0;
}

.anasayfaurunlersection .urundiv {
    border: 1px solid #ccc;
    margin: 5px 0;
    border-radius: 5px;
    position: relative;
}

.anasayfaurunlersection .urundetay {
    position: absolute;
    bottom: 20px;
    background: #f26323;
    width: 80%;
    color: white;
    padding: 5px;
}

.anasayfaurunlersection .urundetay a {
    text-decoration: none;
    color: white;
}


.urunlersection {
    min-height: 400px;
    margin: 40px 0;
}

.urunlersection .urundiv {
    border: 1px solid #ccc;
    margin: 5px 0;
    border-radius: 5px;
}




/* ===== MODERN FOOTER ===== */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Dalga Efekti */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: #f8f9fa;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

/* Üst Bölüm */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, #f26222, #ffb91d);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 98, 34, 0.4);
    color: #fff;
}

/* Ana Bölüm */
.footer-main {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

/* Widget */
.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f26222, #ffb91d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links li a i {
    font-size: 10px;
    color: #f26222;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #ffb91d;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* İletişim Bilgileri */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f26222;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: linear-gradient(135deg, #f26222, #ffb91d);
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffb91d;
}

/* Alt Bölüm */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.copyright i {
    margin-right: 5px;
}

.designer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.designer-link i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.designer-link:hover {
    color: #ffb91d;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 60px 0 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-widget {
        text-align: center;
    }

    .widget-title {
        justify-content: center;
    }

    .footer-links li a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom .row>div {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}



.edu-breadcrumb-wrapper {
    width: 100%;
    position: relative;
    background: linear-gradient(120deg, #e9774c, #f26222);
    overflow: hidden;
}

/* Arka plandaki shape’ler */
.edu-breadcrumb-wrapper::before,
.edu-breadcrumb-wrapper::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
}

.edu-breadcrumb-wrapper::before {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
}

.edu-breadcrumb-wrapper::after {
    width: 220px;
    height: 220px;
    bottom: -50px;
    left: -40px;
}

/* İçerik */
.edu-breadcrumb {
    position: relative;
    z-index: 5;
    padding-left: 5px;
}

.edu-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
}

.edu-breadcrumb a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.edu-breadcrumb a:hover {
    color: #e0e7ff;
}

.edu-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.derssection .course-hero {
    width: 100%;
    background: linear-gradient(120deg, #468bca, #114b83);
    color: #fff;
    padding: 40px 0;
}

.derssection .course-hero h1 {
    font-weight: 700;
}

.derssection .course-meta i {
    margin-right: 6px;
}

.derssection .course-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.derssection .course-box .price {
    font-size: 32px;
    font-weight: 700;
}

.derssection .section-title {
    font-size: 22px;
    font-weight: 600;
}

.derssection .curriculum-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 10px;
}


.img-darla {
    width: 100%;
    height: 250px;
    /* SABİT YÜKSEKLİK */
    overflow: hidden;
}

.img-darla img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* KIRPARAK SIĞDIR */
}


.img-darla2 {
    width: 100%;
    height: 250px;
    /* SABİT YÜKSEKLİK */
    overflow: hidden;
}

.img-darla2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* SİNEMATİK GEÇİŞ */
    transition:
        transform 1.2s cubic-bezier(.22, 1, .36, 1),
        filter .8s ease;
    /* KIRPARAK SIĞDIR */
}

.img-darla2:hover img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Gradient shadow */
.img-darla2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    /* gölge yüksekliği */
    background: linear-gradient(to top,
            rgba(255, 140, 0, 0.75),
            /* turuncu */
            rgba(255, 140, 0, 0));
    pointer-events: none;
}


/* ========================================
   ORTADUNYA SECTION - COMPACT & CREATIVE
   ======================================== */
.ortadunyasection {
    position: relative;
    padding: 45px 0;
    background: transparent;
    overflow: hidden;
}

/* World Map Background */
.ortadunya-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../img/harita.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

/* Decorative dots pattern overlay */
.ortadunyasection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(243, 116, 63, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.ortadunya-logo-wrapper {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.ortadunya-logo-wrapper img {
    max-width: 220px;
    height: auto;
}

.ortadunya-values {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.value-card {
    flex: 1;
    max-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Pattern inside boxes */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(243, 116, 63, 0.06) 50%);
    border-radius: 0 12px 0 0;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ddd 0%, #eee 50%, #ddd 100%);
    transition: all 0.3s ease;
}

.value-card:hover::after {
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff8b57 100%);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(243, 116, 63, 0.12);
}

/* Featured Card */
.value-card-featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b35 100%);
    border: none;
}

.value-card-featured::before {
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
}

.value-card-featured::after {
    background: rgba(255, 255, 255, 0.3);
}

.value-card-featured:hover::after {
    background: rgba(255, 255, 255, 0.5);
}

.value-card-featured h4,
.value-card-featured p {
    color: #fff !important;
}

.value-card-featured .value-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon svg {
    width: 35px;
    height: 35px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.value-accent {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ortadunya-values {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        max-width: 100%;
        width: 100%;
    }

    .ortadunyasection {
        padding: 40px 0;
    }
}

.productdetailsection h3 {
    font-weight: 200;
    color: var(--color-primary);
}

.productdetailsection hr {
    border: 1px solid var(--color-primary);
    width: 50px;
    opacity: 1;
}

.productdetailsection .productfiles h4 {

    font-weight: 300;
    color: var(--color-text-gray);

}


.productdetailsection .productfiles a {
    color: var(--color-primary);
    text-decoration: none;
}

.productdetailsection .productfiles span {
    color: var(--color-text-light);
}

.irtibatsection .irtibatbg {
    background-color: #f26323;
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    height: 598px;
    padding: 60px 80px;

}

.irtibatsection .irtibatbg .btn-danger {
    height: 50px;
    border-radius: 1px;
    background-color: white;
    color: #f26323;
    font-weight: 600;
}

/* ===== NEDEN BIZ SECTION ===== */
.neden-biz-section {
    padding: 40px 0 60px 0;
    position: relative;
    background: #fff;
}

.neden-card {
    background: #fff;
    padding: 15px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
}

.neden-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.neden-icon {
    width: 50px;
    height: 50px;
    background: #fff7ed;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.neden-card:hover .neden-icon {
    background: var(--color-primary);
    color: #fff;
}

.neden-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2;
}

.neden-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.neden-card:hover .neden-icon img {
    filter: brightness(0) invert(1);
}

.neden-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.neden-card p {
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-gray);
    margin-bottom: 0;
}

.neden-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.4s ease;
}

.neden-card:hover .neden-line {
    width: 100%;
}

.neden-title-main {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-top: 10px;
}

/* ===== MODERN ABOUT SECTION ===== */
.about-modern-section {
    padding: 60px 0 20px 0;
    background-color: #fcfcfc;
}

.about-modern-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge-floating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-left: 3px solid var(--color-primary);
}

.exp-years {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 3px;
}

.exp-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.modern-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-lead {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    border-left: 3px solid rgba(243, 116, 63, 0.3);
    padding-left: 12px;
}

.about-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-gray);
    margin-bottom: 12px;
}

.btn-modern-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-modern-arrow:hover {
    gap: 15px;
}

/* ===== KATALOG PAGE STYLES ===== */
.katalog-page-wrapper {
    background-color: #fcfcfc;
    min-height: 80vh;
}

.pdf-viewer-container {
    padding: 10px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .pdf-viewer-container iframe {
        height: 500px;
    }
}

/* ===== GLOBAL CONTACT BANNER STYLES ===== */
:root {
    --sch-primary-red: #ff6600;
    --sch-primary-red-hover: #cc5200;
    --sch-text-dark: #101010;
    --sch-text-secondary: #666666;
    --sch-text-light: #999999;
    --sch-bg-white: #ffffff;
    --sch-bg-light: #f8f8f8;
    --sch-bg-grey: #f0f0f0;
    --sch-border-light: #e0e0e0;
}

.sch-contact-banner {
    background: var(--sch-bg-white);
    width: 100%;
}

.sch-contact-banner a {
    text-decoration: none !important;
}

.sch-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 400px;
}

.sch-contact-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.sch-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sch-contact-content {
    background: var(--sch-primary-red);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    height: 100%;
}

.sch-contact-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: white !important;
}

.sch-contact-content p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 400px;
    color: white !important;
}

.sch-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--sch-bg-white);
    color: var(--sch-primary-red) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    width: fit-content;
}

.sch-btn-white:hover {
    background: var(--sch-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .sch-contact-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .sch-contact-image {
        height: 250px;
    }

    .sch-contact-content {
        padding: 40px 24px;
        text-align: center;
        align-items: center;
    }
}