/* Modern Redesign CSS for Front-end Landing Page */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --primary-gradient: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --primary-color: #1A2637;
    --secondary-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --secondary-color: #f1f5f9;
    --warning-gradient: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    --warning-color: #d97706;
    --danger-gradient: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    --danger-color: #dc2626;
    --info-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --info-color: #0284c7;
    --accent-orange: #f9660d;
    --accent-orange-light: #fff6ed;
    --white: #ffffff;
    --soft-gray: #f8fafc;
    --border-color: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: "Outfit", sans-serif !important;
    background-color: #F4F4F8 !important;
    color: #1e293b;
    overflow-x: hidden;
}

/* Header Rewrite */
.main-header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.header-sticky {
    border-top: none !important;
}

.navbar-brand img {
    max-height: 70px;
    transition: var(--transition);
}

.nav-link {
    color: #475569 !important;
    font-family: "Outfit", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    transition: var(--transition) !important;
}

.nav-link:hover {
    color: var(--accent-orange) !important;
}

/* Modern Buttons Override */
.btn {
    font-family: "Outfit", sans-serif !important;
    font-weight: 600 !important;
    border-radius: 14px !important;
    padding: 12px 28px !important;
    transition: var(--transition) !important;
    border: none !important;
}

.btn-warning {
    background: var(--accent-orange) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(249, 102, 13, 0.25) !important;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(249, 102, 13, 0.35) !important;
}

.btn-light {
    background: var(--soft-gray) !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
}

.btn-light:hover {
    background: #e2e8f0 !important;
    transform: translateY(-2px);
}

/* Hero Creative Redesign */
.hero {
    position: relative;
    padding: 80px 0 80px 0 !important;
    background: #ffffff !important;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 102, 13, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 38, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-shape-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(249, 102, 13, 0.02) 0%, rgba(26, 38, 55, 0.02) 100%);
    filter: blur(80px);
    border-radius: 50%;
}

/* Floating Animation */
@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3Cpath fill='%23F9660D' fill-opacity='0.03' d='M44.7,-76.4C58.8,-69.2,71.8,-59.1,79.6,-46.5C87.4,-33.9,90.1,-16.9,89.1,-0.6C88,15.7,83.3,31.4,74.1,44.5C64.9,57.6,51.3,68.1,36.5,75.1C21.8,82.1,5.9,85.6,-10,84C-25.9,82.4,-41.8,75.7,-54.9,65.8C-68,55.9,-78.2,42.7,-84.3,28.1C-90.4,13.5,-92.4,-2.5,-89,-17.7C-85.6,-32.9,-76.7,-47.3,-64,-55.1C-51.3,-62.8,-34.7,-64,-20,-71.9C-5.3,-79.8,7.5,-94.4,22.6,-96.2C37.7,-98.1,55,-73.4,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    z-index: -1;
    animation: floating 5s ease-in-out infinite;
}

.hero-image-wrapper figure {
    position: relative;
    animation: floating 3.5s ease-in-out infinite;
}

.hero-image-wrapper img {
    max-width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 10px solid white;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image-wrapper img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-weight: 900 !important;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--accent-orange);
    position: relative;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-content-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Service Boxes (We Help) */
.we-help {
    padding: 50px 0;
    background: #f8fafc;
}

.we-help-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.we-help-box {
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.we-help-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 102, 13, 0.1);
}

.icon-boxssss {
    width: 60px;
    height: 60px;
    background: var(--accent-orange-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.we-help-box:hover .icon-boxssss {
    background: var(--accent-orange);
    transform: scale(1.1) rotate(5deg);
}

.icon-boxssss img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: var(--transition);
}

.we-help-box:hover .icon-boxssss img {
    filter: brightness(0) invert(1);
}

.we-help-title h3 {
    font-size: 15px !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    line-height: 1.4;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h1 {
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* Swiper / Slider Adjustments */
.hero .swiper-slide {
    padding: 20px;
}

.testimonial-slider .swiper {
    overflow: visible !important;
}

.google-rating {
    margin-bottom: 15px;
}

.google-rating ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Dashboard Specific Styles */
/* Glassmorphism Redesign for Customer Dashboard */
body.customer-dashboard {
    background: linear-gradient(135deg, #efe6fc 0%, #e3eeff 50%, #fdf5e6 100%) !important;
    background-attachment: fixed !important;
}
body.customer-dashboard .sidebar-header-profile {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.customer-dashboard .compact-company-details {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.customer-dashboard .compact-company-name-row {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4) !important;
}

body.customer-dashboard .modern-submenu-drawer {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Sol menü alt menüleri sağ panelin (top-bar z-index: 1000) üstünde kalsın */
@media (min-width: 992px) {
    body.customer-dashboard .row > .col-lg-3.col-md-3 {
        position: relative;
        z-index: 1050;
    }

    body.customer-dashboard .modern-sidebar-container,
    body.customer-dashboard .sidebar-menu-list {
        overflow: visible !important;
    }

    body.customer-dashboard .modern-menu-has-submenu:hover {
        z-index: 1060;
    }

    body.customer-dashboard .modern-submenu-drawer {
        z-index: 1070;
    }
}

/* Üst bar bildirim dropdown: sayfa içeriğinin üstünde, sol menü alt menüsünün (1070) altında */
body.customer-dashboard .row.mb-3:has(.top-bar-modern-inner) {
    position: relative;
    z-index: 1020;
    overflow: visible !important;
}

body.customer-dashboard .notify-wrapper {
    z-index: 1030 !important;
}

body.customer-dashboard .modern-notify-dropdown {
    z-index: 1040 !important;
}

/* Sidebar menu items glassmorphism adjustments */
body.customer-dashboard .modern-menu-item {
    background: transparent !important;
    border: 1px solid transparent !important;
}

body.customer-dashboard .modern-menu-item:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #667eea !important;
    transform: translateX(3px) !important;
}

body.customer-dashboard .modern-menu-item:hover i {
    color: #667eea !important;
}

body.customer-dashboard .modern-menu-item.active {
    background: rgba(102, 126, 234, 0.12) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    color: #667eea !important;
}

body.customer-dashboard .modern-menu-item.active i {
    color: #667eea !important;
}

/* Sidebar submenu items glassmorphism adjustments */
body.customer-dashboard .modern-submenu-item {
    background: transparent !important;
    border: 1px solid transparent !important;
}

body.customer-dashboard .modern-submenu-item:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #667eea !important;
    padding-left: 16px !important;
}

body.customer-dashboard .modern-submenu-item.active {
    background: rgba(102, 126, 234, 0.12) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    color: #667eea !important;
    font-weight: 600 !important;
}


body.customer-dashboard .top-bar-modern-inner {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03) !important;
    overflow: visible !important;
}

body.customer-dashboard .top-bar-box {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

body.customer-dashboard .top-bar-box:hover {
    background: rgba(255, 255, 255, 0.6) !important;
}

body.customer-dashboard .card-modern {
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04) !important;
    overflow: hidden;
}

body.customer-dashboard .modern-table th {
    background: transparent !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
}

body.customer-dashboard .modern-table td {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

body.customer-dashboard .modern-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

/* Mobile Glassmorphism Specifics */
@media (max-width: 991px) {
    body.customer-dashboard .mobile-menu-toggle {
        background: rgba(255, 255, 255, 0.5) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }
    body.customer-dashboard .mobile-menu-toggle span {
        background: #475569 !important;
    }
    body.customer-dashboard .mobile-slide-menu {
        background: rgba(255, 255, 255, 0.6) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    body.customer-dashboard .mobile-menu-header {
        background: rgba(255, 255, 255, 0.3) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    body.customer-dashboard .mobile-user-info h4 {
        color: #1e293b !important;
    }
    body.customer-dashboard .mobile-user-info p {
        color: #64748b !important;
    }
    body.customer-dashboard .mobile-menu-close {
        background: rgba(0, 0, 0, 0.05) !important;
        color: #475569 !important;
    }
}

.btn-modern {
    border-radius: 12px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    padding: 10px 20px !important;
    transition: var(--transition);
}

.btn-modern.btn-primary {
    background: linear-gradient(135deg, #1A2637 0%, #2a3a4d 100%) !important;
    color: white !important;
}

.btn-modern.btn-info {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%) !important;
    color: white !important;
}

.btn-modern.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
}

/* Sidebar and Menu Styles */
.sidebar-menu-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 8px;
}

.modern-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 20px !important;
    border-radius: 12px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    border: 1px solid transparent !important;
}

.modern-menu-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #64748b;
    transition: var(--transition);
}

.modern-menu-item:hover {
    background: var(--soft-gray) !important;
    color: var(--accent-orange) !important;
    transform: translateX(5px);
}

.modern-menu-item:hover i {
    color: var(--accent-orange);
}

.modern-menu-item.active {
    background: var(--accent-orange-light) !important;
    color: var(--accent-orange) !important;
    border: 1px solid rgba(249, 102, 13, 0.1) !important;
}

.modern-menu-item.active i {
    color: var(--accent-orange);
}

/* Component: Why Choose Us Items */
.why-choose-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249,102,13, 0.1);
}

.why-choose-body img {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.why-choose-body h3 {
    font-size: 18px !important;
    margin-bottom: 12px;
    color: #1e293b;
}

.why-choose-body p {
    color: #64748b;
    line-height: 1.6;
}

/* Component: Testimonial Items */
.testimonial-item {
    background: white !important;
    border-radius: var(--radius-md) !important;
    padding: 30px !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-content h2 {
    font-size: 16px !important;
    margin: 0;
    color: #1e293b;
}

.author-content p {
    font-size: 13px !important;
    color: #64748b;
    margin: 0;
}

.star-rating {
    margin-top: 5px;
}

.star-rating i {
    color: var(--accent-orange);
    font-size: 12px;
}

.testimonial-body p {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background: #051320 !important;
    color: white !important;
}

.footer-links h2 {
    font-size: 18px !important;
    color: white !important;
    margin-bottom: 20px;
    font-weight: 700 !important;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--accent-orange) !important;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 24px 0;
}

.footer-copyright-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Animations */
.wow {
    visibility: hidden;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 80px 0 120px 0 !important;
    }
    .hero-content h1 {
        font-weight: 800 !important;
    }
    .hero-content {
        padding-left: 0 !important;
        text-align: center;
    }
    .hero-content-footer {
        justify-content: center;
        display: flex;
        gap: 10px;
    }
}

/* Front genel buton radius standardi */
.btn,
a.btn,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    border-radius: 30px !important;
}

/* Header Navigation & Menus */
.nav-menu-wrapper ul#menu li.submenu ul {
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    z-index: 999;
}

.nav-menu-wrapper ul#menu li.submenu ul li a {
    color: #131F2F !important; /* Sistem Lacivert */
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    transition: var(--transition);
}

.nav-menu-wrapper ul#menu li.submenu ul li a:hover {
    color: var(--accent-orange) !important;
    background: rgba(249, 102, 13, 0.05);
}

/* User Dropdown Menu Styles */
ul.dropdown-menu {
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    padding: 10px 0 !important;
    z-index: 9999;
}

ul.dropdown-menu li a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #131F2F !important;
    padding: 8px 15px !important;
}

ul.dropdown-menu li a:hover {
    background: rgba(249, 102, 13, 0.05) !important;
    color: var(--accent-orange) !important;
}

/* Mobil Menü Butonları */
@media (min-width: 992px) {
    .mobile-only-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {
    /* Butonlar için özel container */
    .nav-menu-wrapper ul.navbar-nav {
        display: flex;
        flex-direction: column;
    }

    /* Buton li'leri yan yana dizme */
    .mobile-only-menu {
        display: inline-block !important;
        width: calc(50% - 5px) !important;
        float: left;
        margin: 0 !important;
    }

    /* İlk butonu (Giriş Yap) sola */
    .mobile-only-menu:nth-last-child(2) {
        margin-right: 10px !important;
    }

    /* Butonları menünün sonuna taşı */
    .mobile-only-menu {
        order: 999;
    }

    /* Buton stilleri */
    .mobile-only-menu a.nav-link {
        padding: 12px 15px !important;
        text-align: center !important;
        border-radius: 30px !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        display: block !important;
        margin: 10px 10px 5px 10px !important;
        transition: all 0.3s ease !important;
    }

    /* Giriş Yap butonu (beyaz zemin) */
    .mobile-only-menu:not(.highlighted-menu) a.nav-link {
        background: #fff !important;
        color: #f9660d !important;
        border: 2px solid #f9660d !important;
    }

    .mobile-only-menu:not(.highlighted-menu) a.nav-link:hover {
        background: #f9660d !important;
        color: #fff !important;
    }

    /* Ücretsiz Deneyin butonu (turuncu zemin) */
    .mobile-only-menu.highlighted-menu a.nav-link {
        background: #f9660d !important;
        color: #fff !important;
        border: 2px solid #f9660d !important;
    }

    .mobile-only-menu.highlighted-menu a.nav-link:hover {
        background: #e05a0a !important;
        border-color: #e05a0a !important;
    }

    /* Clear float */
    .nav-menu-wrapper::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Standard Page Design (Corporate Pages) */
.page-header-standard {
    padding: 40px 0 40px !important;
    background: white !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.page-header-standard .hero-shape-1 {
    opacity: 0.3;
}

.page-header-content h1 {
    font-weight: 800 !important;
    color: #131F2F !important;
    margin-bottom: 15px;
}

.breadcrumb-item a {
    color: #64748b !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-orange) !important;
}

.breadcrumb-item.active {
    color: var(--accent-orange) !important;
    font-weight: 600;
}

.page-content-wrapper {
    padding: 80px 0;
    background: #F4F4F8;
}

.modern-content-box {
    background: white !important;
    padding: 50px !important;
    border-radius: 30px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
    color: #334155 !important;
    line-height: 1.8 !important;
}

.modern-content-box p {
    margin-bottom: 20px;
}

.modern-content-box img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.modern-sidebar-widget {
    background: white !important;
    padding: 30px !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-list li {
    margin-bottom: 8px;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    color: #475569 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.sidebar-nav-link:hover {
    background: var(--soft-gray) !important;
    color: var(--accent-orange) !important;
    transform: translateX(5px);
}

.sidebar-nav-link.active {
    background: var(--accent-orange-light) !important;
    color: var(--accent-orange) !important;
}

/* Tüm Modaller İçin Başlık Alanı (Modal Header) Koyu Gri Tasarımı */
.modal-content.modern .modal-header {
    background: linear-gradient(135deg, #374151, #1f2937) !important;
    color: #ffffff !important;
    border-bottom: 1px solid #111827 !important;
}

.modal-content.modern .modal-header .modal-title, 
.modal-content.modern .modal-header .modal-title h5, 
.modal-content.modern .modal-header .modal-title h4, 
.modal-content.modern .modal-header h5, 
.modal-content.modern .modal-header h4 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.modal-content.modern .modal-header .btn-close {
    filter: invert(1) grayscale(1) brightness(2) !important;
    opacity: 1 !important;
}
