/* Global Settings */
:root {
    --corporate-blue: #004d80;
    --corporate-light-blue: #f4f8fa;
    /* Much lighter for subtle cohesion */
    --corporate-accent: #f89406;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    /* Changed from gray to white for cleaner look */
}

/* Sayfa Detay Konteyner */
.sayfadetay {
    background: #ffffff;
    box-shadow: none;
    padding: 0;
    margin-bottom: 40px;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Kurumsal İçerik Alanı */
.corporate-content {
    line-height: 1.8;
    color: var(--text-color);
    padding: 50px 60px;
}

.corporate-padding {
    padding: 0;
}

/* Başlık Stilleri */
.corporate-content h2,
.corporate-content h3,
.corporate-content h4 {
    color: var(--corporate-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.corporate-content h3 {
    font-size: 22px;
    margin-top: 30px;
}

/* Modern & Clean Lead Text */
.corporate-content p.lead-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--corporate-blue);
    margin-bottom: 50px;
    line-height: 1.7;
    border-left: 5px solid #e3000f;
    padding-left: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Content Section */
.content-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--corporate-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}



.content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #e3000f;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mission / Vision Section - Corporate Style */
.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: #ffffff;
    padding: 0;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.mv-header {
    background: linear-gradient(135deg, var(--corporate-blue) 0%, #003d66 100%);
    padding: 25px 30px;
    position: relative;
}

.mv-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #e3000f;
}

.mv-header h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}

.mv-card p {
    padding: 30px;
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
}


/* Sidebar - Wiletisim - Modern & Corporate */
.wiletisim {
    background-color: #e3000f;
    padding: 40px 30px;
    border-radius: 0;
    color: #ffffff;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 15px rgba(227, 0, 15, 0.2);
}

.wiletisim span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.3px;
}

.wiletisim p {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.wiletisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiletisim ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 0;
}

.wiletisim ul li:last-child {
    margin-bottom: 0;
}

.wiletisim ul li i {
    min-width: 28px;
    color: #e3000f;
    margin-top: 2px;
    font-size: 16px;
    margin-right: 12px;
}

.wiletisim ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    word-break: break-word;
}

.wiletisim ul li a:hover {
    color: #e3000f;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .corporate-content {
        padding: 30px 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        padding: 30px 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wiletisim {
        margin-top: 40px;
        padding: 30px 25px;
    }

    .corporate-content p.lead-text {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}



.section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title span {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -6px;
    width: 5px;
    height: 5px;
    background: #e3000f;
}
.section-title span:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: 1px;
    width: 5px;
    height: 5px;
    background: #111;
}

.section-title p {
    font-size: 0.9rem;
    color: #444;
    padding: 0px 10%;
}

.products-slider {
    position: relative;
    z-index: 1;
}

.product-item {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 10px;
    height: 500px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: #e3000f;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8f9fa;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-item:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: #3498db;
}

.product-content p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e3000f;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-btn:hover {
    background: #c20000;
    transform: translateY(-2px);
    color: #fff;
}

/* Owl Carousel Custom Styles */
.products-slider .owl-nav {
    display: none;
}

.products-slider .owl-stage {
    display: flex;
}

.products-slider .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.products-slider .owl-item .feature-info {
    width: 100%;
}

.products-slider .owl-nav button {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.products-slider .owl-nav button.owl-prev {
    left: -25px;
}

.products-slider .owl-nav button.owl-next {
    right: -25px;
}

.products-slider .owl-nav button:hover {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%) !important;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.products-slider .owl-nav button span {
    font-size: 30px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.products-slider .owl-nav button:hover span {
    color: #fff;
}

.products-slider .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.products-slider .owl-dot {
    width: 8px;
    height: 8px;
    background: #bdc3c7;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.products-slider .owl-dot.active {
    background: #e3000f;
    width: 20px;
    border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 16px;
    }

    .product-item {
        margin: 10px;
        height: auto;
    }

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .products-slider .owl-nav button {
        display: none;
    }
}

/* Feature Info Style 07 Custom CSS */
.feature-info {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-info-style-07 {
    position: relative;
    background-color: transparent;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.feature-info-style-07 .feature-info-img {
    overflow: hidden;
    position: relative;
    /* Ensure valid positioning context */
}

/* Gradient Overlay */
.feature-info-style-07 .feature-info-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    /* Let clicks pass through to the link/image */
}

.feature-info-style-07:hover .feature-info-img::before {
    opacity: 1;
}

.feature-info-style-07 .feature-info-img img {
    border-radius: 5px;
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-info-style-07:hover .feature-info-img img {
    transform: scale(1.05);
}

/* Content Area */
.feature-info-style-07 .feature-info-content {
    padding: 30px 30px 20px 30px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-grow: 1;
}
.feature-info-style-07 .feature-info-content p {
	display: block;
	font-size: 0.9rem;
	line-height: 1.5;
}
.feature-info-style-07 .feature-info-content .feature-info-title {
    margin-bottom: 25px;
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #022d62;
    margin-top: 0;
}

.feature-info-style-07 .feature-info-content .feature-info-title:hover {
    color: #0671c5;
}

/* Icon Button */
.feature-info-style-07 .feature-info-content .icon-btn {
    position: absolute;
    bottom: -40px;
    left: 20px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover Effects */
.feature-info-style-07:hover .feature-info-content {
    margin-top: -40px;
    padding-bottom: 50px;
}

.feature-info-style-07:hover .feature-info-content .icon-btn {
    bottom: 15px;
    opacity: 1;
}

/* Icon Button Base Style */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e3000f;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icon-btn:hover {
    background: #c20000;
}

/* Utility */
.h-100 {
    height: 100% !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

/* Slider Button Animation & Style */
.main-slider .slide .btn-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 1s;
    /* 1s delay to appear after text */
}

.main-slider .owl-item.active .slide .btn-box {
    opacity: 1;
    transform: translateY(0);
}

/* Creative Corporate Button Style */
.btn-style-one.theme-btn {
    background: #e3000f;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.btn-style-one.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #e3000f;
    /* Corporate Red */
    z-index: -1;
    transition: width 0.4s ease;
}

/* Mobile Menu Fixes */
@media (max-width: 991px) {

    /* Hide Bootstrap Default Toggler */
    .navbar-header .navbar-toggler {
        display: none !important;
    }

    /* Show Custom Template Toggler */
    .mobile-nav-toggler {
        display: block !important;
        visibility: visible !important;
        cursor: pointer;
        z-index: 100;
        color: #333;
        /* Ensure icon is visible */
        font-size: 24px;
    }

    /* Adjust header layout for mobile */
    .nav-outer {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/* Ensure Mobile Menu is on top */
.mobile-menu {
    z-index: 99999 !important;
}

.mobile-menu .menu-backdrop {
    z-index: 1 !important;
    /* Lower than menu-box */
}

.mobile-menu .menu-box {
    z-index: 5 !important;
    /* Higher than backdrop */
    position: absolute !important;
    right: 0px !important;
    left: auto !important;
    width: 95% !important;
}

.mobile-menu .close-btn {
    z-index: 10 !important;
    /* Highest */
    position: relative;
}

.btn-style-one.theme-btn:hover {
    color: #ffffff;
    border-color: #e3000f;
}

.btn-style-one.theme-btn:hover::before {
    width: 100%;
}

/* Modern Corporate Section */
.modern-corporate {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #fff;
}

.modern-corporate .image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    /* Slightly sharper radius */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    /* Deep shadow */
}

.modern-corporate .image-wrapper img {
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.2, 1);
    width: 100%;
    display: block;
}

.modern-corporate .image-wrapper:hover img {
    transform: scale(1.08);
}

/* Decorative Backdrop Element */
.modern-corporate .deco-bg {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background-color: #f4f8fa;
    /* Corporate Light Blue */
    z-index: -1;
    border-radius: 8px;
}

.modern-corporate-content {
    padding-left: 50px;
    /* Spacing from image */
}

.modern-corporate-content .sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e3000f;
    /* Corporate Red */
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-left: 50px;
}

.modern-corporate-content .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #e3000f;
}

.modern-corporate-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #004d80;
    /* Corporate Blue */
    margin-bottom: 25px;
    line-height: 1.25;
}

.modern-corporate-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature List */
.modern-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 20px;
}

.modern-feature-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.modern-feature-list li i {
    color: #e3000f;
    margin-right: 12px;
    font-size: 14px;
    background: #fff0f0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Button style reuse */
.modern-corporate-content .theme-btn {
    border-radius: 4px;
    padding: 14px 40px;
}

/* Responsive */
@media (max-width: 991px) {
    .modern-corporate-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .modern-corporate-content h2 {
        font-size: 30px;
    }

    .modern-feature-list {
        grid-template-columns: 1fr;
    }

    .modern-corporate .deco-bg {
        top: 20px;
        left: 20px;
    }
}

/* Modern Corporate - Layered Images (Vertical Concept) */
.layered-images {
    position: relative;
    height: 550px;
    /* Reduced height from 680px */
    margin-right: 30px;
    margin-bottom: 30px;
}

.layered-images .img-box {
    position: absolute;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.layered-images .img-one {
    width: 55%;
    height: 75%;
    /* Reduced from 85% */
    top: 0;
    left: 0;
    z-index: 1;
}

.layered-images .img-two {
    width: 55%;
    height: 65%;
    /* Reduced from 70% */
    bottom: 0;
    right: 0;
    z-index: 2;
    border: none !important;
}

.layered-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.layered-images .img-one:hover img {
    transform: scale(1.05);
}

.layered-images .img-two:hover img {
    transform: scale(1.05);
}

/* Decorative Dots */
.layered-images .deco-dots {
    position: absolute;
    bottom: -30px;
    right: -30px;
    top: auto;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(#e3000f 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.15;
    z-index: 0;
}