@font-face {
    font-family: "HandelGothic";
    src: url("../assets/fonts/HandelGothic-regular.woff2") format("woff2"),
        url("../assets/fonts/HandelGothic-regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* =========================================
   FONT İMPORT (GOOGLE FONTS)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* =========================================
   GENEL AYARLAR
   ========================================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* =========================================
   HERO SECTION (Slider Güncellemesi)
   ========================================= */
.hero {
    background-color: #1a4d2e;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* Arka plandaki karartma katmanı (Overlay) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Slider Kapsayıcısı */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Slaytlar */
.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}

/* =========================================
   SOL GÖSTERGELER (INDICATORS)
   ========================================= */
.slider-indicators {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indicator {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.indicator:hover {
    opacity: 1;
}

/* SVG Daire Ayarları */
.indicator svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.indicator circle {
    fill: none;
    stroke-width: 3;
    stroke: rgba(255, 255, 255, 0.3);
}

.indicator circle.progress {
    stroke: #fff;
    stroke-dasharray: 113;
    stroke-dashoffset: 113;
    transition: none;
}

.indicator.active {
    opacity: 1;
}

.indicator.active circle.progress {
    animation: countdown 5s linear forwards;
}

/* Animasyon Tanımı */
@keyframes countdown {
    from {
        stroke-dashoffset: 113;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .slider-indicators {
        left: 20px;
        gap: 15px;
    }

    .indicator {
        width: 18px;
        height: 18px;
    }
}

/* =========================================
   NAVBAR (HEADER)
   ========================================= */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
}

.navbar-custom.logo-visible {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

/* --- MENÜ LİNKLERİ --- */
.nav-menu {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    list-style: none;
    gap: 2rem;
    pointer-events: auto;
    z-index: 1002;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.navbar-custom.logo-visible .nav-menu a {
    color: #333;
    text-shadow: none;
}

.navbar-custom.logo-visible .nav-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* --- MOBİL MENÜ İKONLARI --- */
.mobile-toggle,
.close-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    pointer-events: auto;
    color: white;
}

.navbar-custom.logo-visible .mobile-toggle {
    color: #333;
}

/* =========================================
   LOGO ANIMASYONU
   ========================================= */
.logo {
    position: fixed;
    left: 50%;
    top: 40vh;
    transform: translate(-50%, -50%);
    z-index: 101;
    width: 600px;
    height: 600px;
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-custom.logo-visible .logo {
    top: 0;
    margin-top: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 100%;
    padding: 10px 0;
}

/* =========================================
   HERO İÇERİK
   ========================================= */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: 280px;
    transition: opacity 0.5s ease;
}

body.scrolled .hero-content {
    opacity: 0;
    pointer-events: none;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =========================================
   LEARN MORE BUTONU (Güncellenmiş: Parlak & Temiz Cam Efekti)
   ========================================= */
.learn-more-btn {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    padding: 14px 42px;
    border-radius: 99px;

    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));

    -webkit-backdrop-filter: blur(4px) saturate(200%);
    backdrop-filter: blur(8px) saturate(200%);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.45);
    border-left-color: rgba(255, 255, 255, 0.40);

    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover (Üzerine Gelme) Efekti - Daha da parlak */
.learn-more-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%) translateY(-4px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        inset 0 2px 2px rgba(255, 255, 255, 1);
}

/* Tıklama Efekti (Active) */
.learn-more-btn:active {
    transform: translateX(-50%) translateY(1px);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border-top-color: rgba(255, 255, 255, 0.6);
}

/* Scroll olunca gizle */
body.scrolled .learn-more-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* =========================================
   INTRO RESİM ANİMASYONU (Scroll Reveal)
   ========================================= */
.intro-zoom-effect {
    transform: scale(0.97);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
    will-change: transform, opacity;
}

/* Aktif Durumu: Tam boyut ve tam görünürlük */
.intro-zoom-effect.active {
    transform: scale(1.0);
    opacity: 1;
}

/* =========================================
   INTRODUCTION SECTION
   ========================================= */
.intro-full-page {
    min-height: auto;
    padding: 8rem 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .intro-full-page {
        padding: 5rem 0;
    }
}

/* Başlık Stilleri */
.intro-subtitle {
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 1rem;
}

.intro-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #000;

    position: relative;
    z-index: 5;
}

@media (max-width: 1200px) {
    .intro-title {
        font-size: 2.5rem;
    }
}

/* Modern Kart Yapısı */
.modern-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-full-height {
    min-height: 600px;
}

.card-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Metin Kartı */
.text-card {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 45%;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Keşfet Butonu */
.discover-btn {
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    align-self: flex-start;
}

.discover-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
}

/* Harita Kartı */
.map-card {
    position: relative;
    min-height: 600px;
}

.map-card iframe {
    border-radius: 24px;
}

/* Harita üzerinde buton */
.route-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(30, 142, 110, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.route-btn:hover {
    background: #176e56;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

/* =========================================
   RESPONSIVE (MOBİL) AYARLAR
   ========================================= */
@media (max-width: 991px) {
    .navbar-custom {
        padding: 0 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    /* Mobil Menü */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1a4d2e;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transform: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    /* Mobilde Logo Konumu */
    .logo {
        width: 180px;
        height: 180px;
        top: 35vh;
    }

    .navbar-custom.logo-visible .logo {
        width: 80px;
        transform: translateX(-50%);
    }

    /* Mobilde Buton Ayarı */
    .learn-more-btn {
        bottom: 5rem;
        padding: 12px 30px;
        font-size: 0.9rem;
        width: auto;
        max-width: 90%;
    }

    /* Hero Yazıları */
    .hero-content {
        margin-top: 200px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    /* Intro Bölümü */
    .intro-full-page {
        padding: 3rem 0;
    }

    .intro-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .intro-subtitle {
        text-align: center;
    }

    .card-full-height,
    .map-card {
        min-height: 350px;
    }

    .text-card {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .intro-title {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .card-full-height,
    .map-card {
        min-height: 300px;
    }
}

/* =========================================
   BOTTOM BAR (FOOTER) STYLES
   ========================================= */
.main-footer {
    background-color: #1d57a1;
    color: white;
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: 0.3s;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    font-size: 1.1rem;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .main-footer {
        padding: 3rem 0 1rem 0;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* =========================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================= */

/* İkon Kutuları (Adres, Tel vb. yanındaki yuvarlaklar) */
.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 77, 46, 0.1);
    /* LDR Yeşili opak */
    color: #1a4d2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Link geçiş efektleri */
.transition-link:hover {
    color: #1a4d2e !important;
    text-decoration: underline !important;
}

/* Sosyal Medya Butonları */
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Yaylanma efekti */
    border: 1px solid #eee;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-5px);
    /* Yukarı zıplama */
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Markalara özel renkler (Hover durumunda) */
.social-btn.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}


/* =========================================
   HAKKIMIZDA SAYFASI (ABOUT US)
   ========================================= */

/* --- Video / Intro Bölümü --- */
.about-hero-section {
    padding: 6rem 0;
    background-color: #fff;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* --- Intro Görseli --- */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
}

.about-image-container img.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover img.cover-img {
    transform: scale(1.05);
}

/* --- Değerlerimiz (Values) Bölümü --- */
.values-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.15);
    /* Yeşil gölge */
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 77, 46, 0.1);
    color: #1a4d2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #1a4d2e;
    color: white;
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Animasyonlar --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sertifikalar Carousel --- */
.certificates-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1a4d2e;
    margin: 15px auto 0;
}

.certificate-card {
    border: none;
    background: transparent;
    padding: 10px;
    transition: transform 0.3s;
}

/* =========================================
   SERTİFİKA KARTLARI
   ========================================= */

.certificate-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.certificate-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-backdrop.show {
    opacity: 0.85 !important;
}

/* --- Alt CTA (Call to Action) Bölümü --- */
.cta-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.cta-btn:hover {
    background: white;
    color: #1a4d2e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-section {
        height: 400px;
    }
}

/* =========================================
   HERO VIDEO AYARLARI
   ========================================= */
.hero-slider .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* =========================================
   SERTİFİKA ZOOM EFEKTLERİ
   ========================================= */
.certificate-img-wrapper img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-origin: center center;
}

.certificate-img-wrapper:hover img {
    transform: scale(1.15);
}

.certificate-img-wrapper:active img {
    transform: scale(1.15);
}

.certificate-img-wrapper {
    overflow: hidden;
}

/* =========================================
   GALERİ SAYFASI - ÜRÜN KARTLARI
   ========================================= */

.product-card-custom {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 270px;
    margin-left: 10px;
}

/* Sağdaki Gri Bilgi Kutusu */
.product-info-box {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 30px 30px 30px 220px;
    width: 100%;
    margin-left: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.product-img-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;

    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, transform 0.3s ease;

    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

.img-default {
    opacity: 1;
}

.img-hover {
    opacity: 0;
}

/* --- HOVER EFEKTLERİ --- */

.product-card-custom:hover .product-img-wrapper {
    /* transform: translateY(-50%) scale(1.1); */
}

.product-card-custom:hover .product-info-box {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1a4d2e;
}

/* .product-card-custom:hover .img-default { opacity: 0; }
.product-card-custom:hover .img-hover   { opacity: 1; } */

.product-title {
    color: #1a4d2e;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .product-card-custom {
        margin-left: 0;
    }

    .product-img-wrapper {
        width: 150px;
        height: 150px;
        left: -10px;
    }

    .product-info-box {
        margin-left: 20px;
        padding: 25px 25px 25px 140px;
    }

    .product-title {
        font-size: 1.1rem;
    }
}

/* =========================================
   ÜRÜNLER SLAYT BUTONU
   ========================================= */
.product-btn-full {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;

    padding: 14px;

    background: rgba(30, 142, 110, 0.95);
    backdrop-filter: blur(6px);

    color: white;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 1rem;

    border-radius: 50px;

    z-index: 20;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-btn-full:hover {
    background: #176e56;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* =========================================
   DİL DEĞİŞTİRME BAYRAKLARI
   ========================================= */
.language-flag {
    position: fixed;
    top: 35px;
    left: 40px;
    z-index: 1100;
    display: block;
    width: 40px;
    height: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.language-flag:hover {
    transform: scale(1.15);
}

/* MOBİL CİHAZLAR İÇİN AYAR */
@media (max-width: 991px) {
    .language-flag {
        left: 70px;
        top: 35px;
        width: 32px;
    }
}

/* =========================================
   SLOGAN BÖLÜMÜ (ARA BÖLÜM)
   ========================================= */
.slogan-section {
    min-height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.company-slogan {
    font-family: "Montserrat", sans-serif;
    font-style: normal;

    font-size: clamp(1.1rem, 3.5vw, 3.5rem);

    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin-bottom: 1.5rem;
}

.company-slogan .highlight {
    color: #1a4d2e;
    font-style: italic;
}

.slogan-divider {
    width: 100px;
    height: 5px;
    background-color: #1a4d2e;
    margin: 0 auto;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.slogan-section:hover .slogan-divider {
    width: 200px;
}