/* ===================================================
   ŞENLER SÜT - 
=================================================== */

/* --- 1. TEMEL SIFIRLAMALAR & DEĞİŞKENLER --- */
:root {
    --primary: #df80b7;
    --primary-dark: #9c6a87;
    --secondary: #f3c623;
    --dark: #1d1d1d;
    --text: #555555;
    --gray: #f7f7f7;
    --border: #ececec;
    --white: #ffffff;
    --radius: 16px;
    --transition: 0.35s ease;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: #fff;
}

#anasayfa,
#hakkimizda,
#urunler,
#markalar,
#iletisim {
    scroll-margin-top: 100px;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

section {
    padding: 100px 0;
}

.container{

    max-width:1360px;

}

/*==================================
HEADER
==================================*/

.main-header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:#df80b7;

    transition:.35s ease;

    box-shadow:0 4px 20px rgba(0,0,0,.08);

    overflow: visible;

}

body{

    padding-top:90px;

}

/* Navbar */

.navbar{

    min-height:90px;

    padding:0;

}



.navbar-brand img{

    width:150px;

    height:78px;

    object-fit:contain;

    display:block;

    margin-top:60px;

}

.navbar-brand{

    display:flex;

    align-items:center;

    justify-content:center;

    height:95px;

    padding:0;

    margin:0;

}

.navbar-nav{

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:40px;

}

/*mobil*/
@media(max-width:768px){

.navbar{

    min-height:80px;
}

.navbar-brand{

    height:80px;
}

.navbar-brand img{

    width:110px;
    height:auto;
    margin-top:0;
}
}

/* Link Yazıları - Her zaman beyaz ve net */
.navbar .nav-link{

    position:relative;

    color:#ececec !important;

    font-size:17px;

    font-weight:600;

    letter-spacing:.2px;

    padding:0;

    transition:.35s;

}

.navbar .nav-link:hover{

    color:#df80b7;; !important;

}
.navbar .nav-link.active {
    color: var(--primary) !important;
}

.navbar .nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:2px;

    background:#eeff00;

    transition:.35s;

    transform:translateX(-50%);

}

.navbar .nav-link:hover::after{

    width:100%;

}
/* navbardaki yazının rengi */

.navbar .nav-link.active{

    color:#eeff00 !important;

}

.navbar .nav-link.active::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    padding:0;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* Dil Seçeneği (Opsiyonel) */
.language {
    text-decoration: none;
    font-weight: 700;
    color: #222222;
    margin: 0 4px;
    transition: .3s;
}

.language:hover {
    color: var(--primary);
}

.language.inactive {
    opacity: .5;
}

/* --- 3. HERO SLIDER (MENÜNÜN ALTINDAN SIFIR BOŞLUKLA BAŞLAR) --- */
.hero-slider {

    position: relative;
    width: 100%;
    height: 100vh;

}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {

    width:100%;
    height:100%;

}

.heroSwiper .swiper-slide img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 0 !important;
}
.hero-overlay{

    position:absolute !important;
    inset:0 !important;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.35),
        rgba(0,0,0,.70)
    ) !important;

    z-index:1 !important;
}

.hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 1320px !important;
    max-width: 90% !important;
    z-index: 10 !important;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transition: 1s;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translate(-50%, -50%) !important;
}

.hero-badge,
.hero-content span {
    display: inline-block;
    background: var(--primary);
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: .5px;
}

.hero-content h1{

    font-size:72px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:25px;

    color:#fff;

    text-shadow:
        0 3px 12px rgba(0,0,0,.70),
        0 1px 2px rgba(0,0,0,.90);

}

.hero-content h1 span,
.hero-content h1 strong {
    color: var(--secondary);
    font-weight: 800;
}

.hero-content p{

    width:600px;
    max-width:100%;

    font-size:20px;
    line-height:1.8;

    margin-bottom:40px;

    color:#f8f8f8;

    text-shadow:
        0 2px 8px rgba(0,0,0,.65);

}

/* Slider Butonları */
.hero-content .btn {
    padding: 16px 36px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 700;
    transition: .35s;
}

.hero-content .btn:hover {
    transform: translateY(-4px);
}

.hero-content .btn-danger {
    background: var(--primary);
    border: none;
}

.hero-content .btn-danger:hover {
    background: var(--primary-dark);
}

.hero-content .btn-light {
    margin-left: 15px;
}

/* Slider Okları ve Noktaları */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    width: 42px;
    border-radius: 50px;
    background: var(--secondary);
    opacity: 1;
}

/* --- 4. SCROLL DOWN İKONU --- */
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down span {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 30px;
    position: relative;
}

.scroll-down span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

.scroll-down p {
    margin-top: 12px;
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* --- 5. HERO BİLGİ ALANI (60+ Yıl vs.) --- */
.hero-info {
    position: absolute;
    right: 80px;
    bottom: 80px;
    display: flex;
    gap: 50px;
    z-index: 50;
}

.hero-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.hero-info span {
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
}

/* --- 6. ORTAK BUTONLAR & BAŞLIKLAR --- */
.btn-danger {
    background: var(--primary);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
    color: var(--white);
}

.btn-danger:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span:not(.section-subtitle),
.section-mini-title{
    color: var(--primary);
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
    color: var(--dark);
}

.section-title p {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
}

/* --- 7. sağlıklı yaşam --- */
.corporate-section {
    padding: 120px 0;
    background: #fff;
}

.corporate-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);

    width: 100%;
    max-width: 600px;   /* 600 yerine 700-800 yapabilirsin */
    margin: 0 auto;
}
.corporate-image img {
    width: 100%;
    height: 999px;      /* 500, 600, 650 gibi artırabilirsin */
    object-fit: cover;
    display: block;
    transition: .6s;
}

.corporate-image:hover img {
    transform: scale(1.05);
}

.corporate-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
    color: #222;
}

.corporate-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.corporate-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    flex: 1;
    background: #fafafa;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    transition: .4s;
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.feature-box h3 {
    color: var(--primary);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-box span {
    color: #555;
    font-weight: 600;
}



/* --- 9. ÜRÜNLERİMİZ --- */
.products-section {
    padding: 120px 0;
    background: #f8f8f8;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    height: 420px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    transition: .4s;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.product-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .20);
}

.product-item:hover img {
    transform: scale(1.12);
}

.product-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .92),
        rgba(0, 0, 0, .20),
        transparent
    );
    transition: .4s;
}

.product-item:hover .product-overlay {
    background: linear-gradient(
        to top,
        rgba(200, 16, 93, 0.93),
        rgba(200, 16, 46, .30),
        transparent
    );
}

.product-line {
    width: 55px;
    height: 4px;
    background: var(--secondary);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: .35s;
}

.product-item:hover .product-line {
    width: 100px;
}

.product-overlay h3 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: .35s;
}

.product-item:hover h3 {
    transform: translateY(-3px);
}

.product-overlay p {
    color: #efefef;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.product-overlay a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .35s;
    transform: translateX(-15px);
    opacity: 0;
}

.product-item:hover .product-overlay a {
    transform: translateX(0);
    opacity: 1;
}

/* --- 10. İLETİŞİM --- */
.contact-section {
    padding: 120px 0;
    background: #fafafa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: .35s;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.contact-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
}

.contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/*==================================
FOOTER
==================================*/

.footer{

    background:#111;

    color:#fff;

    padding:80px 0 25px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-text{

    color:#cfcfcf;

    line-height:1.8;

    font-size:15px;

}

.footer h4{

    font-size:20px;

    margin-bottom:25px;

    font-weight:700;

}

.footer-links,

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li,

.footer-contact li{

    margin-bottom:15px;

}

.footer-links a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#df80b7;

    padding-left:6px;

}

.footer-contact{

    color:#cfcfcf;

    line-height:1.8;

}

.footer-social{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-social a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    color:#df80b7;

}

.footer hr{

    border-color:#333;

    margin:45px 0 25px;

}

.copyright{

    text-align:center;

    color:#888;

    font-size:14px;

}

/* --- 12. SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
}

::-webkit-scrollbar-track {
    background: #efefef;
}

/* --- 13. PRELOADER (YÜKLEME EKRANI) --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .7s;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader img {
    width: 170px;
    margin-bottom: 35px;
    animation: logoFloat 2s ease infinite;
}

.loader-line {
    width: 220px;
    height: 4px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.loader-line::before {
    content: "";
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--primary);
    animation: loading 1.2s linear infinite;
}

@keyframes loading {
    from { left: -40%; }
    to { left: 100%; }
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.navbar-collapse{

    justify-content:flex-end;

}
/*==================================
MARKALARIMIZ
==================================*/

.partners-section{

    padding:160px 0;

    background:#fafafa;

}

.brands-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    margin-top:80px;

    flex-wrap:wrap;

}
.brand-card{

    width:320px;

    min-height:420px;      /* Tüm kartlar aynı yükseklik */

    background:#fff;

    border-radius:26px;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    padding:35px 25px;

    transition:.4s;

    overflow:hidden;

}

.brand-card img{

    width:220px;

    height:120px;

    object-fit:contain;

    display:block;

    margin-bottom:10px;

}
.brand-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(0,0,0,.15);

}

.brand-card:hover img{

    transform:scale(1.06);

}

/*==================================================
ÜRÜNLER SAYFASI HERO
==================================================*/

.page-hero{
    position: relative;
    height: px;
    overflow: hidden;
}

.page-hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.55)
    );

    z-index:1;

}

.page-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:1320px;

    max-width:90%;

    color:#fff;

    z-index:5;

}

.page-content span{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:#df80b7;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

    font-size:14px;

}

.page-content h1{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;

}

.page-content p{

    width:620px;

    max-width:100%;

    font-size:18px;

    line-height:1.8;

    color:#f2f2f2;

}


/*==================================================
BREADCRUMB
==================================================*/

.breadcrumb-area{

    background:#fafafa;

    border-bottom:1px solid #eee;

    padding:22px 0;

}

.breadcrumb-area nav{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

}

.breadcrumb-area a{

    color:#777;

    transition:.3s;

}

.breadcrumb-area a:hover{

    color:#df80b7;

}

.breadcrumb-area strong{

    color:#df80b7;

    font-weight:700;

}


/*==================================================
ÜRÜNLER BAŞLIK
==================================================*/

.products-header{

    padding:100px 0 60px;

    background:#fff;

}

.products-header .section-title{

    max-width:760px;

    margin:auto;

}

.products-header span{

    display:inline-block;

    color:#df80b7;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.products-header h2{

    font-size:46px;

    font-weight:800;

    color:#1f1f1f;

    margin-bottom:20px;

}

.products-header p{

    font-size:18px;

    color:#666;

    line-height:1.9;

}


/*==================================================
ANİMASYON
==================================================*/

.page-content{

    animation:fadeHero 1.2s ease;

}

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translate(-50%,-45%);

    }

    to{

        opacity:1;

        transform:translate(-50%,-50%);

    }

}
/*==================================
PRODUCTS PAGE
==================================*/

.products-page{


    background:#fafafa;

}

.product-category{


}

.product-category h2{

    font-size:42px;

    font-weight:800;

    color:#1d1d1d;

}

.product-category p{

    font-size:17px;

    color:#777;

}

.product-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

        display:flex;

    flex-direction:column;

    justify-content:space-between;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    transition:.4s;

    height:10000;

    overflow:hidden;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.product-card h3{

    font-size:28px;

    font-weight:800;

    color:#222;

    margin-bottom:12px;

}

.product-card p{

    font-size:16px;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.product-gallery{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    gap:45px;

}

.package{

    text-align:center;

    flex:1;

}

.package-title{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#df80b7;

    color:#fff;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

    letter-spacing:.5px;

}

.package img{

    width:100%;

    max-width:240px;

    height:280px;

    object-fit:contain;

    transition:.45s;

}

.product-card:hover .package img{

    transform:scale(1.06);

}


/*==================================
GENEL
==================================*/

*{
    box-sizing:border-box;
}

body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color:#333;
}

.production-container{
    width:95%;
    max-width:1700px;
    margin:0 auto;
}

img{
    max-width:100%;
}

/*==================================
HEADER / NAVBAR
==================================*/

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}
/* novbardaki logo*/

.main-header .navbar-brand img{
    height:150px;
    width:auto;
}

.main-header .nav-link{
    font-size:17px;
    font-weight:600;
    color:#fff;
    margin:0 16px;
    transition:.3s;
}

.main-header .nav-link:hover,
.main-header .nav-link.active{
    color:#df80b7;
}

.main-header.scrolled{
    background:#df80b7;
    box-shadow:0 8px 30px rgba(0,0,0,.12);
}

/*==================================
PAGE HERO
==================================*/

.page-hero{
    position:relative;
    width:100%;
    height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.page-hero img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.page-hero .page-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    z-index:2;
}

.page-hero .container{
    position:relative;
    z-index:3;
}

.page-hero .page-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    color:#fff;
}

.page-hero .page-content span{
    display:inline-block;
    background:#df80b7;
    padding:10px 26px;
    border-radius:40px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.page-hero .page-content h1{
    font-size:56px;
    font-weight:800;
    line-height:1.25;
    margin-bottom:25px;
}

.page-hero .page-content p{
    font-size:20px;
    line-height:1.8;
    opacity:.9;
}

/*==================================
BREADCRUMB
==================================*/

.breadcrumb-area{
    padding:25px 0;
    background:#fafafa;
    border-bottom:1px solid #ececec;
    text-align:center;
}

.breadcrumb-area nav{
    font-size:16px;
    color:#666;
}

.breadcrumb-area a{
    color:#666;
    text-decoration:none;
}

.breadcrumb-area a:hover{
    color:#df80b7;
}

.breadcrumb-area span{
    margin:0 10px;
}

.breadcrumb-area strong{
    color:#df80b7;
}

/*==================================
HAKKIMIZDA (about-company)
==================================*/

.about-company{
    padding:140px 0;
    background:#fff;
}

/* Sayfayı daha geniş kullan */
.about-company .container,
.factory-section .container{
    width:95% !important;
    max-width:1700px !important;
}

/* HTML'de her iki kolon da col-lg-7 olduğu için Bootstrap
   ikisini alt alta düşürüyordu; burada gerçek yan yana
   düzeni CSS ile zorluyoruz. */
.about-company .row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.about-company .row > div:first-child{
    flex:0 0 48%;
    max-width:48%;
}

.about-company .row > div:last-child{
    flex:0 0 52%;
    max-width:52%;
    text-align:left;
}

.about-company-image img{
    width:100%;
    height:820px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.section-subtitle{
    display:inline-block;
    background:#df80b7;
    color:#fff;
    padding:10px 24px;
    border-radius:40px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.about-company h2{
    font-size:46px;
    font-weight:800;
    color:#1b1b1b;
    line-height:1.3;
    margin-bottom:30px;
}

.about-company p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:22px;
}

.about-features{
    display:flex;
    justify-content:flex-start;
    gap:50px;
    margin-top:35px;
    flex-wrap:wrap;
}

.feature-box{
    text-align:center;
}

.feature-box h3{
    font-size:44px;
    font-weight:800;
    color:#df80b7;
    margin-bottom:8px;
}

.feature-box span{
    font-size:16px;
    font-weight:600;
    color:#555;
}

/*==================================
ÜRETİM TESİSLERİ (factory-section)
==================================*/

.factory-section{
    padding:140px 0;
    background:#fafafa;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 90px;
}

.section-title h2{
    font-size:46px;
    font-weight:800;
    color:#1b1b1b;
    margin-bottom:22px;
}

.section-title p{
    font-size:19px;
    line-height:1.9;
    color:#666666;
}

.factory-item{
    margin-bottom:120px;
    padding-bottom:100px;
    border-bottom:1px solid #ececec;
}

.factory-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.factory-item .row{
    align-items:center;
    text-align:center;
    justify-content:center;
}

/* FOTOĞRAF */

.factory-item .carousel{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.factory-item .carousel-item img{
    width:100%;
    height:900px;
    object-fit:cover;
    transition:.6s;
}

.factory-item .carousel:hover img{
    transform:scale(1.05);
}

/* Slider Butonları */

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    background:rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
    transition:.35s;
}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover{
    background:#df80b7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:18px;
    height:18px;
}

/* Yazılar */

.factory-city{
    display:inline-block;
    color:#df80b7;
    font-weight:700;
    letter-spacing:2px;
    font-size:16px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.factory-item h3{
    font-size:44px;
    font-weight:800;
    color:#1b1b1b;
    margin-bottom:25px;
}

.factory-item p{
    font-size:19px;
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
    max-width:750px;
    margin-left:auto;
    margin-right:auto;
}

/* Liste */

.factory-item ul{
    list-style:none;
    padding:0;
    margin:0 auto;
    display:inline-block;
    text-align:left;
}

.factory-item ul li{
    position:relative;
    padding-left:36px;
    margin-bottom:18px;
    color:#444;
    font-size:18px;
    font-weight:500;
}

.factory-item ul li:last-child{
    margin-bottom:0;
}

/* Hover */

.factory-item:hover h3{
    color:#df80b7;
    transition:.35s;
}

/*==================================
ARAÇ FİLOMUZ (fleet-section)
==================================*/

.fleet-section{
    padding:140px 0;
    background:#fff;
}

.fleet-section .row{
    align-items:center;
}

.fleet-section .carousel{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.fleet-section .carousel-item img{
    width:100%;
    height:650px;
    object-fit:cover;
    transition:.8s;
}

.fleet-section .carousel:hover img{
    transform:scale(1.05);
}

.fleet-content{
    padding-left:50px;
    text-align:left;
}

.fleet-badge{
    display:inline-block;
    background:#df80b7;
    color:#fff;
    padding:12px 26px;
    border-radius:40px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.fleet-content h3{
    font-size:40px;
    font-weight:800;
    margin-bottom:25px;
    color:#222;
}

.fleet-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

.fleet-content ul{
    list-style:none;
    padding:0;
}

.fleet-content ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:17px;
    color:#444;
}

.factory-item ul li::before,
.fleet-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:1px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#df80b7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

#fleetSlider .carousel-control-prev,
#fleetSlider .carousel-control-next{
    width:60px;
    height:60px;
    background:rgba(255,255,255,.20);
    backdrop-filter:blur(10px);
    border-radius:50%;
}

#fleetSlider .carousel-control-prev:hover,
#fleetSlider .carousel-control-next:hover{
    background:#df80b7;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

    .page-hero{
        height:450px;
    }

    .page-hero .page-content h1{
        font-size:38px;
    }

    .page-hero .page-content p{
        font-size:17px;
    }

    .about-company,
    .factory-section,
    .fleet-section{
        padding:90px 0;
    }

    .about-company .row > div:first-child,
    .about-company .row > div:last-child{
        flex:0 0 100%;
        max-width:100%;
        text-align:center;
    }

    .about-features{
        justify-content:center;
    }

    .about-company-image img{
        height:400px;
        margin-bottom:40px;
    }

    .about-company h2{
        font-size:34px;
    }

    .about-features{
        gap:35px;
    }

    .factory-item{
        margin-bottom:70px;
        padding-bottom:60px;
    }

    .factory-item .carousel-item img{
        height:420px;
        margin-bottom:35px;
    }

    .factory-item h3{
        font-size:32px;
    }

    .section-title h2{
        font-size:34px;
    }

    .fleet-section .carousel-item img{
        height:380px;
        margin-bottom:35px;
    }

    .fleet-content{
        padding-left:0;
        text-align:center;
    }

    .fleet-content ul{
        display:inline-block;
        text-align:left;
    }

    .fleet-content h3{
        font-size:30px;
    }
}

@media(max-width:576px){

.main-header .navbar-brand{
    margin-bottom:-25px;
}

.main-header .navbar-brand img{
    height:150px;
    width:auto;
}

    .page-hero .page-content h1{
        font-size:28px;
    }

    .about-company-image img,
    .factory-item .carousel-item img,
    .fleet-section .carousel-item img{
        height:260px;
    }

    .about-company h2,
    .factory-item h3{
        font-size:26px;
    }

    .about-company p,
    .factory-item p{
        font-size:17px;
    }

    .about-features{
        gap:25px;
    }

    .feature-box h3{
        font-size:32px;
    }
}

/*====================================
MARKALAR
====================================*/

.brands-wrapper{

    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:70px;
    flex-wrap:wrap;
    margin-top:70px;

}

.brand-card{

    width:320px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.brand-card img{

    width:220px;
    height:auto;

    margin:auto;

    transition:.4s;

    display:block;

}

/* Hover */

.brand-card:hover img{

    transform:scale(1.08);

}

/* Açıklama */

.brand-info{

    width:100%;

    text-align:center;

    margin-top:20px;

    max-height:0;

    opacity:0;

    overflow:hidden;

    transition:.4s;

}

.brand-card:hover .brand-info{

    max-height:700px;

    opacity:1;

}
.brand-info h4{

    color:#9180df;

    font-size:22px;

    font-weight:800;

    margin-bottom:12px;

}

.brand-info p{

    color:#666;

    line-height:1.8;

    font-size:15px;

    margin:0;

}

.product-gallery.single{

     margin-top:25px;
    
    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

}

.product-gallery.single .package{

    width:100%;

    max-width:320px;

    margin:auto;

}

.product-gallery.single img{

    width:100%;

    height:340px;

    object-fit:contain;

}

