/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #f5f5f5;
    font-size: 13px;
    padding: 6px 0;
}

.top-bar i {
    margin-right: 5px;
}

/* ================= NAVBAR ================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow .3s, padding .3s;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.navbar-main {
    display: flex;
    align-items: center;
    padding: 14px 0;
}

.logo {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 22px;
}

.nav-links {
    display: flex;
    gap: 22px;
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #b88a00;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu-custom a {
    display: block;
    padding: 8px 18px;
    color: #222;
}

.dropdown-menu-custom a:hover {
    background: #f7f7f7;
}

/* Right menu */
.nav-right {
    margin-left: auto;
    display: flex;
    gap: 18px;
}

/* ================= CAROUSEL ================= */
.hero {
    position: relative;
    height: calc(100vh - 96px);
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption */
.caption {
    position: absolute;
    top: 35%;
    left: 8%;
    color: #fff;
    max-width: 520px;
}

.caption h1 {
    font-size: 52px;
    font-weight: 800;
}

.caption p {
    font-size: 20px;
    margin: 15px 0 25px;
}

.caption a {
    background: #f2b705;
    color: #000;
    padding: 12px 26px;
    font-weight: 600;
    text-decoration: none;
}

/* Controls */
.controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.controls span {
    pointer-events: all;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
    padding: 20px;
}

/* ================= WHATSAPP ================= */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
}

@media (max-width: 768px) {
    .whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 10px 14px;
        font-size: 14px;
        gap: 6px;
    }

    .whatsapp i {
        font-size: 16px;
    }
}


.whatsapp:hover {
    background: #1ebe5b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .caption h1 {
        font-size: 36px;
    }
}

/* ===== ALT ORTA CAROUSEL CONTROLLER ===== */
.carousel-controls-bottom {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.ctrl-btn {
    width: 54px;
    height: 42px;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    cursor: pointer;
    position: relative;
}

.ctrl-btn:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* OK ŞEKLİ */
.ctrl-btn .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    transform-origin: center;
}

/* SOL OK */
.ctrl-btn .left {
    transform: translate(-35%, -50%) rotate(-135deg);
}

/* SAĞ OK */
.ctrl-btn .right {
    transform: translate(-65%, -50%) rotate(45deg);
}

/* MOBİL */
@media (max-width: 768px) {
    .ctrl-btn {
        width: 46px;
        height: 38px;
    }
}

.cert-icon {
    font-size: 14px;
    /* KÜÇÜK */
    color: #c9a227;
    /* soft bal altını */
    opacity: 0.75;
    margin-right: 4px;
    background: linear-gradient(135deg,
            #FFF2B2,
            #FFD700,
            #E6B800);
    padding: 10px 13px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;

}

.cert-icon:hover {
    opacity: 1;
    color: #b88a00;
}

/* HERO METNİ TAM ORTA */
.caption.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 720px;
    color: #ffffff;
}

.caption.center h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.caption.center p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* BUTON */
.video-btn {
    background: linear-gradient(135deg, #f2b705, #b4c6db);
    color: #000;
    border: none;
    padding: 15px 38px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    letter-spacing: 0.5px;
    animation: pulseGlow 2.5s infinite;
    box-shadow: 0 0 0 rgba(242, 183, 5, 0.6);
}

/* hover'da yanıp sönme dursun, premium his */
.video-btn:hover {
    animation: none;
    background: linear-gradient(135deg, #e0a800, #f2b705);
    box-shadow: 0 8px 20px rgba(242, 183, 5, 0.45);
}

/* YUMUŞAK PULSE EFEKTİ */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 183, 5, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(242, 183, 5, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 183, 5, 0);
    }
}


/* VIDEO MODAL */
/* ORTALI CAPTION */
.caption.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
}

/* BUTON */
/* ORTALANMIŞ CAPTION */
.caption.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
}

/* BUTON */
.video-btn {
    background: linear-gradient(45deg, #38daf7, #f5b906);
    color: #000;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    animation: pulse 1.8s infinite;
}

/* BUTON ANİMASYON */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 183, 5, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(242, 183, 5, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 183, 5, 0);
    }
}

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.video-modal iframe {
    width: 80%;
    height: 80%;
    max-width: 1100px;
}

/* KAPAT */
.video-modal .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}




/* ===== AWARD SLIDE ===== */

.caption.award {
    background: rgba(0, 0, 0, 0.15);
    padding: 10px 18px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    display: inline-block;

}

.award-badge {
    display: inline-block;
    background: #f2b705;
    color: #000;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    margin-bottom: 2px;
}

.caption.award h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0px 0;
    color: #fff;
}

.award-title {
    font-size: 25px;
    font-weight: 700;
    color: #f2b705;
    margin: 0px 0 0px;
}

.award-img {
    max-width: 235px;     
    width: 100%;
    height: auto;
    margin: 4px auto;
    display: block;
}


/* .award-desc {
    font-size: 18px;
    color: #eee;
    line-height: 1.3;
} */


/* MOBİL */
@media (max-width: 768px) {
    .caption.award {
        padding: 8px;
    }

    .caption.award h1 {
        font-size: 28px;
    }

    .award-title {
        font-size: 20px;
    }

    .award-img{
        max-width: 180px;
    }
    /* .award-desc {
        font-size: 16px;
    } */
}

/* ===== AWARD BUTON ===== */

.award-btn {
    display: inline-block;
    margin-top: 2px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #f2b705, #ffd75e);
    box-shadow:
        0 8px 25px rgba(242, 183, 5, 0.45),
        inset 0 0 0 2px rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.award-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(242, 183, 5, 0.65);
}

/* IŞIK GEÇİŞİ */
.award-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(25deg);
    transition: .6s;
}

.award-btn:hover::after {
    left: 130%;
}

/* MOBİL */
@media (max-width: 768px) {
    .award-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}



footer .social-icons {
  display: flex;
  margin-left: 0;
  gap: 16px;
  margin-top: 20px;
}

footer .social-icons a {
  font-size: 24px;      /* boyut */
  color: #333;
  transition: all 0.3s ease;
}

.links-group {
  margin-left: 80px;               

}

footer .links-group ul li a {
  font-size: 13px;
  line-height: 0.1;
}

footer .links-group h4 {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 14px;
  font-size: 16px;
}

.links-group h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;      /* 🔧 ÇİZGİ UZUNLUĞU */
  height: 1px;      /* ince çizgi */
  background: #000; /* siyah */
}


@media (max-width: 768px) {
  footer .links-group ul li a {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .social-icons {
    display: flex;
    justify-content: flex-start; /* yazılarla aynı */
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    margin-left: 0;
    padding-left: 0;
    justify-content: flex-start;
  }

    footer .links-group {
    margin-left: 0;
  }
}


.about {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    padding-top: 90px;
}

.bg_about {
    background: url(images/bg_about.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0;
}

.about .titlepage {
    padding-bottom: 0;
}

.about .titlepage h2 {
    margin-bottom: 35px;
    color: #010100;
}

.about .titlepage p {
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    color: #000000;
    padding-bottom: 50px;
}

.about .titlepage .read_more {
    text-transform: uppercase;
    font-weight: normal;
}

.about_img figure {
    margin: 0;
}

.about_img figure img {
    border-radius: 300%;
    border: #f6dc67ab solid 35px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.products-section {
    background: #fff7e6;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #b88a00;
    margin-bottom: 40px;
}

.product-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-card {
    flex: 1 1 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 12px;
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-card h5 {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.products-more {
    margin-top: 30px;
}

/* Siyah hover buton */
.btn-black {
    display: inline-block;
    padding: 14px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.ctrl-btn {
    padding: 12px 20px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.ctrl-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .product-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-card {
        flex: 1 1 100%;
    }
}

/* HAMBURGER */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin-left: auto;
  color: #333;
}

/* MOBİL DAVRANIŞ */
@media (max-width: 992px) {

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);

    display: none; /* 🔴 SADECE MOBİLDE GİZLİ */
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu-custom {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
}

@media (max-width: 992px) {

  /* HOVER'I MOBİLDE TAMAMEN DEVRE DIŞI BIRAK */
  .dropdown:hover .dropdown-menu-custom {
    display: block; /* hover kuralını sabitle */
  }

  /* ALT MENÜ HER ZAMAN AÇIK */
  .dropdown-menu-custom {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    padding-left: 16px;
    margin-top: 6px;
  }

  /* ÜRÜNLER BAŞLIĞI SADECE YAZI OLSUN */
  .dropdown > a {
    pointer-events: none;
    font-weight: 600;
    opacity: 0.85;
  }
}


