/* ==========================================================================
   FÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°ZYOMED PREMIUM CUSTOM STYLES
   ========================================================================== */

/* Global DÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼zenlemeler */
body {
    font-family: var(--font-base) !important;
    color: var(--color-text) !important;
    background-color: #ffffff;
}

/* Hizalama ve BoÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸luklar (Header ve Slider HizalamasÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±) */
.container-fluid.maxWidth {
    max-width: 1690px;
    width: 100%;
    padding-left: 30px !important;
    padding-right: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.detail-page .container-fluid.maxWidth {
    max-width: 1440px;
}

/* Header & MenÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“zelleÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸tirmeleri */
.site-header {
    padding: 25px 0 !important;
    position: absolute !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1000 !important;
    border-bottom: none !important;
    transition: padding 0.3s ease, background-color 0.3s ease !important;
}

.site-header.stick-fixed {
    position: fixed !important;
    padding: 12px 0 !important;
    background-color: var(--color-primary);
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.site-header.stick-fixed .header-logo img {
    max-height: 42px !important;
}

.header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.header-nav {
    flex: 1 !important;
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
}

.nav-list {
    gap: 32px !important;
}

.nav-list .nav-link {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    color: rgba(255, 255, 255, 1) !important;
    text-transform: uppercase !important;
    padding: 8px 0 !important;
    transition: color 0.3s ease !important;
    position: relative !important;
}

.nav-list .nav-link:hover {
    color: #ffffff !important;
}

.nav-list .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background-color: #ff9000 !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.nav-list .nav-link:hover::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

/* ==========================================================================
   MEGA MENU STÃ„Â°LLERÃ„Â°
   ========================================================================== */
.nav-item.has-mega-menu {
    position: static;
}

.mega-menu-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: calc(100% - 60px);
    max-width: 1690px;
    top: calc(100% + 8px);
    background-color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    padding: 50px 45px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    overflow: visible;
}

.nav-item.has-mega-menu:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hover KÃ¶prÃ¼sÃ¼ (BoÅŸlukta Kapanma Bug'Ä± Ä°Ã§in) */
.mega-menu-container::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.mega-menu-column {
    padding: 0 25px;
}

.mega-menu-group {
    margin-bottom: 35px;
}

.mega-menu-group-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-group-title a {
    color: #ff9000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mega-menu-group-title a:hover {
    opacity: 0.85;
}

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-links li {
    padding: 0;
    margin: 0;
}

.mega-menu-links a {
    font-size: 16px;
    font-weight: 400;
    color: #585858;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.mega-menu-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Dil SeÃƒÂ§ici (EN/TR) */
.lang-toggle {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    border: 0 !important;
    padding: 8px 0 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: color 0.3s ease !important;
    position: relative !important;
}

.lang-toggle:hover {
    color: #ffffff !important;
}

.lang-toggle::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background-color: var(--color-primary) !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.lang-toggle:hover::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

.lang-dropdown {
    top: calc(100% + 15px) !important;
}

/* HERO SLIDER VE YAZILAR */
.hero {
    position: relative !important;
    height: var(--slide-height);
    overflow: hidden !important;
}

.slider-slogan {
    font-size: 42px;
    font-weight: 500;
    text-transform: uppercase;
}

.slider-heading {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25 !important;
    color: #ffffff !important;
}

.slider-desc {
    font-size: 24px !important;
    max-width: 700px !important;
    line-height: 1.4 !important;
    margin-bottom: 35px !important;
    font-weight: 400 !important;
}

/* Bizimle ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°letiÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸ime GeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in Butonu */
.btn-slider-contact {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 12px 30px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    white-space: nowrap !important;
}

.btn-slider-contact:hover {
    background-color: #ffffff !important;
    color: #122152 !important;
    border-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) !important;
}

.btn-contact-arrow-img {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    object-fit: contain !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
    filter: brightness(0) invert(1) !important;
}

.btn-slider-contact:hover .btn-contact-arrow-img {
    transform: translate(3px, -3px) !important;
    filter: brightness(0) !important;
}

/* Slider Alt YÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶n Kontrolleri (ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ift Daire Buton) */
.slide-controls-bottom {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 15px;
}

.slide-controls-bottom button {
    position: relative;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.slide-controls-bottom button img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.slide-controls-bottom button:hover {
    /* background-color: #ffffff; */
    /* transform: scale(1.05); */
}

.slide-controls-bottom button:hover img {
    /* transform: scale(1.3); */
    /* filter: invert(1); */
}

@media (max-width: 767px) {
    .slide-content {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .slide-content {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .slider-slogan {
        font-size: 18px;
    }

    .slider-heading {
        font-size: 32px;
    }

    .slider-btn-wrap,
    .slider-desc {
        display: none;
    }
}

/* Seksiyon Ortak BaÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±klarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± */
.section-title {
    font-family: var(--font-base);
    font-size: 30px;
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
}

.section-desc {
    font-family: var(--font-base);
    font-size: 18px;
    color: var(--color-text);
    max-width: 1170px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-eyebrow {
    font-size: 30px;
    font-weight: 500;
    color: #ff9000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* 1. Kurumsal Seksiyon (DalgalÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± Background GÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶rseli) */
.section-kurumsal {
    padding: 160px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    font-size: 19px;
}

/* Force all text in Kurumsal to be white */
.section-kurumsal,
.section-kurumsal p,
.section-kurumsal h2,
.section-kurumsal span,
.section-kurumsal div {
    color: #ffffff !important;
}

.section-kurumsal .section-eyebrow {
    letter-spacing: 1px;
}

.section-kurumsal .section-text {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.section-kurumsal .btn-slider-contact {
    display: inline-flex;
    margin: 35px auto 0;
}

/* 2. ÃƒÆ’Ã†â€™Ãƒâ€¦Ã¢â‚¬Å“rÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nlerimiz Seksiyonu (Kategori KartlarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±) */
.section-urunlerimiz {
    padding: 100px 0;
    background-color: #f8fafc;
}

.products-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.products-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.products-carousel-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-carousel-nav.prev {
    left: 0;
}

.products-carousel-nav.next {
    right: 0;
}

.products-carousel-nav:hover {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.05);
}

.urun-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.urun-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.urun-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.urun-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.4s ease;
}

.urun-card:hover .urun-card__image {
    opacity: 0.65;
    /* Biraz renk soldurma hover efekti */
}

.urun-card__up-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 24px !important;
    height: 24px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.urun-card:hover .urun-card__up-arrow {
    transform: translate(3px, -3px);
}

.urun-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 2;
}

.urun-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* 3. MarkalarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±mÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±z Seksiyonu */
.section-markalarimiz {
    padding: 100px 0;
    background-color: #ffffff;
}

.brands-carousel .owl-stage-outer {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -15px;
    margin-bottom: -15px;
}

.marka-logo-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 25px 15px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.marka-logo-card img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.marka-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(45, 128, 144, 0.45);
}

.marka-logo-card:hover img {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* 4. DetaylÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± Bilgi Al (CTA) Seksiyonu */
.section-bilgi-al {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-card {
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(18, 33, 82, 0.15);
    z-index: 0;
}

.cta-card>.row {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 18px;
    margin: 0 auto 0px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-card .btn-slider-contact {
    display: inline-flex;
    margin-top: 30px;
}

/* 5. ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ne ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±kan ÃƒÆ’Ã†â€™Ãƒâ€¦Ã¢â‚¬Å“rÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nler */
.section-one-cikan-urunler {
    padding: 100px 0;
    background-color: #ffffff;
}

.featured-product-card {
    position: relative;
    height: 540px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background-color: #f1f5f9;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-product-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}

.product-card-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-product-card:hover .product-card-img-wrap img {
    transform: scale(1.1) rotate(0.5deg);
}

.product-card-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(27, 65, 72, 0.9);
    /* #1b4148 Rengi */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transform: scale(1.08);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-product-card:hover .product-card-hover-overlay {
    opacity: 1;
    transform: scale(1);
}

.product-card-hover-overlay .btn-slider-contact {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.featured-product-card:hover .product-card-hover-overlay .btn-slider-contact {
    opacity: 1;
    transform: translateY(0);
}

/* Floating White Bar at Bottom */
.product-card-info-bar {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.product-card-text {
    flex: 1;
    min-width: 0;
    padding-right: 10px;
}

.product-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    /* #2d8090 */
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-sub {
    font-size: 11px;
    font-weight: 600;
    color: #575757;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-card-brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.product-card-brand-logo img {
    max-height: 28px;
    max-width: 85px;
    width: auto;
    object-fit: contain;
}

/* 6. Fuarlar ve Etkinlikler */
.section-fuarlar {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.fuar-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fuar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(45, 128, 144, 0.08);
}

.fuar-card__image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.fuar-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fuar-card:hover .fuar-card__image img {
    transform: scale(1.05);
}

.fuar-card__body {
    padding: 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fuar-card__title {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #585858 !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
    position: relative;
    padding-bottom: 20px;
}

/* Double bottom border: full-width light gray and accent orange on left */
.fuar-card__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
}

.fuar-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #ff9000;
    z-index: 1;
}

.fuar-card__text {
    font-size: 14px !important;
    color: var(--color-text) !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    opacity: 0.9;
}

.fuar-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px !important;
    border-radius: 14px !important;
    border: 1px solid var(--color-primary) !important;
    background-color: transparent !important;
    color: var(--color-primary) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    width: fit-content;
}

.fuar-card__link:hover {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
}

.fuar-link-arrow-img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: invert(36%) sepia(87%) saturate(373%) hue-rotate(143deg) brightness(91%) contrast(92%);
}

.fuar-card__link:hover .fuar-link-arrow-img {
    transform: translate(3px, -3px);
    filter: brightness(0) invert(1) !important;
}

/* ==========================================================================
   FOOTER PREMIUM TASARIMI
   ========================================================================== */
.section-footer-wrapper {
    padding: 60px 0 40px;
    background-color: #f7f7f7;
}

.footer-card {
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #ffffff;
}

.footer-card-header {
    margin-bottom: 25px;
}

.footer-office-tabs {
    gap: 30px;
}

.footer-office-tab {
    background: transparent;
    border: none;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.footer-office-tab:hover,
.footer-office-tab.active {
    color: #ffffff;
}

.footer-office-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-office-tab.active::after {
    transform: scaleX(1);
}

.footer-office-socials {
    display: flex;
}

.footer-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.footer-social-list a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social-list a:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin: 0 0 35px 0;
}

/* Office content switcher */
.footer-office-pane {
    display: none;
}

.footer-office-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.footer-info-col {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-info-col.border-none {
    border-right: none !important;
}

.footer-info-title {
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-info-text {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.footer-info-text a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-info-text a:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

/* Footer Bottom Credits */
.footer-card-bottom-bar {
    padding: 30px 10px 0;
    color: #888888;
    font-size: 13px;
    font-weight: 400;
}

.footer-copyright-text {
    opacity: 0.95;
}

.footer-links-center {
    gap: 30px;
}

.footer-links-center a {
    color: #888888 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-center a:hover {
    color: var(--color-primary) !important;
}

.footer-agency-logo a {
    color: #888888 !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-agency-logo a:hover {
    color: var(--color-primary) !important;
}

/* Fade in animation keyframe */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive DÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼zenlemeler */
@media (max-width: 991px) {
    .section-title {
        font-size: 30px !important;
    }

    .section-kurumsal {
        padding: 100px 0;
    }

    .footer-info-col {
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-card-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links-center {
        justify-content: center;
    }
}

/* ==========================================================================
   YENÃ„Â° KURUMSAL / HAKKIMIZDA TASARIMI
   ========================================================================== */
.kurumsal-hakkimizda-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    /* Mutlak konumlu ÃƒÂ§emberler iÃƒÂ§in referans */
}

/* Ãƒâ€¡ember Resimlerin Mutlak KonumlandÃ„Â±rÃ„Â±lmasÃ„Â± (Ekran KenarlarÃ„Â±nda) */
.hakkimizda-circle-absolute {
    position: absolute;
    z-index: 5;
}

/* Sol resim: daha aÃ…Å¸aÃ„Å¸Ã„Â±da ve soldan taÃ…Å¸malÃ„Â± */
.left-circle-abs {
    left: -120px;
    top: 38%;
}

/* SaÃ„Å¸ resim: daha yukarÃ„Â±da ve saÃ„Å¸dan taÃ…Å¸malÃ„Â± */
.right-circle-abs {
    right: -120px;
    top: 8%;
}

.hakkimizda-circle-img-wrap {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hakkimizda-circle-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 440px;
    height: 440px;
    border: 1px solid #ff9000;
    border-radius: 50%;
    z-index: 1;
}

/* DÃƒÂ¶nen Nokta TaÃ…Å¸Ã„Â±yÃ„Â±cÃ„Â±sÃ„Â± */
.hakkimizda-circle-dot-rotate-wrap {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    animation: rotate-dot-animation 24s linear infinite;
}

/* Sol Ãƒâ€¡ember NoktasÃ„Â± (Alt BaÃ…Å¸langÃ„Â±ÃƒÂ§lÃ„Â±) */
.left-dot-rotate .hakkimizda-circle-dot {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

/* SaÃ„Å¸ Ãƒâ€¡ember NoktasÃ„Â± (ÃƒÅ“st BaÃ…Å¸langÃ„Â±ÃƒÂ§lÃ„Â±) */
.right-dot-rotate .hakkimizda-circle-dot {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hakkimizda-circle-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff9000;
    border-radius: 50%;
}

.hakkimizda-circle-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s ease;
}

/* Hover durumunda ÃƒÂ§ember resmi hafif bÃƒÂ¼yÃƒÂ¼me */
.hakkimizda-circle-img-wrap:hover .hakkimizda-circle-img {
    transform: scale(1.04);
}

/* NoktayÃ„Â± ÃƒÂ§ember ÃƒÂ¼zerinde dÃƒÂ¶ndÃƒÂ¼ren animasyon */
@keyframes rotate-dot-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orta Tipografi ve Ã„Â°ÃƒÂ§erik (Global SÃ„Â±nÃ„Â±f OverridelarÃ„Â±, !important kullanÃ„Â±lmadan) */
.kurumsal-hakkimizda-section .section-eyebrow {
    color: #ff9000;
    text-align: center;
    margin-bottom: 15px;
}

.kurumsal-hakkimizda-section .section-title {
    font-size: 32px;
    color: #2e2e2e;
    line-height: 1.35;
    margin-bottom: 30px;
    text-align: center;
}

.kurumsal-content-wrap p {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    margin-bottom: 25px;
    text-align: center;
}

/* Vizyon & Misyon BloklarÃ„Â± */
.hakkimizda-mv-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mv-block {
    text-align: center;
}

.mv-block strong {
    font-size: 21px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
    text-transform: capitalize;
}

/* Full Width Video Popup BÃƒÂ¶lÃƒÂ¼mÃƒÂ¼ (2. Blok) */
.section-hakkimizda-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

.hakkimizda-video-link {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
}

.hakkimizda-video-bg {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hakkimizda-video-link:hover .hakkimizda-video-bg {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 33, 82, 0.35);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.hakkimizda-video-link:hover .video-overlay {
    background-color: rgba(18, 33, 82, 0.45);
}

.video-play-btn-wrap {
    position: relative;
    z-index: 10;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse-white-btn 2s infinite;
    padding-left: 6px;
    /* Play ÃƒÂ¼ÃƒÂ§geninin optik olarak tam merkezde durmasÃ„Â± iÃƒÂ§in */
}

.hakkimizda-video-link:hover .video-play-btn {
    background-color: #ffffff;
    color: var(--color-primary);
    transform: scale(1.08);
}

@keyframes pulse-white-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobil Uyumlar */
@media (max-width: 991px) {
    .kurumsal-hakkimizda-section {
        padding: 60px 0;
    }

    .hakkimizda-title {
        font-size: 26px !important;
    }

    .hakkimizda-video-bg {
        height: 380px;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }
}

/* ==========================================================================
   DÃœZENLÄ° (STANDART) DROPDOWN MENÃœ TASARIMI
   ========================================================================== */
.site-header .nav-dropdown {
    top: calc(100% + 12px);
    border-radius: 16px;
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) translateY(15px);
    transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.35s;
    overflow: visible;
}

.site-header .has-dropdown:hover .nav-dropdown {
    transform: translateX(-50%) translateY(0);
}

/* Hover KÃ¶prÃ¼sÃ¼ (BoÅŸlukta Kapanma Bug'Ä± Ä°Ã§in) */
.site-header .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.site-header .nav-dropdown li {
    margin-bottom: 2px;
}

.site-header .nav-dropdown li:last-child {
    margin-bottom: 0;
}

.site-header .nav-dropdown li a {
    border-left: none;
    border-radius: 8px;
    color: #585858;
    padding: 12px 20px;
    transition: all 0.25s ease;
}

.site-header .nav-dropdown li a:hover {
    border-left-color: transparent;
    background-color: rgba(255, 144, 0, 0.06);
    color: #ff9000;
    padding-left: 24px;
}

/* ==========================================================================
   KURUMSAL KALÄ°TE Ä°LKELERÄ° (WIDGETS) TASARIMI
   ========================================================================== */
.section-kurumsal-widgets {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.kurumsal-widget-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.kurumsal-widget-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(255, 144, 0, 0.08);
    border-color: rgba(255, 144, 0, 0.2);
}

.widget-card-icon-row {
    width: 100%;
}

.widget-card-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-card-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.widget-card-title {
    font-size: 21px;
    font-weight: 800;
    color: #585858;
    margin: 0 0 20px 0;
    line-height: 1.4;
    position: relative;
    padding-bottom: 20px;
}

/* Double bottom border: same as fuar-card__title */
.widget-card-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
}

.widget-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #ff9000;
    z-index: 1;
}

.widget-card-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #585858;
    margin: 0;
    flex-grow: 1;
}

/* ==========================================================================
   BELGELERÄ°MÄ°Z (CERTIFICATES) DETAY TASARIMI
   ========================================================================== */
.section-belgelerimiz {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.belge-card-link {
    text-decoration: none;
    display: block;
}

.belge-card-link:hover {
    text-decoration: none;
}

.belge-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.belge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 144, 0, 0.15);
}

.belge-card__image-wrap {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: #ffffff;
}

.belge-card__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.belge-card__title {
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.belge-card:hover .belge-card__title {
    color: #ff9000;
}

/* ==========================================================================
   MARKALARIMIZ (BRANDS) DETAY LÄ°STE TASARIMI
   ========================================================================== */
.section-markalar-page {
    padding: 100px 0;
    background-color: #ffffff;
}

.markalar-intro-text {
    margin: 0 auto 65px;
}

.markalar-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #585858;
    margin-bottom: 25px;
    text-align: center;
}

.markalar-intro-text p:last-child {
    margin-bottom: 0;
}

.markalar-cards-row {
    margin-top: 20px;
}

.marka-detail-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    display: flex;
    gap: 50px;
    height: 100%;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marka-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(255, 144, 0, 0.08);
    border-color: rgba(255, 144, 0, 0.2);
}

.marka-detail-card__logo-wrap {
    flex-shrink: 0;
}

.marka-detail-card__logo-box {
    width: 190px;
    height: 190px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #ffffff;
}

.marka-detail-card__logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.marka-detail-card__info {
    flex: 1;
    min-width: 0;
}

.marka-detail-card__title {
    font-size: 21px;
    font-weight: 800;
    color: #585858;
    margin: 0 0 15px 0;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

/* Double bottom border: same as fuar-card__title */
.marka-detail-card__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
}

.marka-detail-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #ff9000;
    z-index: 1;
}

.marka-detail-card__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #585858;
    margin: 0;
}

/* Marka Detay KartÄ± Mobil Uyumu */
@media (max-width: 767px) {
    .marka-detail-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .marka-detail-card__logo-box {
        margin: 0 auto;
    }

    .marka-detail-card__title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .marka-detail-card__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   FUAR DETAY GÖRSEL CAROUSEL TASARIMI
   ========================================================================== */
.fuar-detail-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 45px;
    width: 100%;
}

.product-gallery-image-wrapper {
    width: 100%;
    height: 580px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #f7f7f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.fuar-detail-carousel .product-gallery-image-wrapper {
    height: auto !important;
}

.product-gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-carousel-item:hover .product-gallery-image-wrapper img {
    transform: scale(1.02);
}

/* Slayt Yön Kontrolleri (Borderless Transparent) */
.fuar-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fuar-carousel-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fuar-carousel-nav.prev {
    left: 0;
}

.fuar-carousel-nav.next {
    right: 0;
}

.fuar-carousel-nav:hover {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.05);
}

/* Mobil / Tablet Uyumluluk */
@media (max-width: 991px) {
    .fuar-detail-carousel-wrapper {
        padding: 0;
    }

    .product-gallery-image-wrapper {
        height: 380px;
    }

    .fuar-carousel-nav {
        width: 36px;
        height: 36px;
    }

    .fuar-carousel-nav.prev {
        left: 10px;
    }

    .fuar-carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .product-gallery-image-wrapper {
        height: 260px;
    }
}

/* ==========================================================================
   İLETİŞİM SAYFASI TASARIMI & TABS MODÜLÜ
   ========================================================================== */
.section-iletisim-top {
    padding: 80px 0 40px;
    background-color: #ffffff;
}

.iletisim-top-title {
    font-size: 26px;
    font-weight: 700;
    color: #2e2e2e;
    margin: 0;
    line-height: 1.45;
}

.iletisim-top-desc p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #585858;
    margin-bottom: 20px;
}

.iletisim-top-desc p:last-child {
    margin-bottom: 0;
}

.section-iletisim-tabs {
    padding-bottom: 80px;
    background-color: #ffffff;
}

.auto-tabs-nav,
.contact-tabs-nav {
    gap: 15px;
    border-bottom: none;
}

.auto-tabs-nav .nav-link,
.contact-tabs-nav .nav-link {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-transform: none;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Disable theme's global underline on contact nav links */
.auto-tabs-nav .nav-link::after,
.contact-tabs-nav .nav-link::after {
    display: none !important;
}

.auto-tabs-nav .nav-link:hover,
.contact-tabs-nav .nav-link:hover {
    color: #ff9000 !important;
    /* Override theme's important hover color */
    border-color: #ff9000;
}

.auto-tabs-nav .nav-link.active,
.contact-tabs-nav .nav-link.active {
    background-color: #ff9000;
    border-color: #ff9000;
    color: #ffffff !important;
    /* Override theme's important active color */
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.15);
}

.contact-tabs-content {
    margin-top: 45px;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block__title {
    font-size: 16px;
    font-weight: 700;
    color: #2e2e2e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 10px 0;
}

.contact-info-block__text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #585858;
    margin: 0;
}

.contact-info-block__text a {
    color: #585858;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info-block__text a:hover {
    color: #ff9000;
    text-decoration: underline;
}

.contact-info-map-wrap {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.contact-info-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* İletişim Mobil Uyumluluğu */
@media (max-width: 991px) {
    .contact-info-map-wrap {
        height: 350px;
        margin-top: 25px;
    }

    .iletisim-top-title {
        font-size: 22px;
    }

    .contact-tabs-nav .nav-link {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .contact-info-map-wrap {
        height: 280px;
    }
}

/* ==========================================================================
   PREMİUM İLETİŞİM FORMU TASARIMI
   ========================================================================== */
.section-iletisim-form {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.contact-form-card__title {
    font-size: 26px;
    font-weight: 800;
    color: #2e2e2e;
    margin: 0;
    line-height: 1.3;
}

.premium-contact-form .premium-input {
    height: 55px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background-color: #f8fafc;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: none !important;
}

.premium-contact-form .premium-input:focus {
    background-color: #ffffff;
    border-color: #2d8090;
    /* Site Teması Koyu Turkuaz */
    box-shadow: 0 0 0 4px rgba(45, 128, 144, 0.1) !important;
    outline: none;
}

.premium-contact-form .premium-input::placeholder {
    color: #9ca3af;
}

.premium-contact-form textarea.premium-input {
    height: auto;
    min-height: 140px;
    padding-top: 15px;
    resize: none;
}

.premium-check {
    padding-left: 0;
}

.premium-check .teklif-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #d1d5db;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #2d8090;
    flex-shrink: 0;
}

.premium-check .teklif-kvkk-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
}

.premium-check .teklif-kvkk-text a {
    color: #2d8090;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.premium-check .teklif-kvkk-text a:hover {
    color: #ff9000;
    text-decoration: underline;
}

.btn-submit-premium {
    background-color: #2d8090;
    /* Site Koyu Turkuaz */
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 128, 144, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-submit-premium:hover {
    background-color: #ff9000;
    /* Hoverda Kurumsal Turuncu */
    box-shadow: 0 6px 20px rgba(255, 144, 0, 0.25);
    transform: translateY(-2px);
}

.btn-submit-arrow {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover .btn-submit-arrow {
    transform: translateX(4px);
}

/* Mobil Tasarım İyileştirmesi */
@media (max-width: 767px) {
    .contact-form-card {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .contact-form-card__title {
        font-size: 21px;
    }

    .btn-submit-premium {
        width: 100%;
        padding: 15px 30px;
    }
}

/* ==========================================================================
   KATEGORİ (PRODUCTS LIST INDEX) DETAY SAYFASI TASARIMI
   ========================================================================== */
.section-category-header {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.category-header-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #585858;
}

.section-category-grid {
    padding-bottom: 80px;
    background-color: #ffffff;
}

.section-category-bottom {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.category-bottom-content {
    font-size: 16.5px;
    line-height: 1.8;
    color: #585858;
}

.category-bottom-content p {
    margin-bottom: 25px;
}

.category-bottom-content p:last-child {
    margin-bottom: 0;
}

.category-bottom-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #2e2e2e;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

/* Responsive Kategori Düzenlemeleri */
@media (max-width: 991px) {
    .category-header-desc {
        font-size: 16px;
    }

    .category-bottom-content h3 {
        font-size: 22px;
    }
}

/* ==========================================================================
   ÜRÜN DETAY FULL-SCREEN HERO SECTION TASARIMI
   ========================================================================== */
.product-hero-section {
    height: 100vh;
    min-height: 750px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.85) 30%, rgba(10, 25, 47, 0.5) 65%, rgba(10, 25, 47, 0.2) 100%);
    z-index: 1;
}

.product-hero-section .container-fluid {
    z-index: 2;
}

.product-brand-logo .brand-logo-img {
    max-height: 55px;
    display: block;
}

.product-brand-text {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.product-hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.8;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-hero-title {
    font-size: 58px;
    font-weight: 850;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

.product-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 520px;
    font-weight: 400;
}

.product-hero-actions .btn-hero-primary {
    background-color: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-hero-actions .btn-hero-primary:hover {
    background-color: #ff9000 !important;
    color: #fff !important;
    border-color: #ff9000 !important;
    transform: translateY(-2px);
}

.product-hero-actions .btn-hero-secondary {
    background-color: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-hero-actions .btn-hero-secondary:hover {
    background-color: #ff9000 !important;
    color: #fff !important;
    border-color: #ff9000 !important;
    transform: translateY(-2px);
}

.product-hero-actions .action-icon {
    font-size: 16px;
}

/* animatik play button style */
.play-btn-anim {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-anim:hover {
    transform: scale(1.1);
}

.play-btn-rings {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn-rings .ring {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: ringBreathing 3s infinite ease-in-out;
}

.play-btn-rings .ring:nth-child(1) {
    inset: -5px;
    animation-delay: 0s;
}

.play-btn-rings .ring:nth-child(2) {
    inset: -15px;
    animation-delay: 0.6s;
}

.play-btn-rings .ring:nth-child(3) {
    inset: -25px;
    animation-delay: 1.2s;
}

.play-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    color: #ffffff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.play-svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
    fill: #ffffff;
}

@keyframes ringBreathing {
    0% {
        transform: scale(0.92);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }

    100% {
        transform: scale(0.92);
        opacity: 0.5;
    }
}

/* Responsive Product Hero */
@media (max-width: 991px) {
    .product-hero-section {
        height: auto;
        padding: 120px 0 80px;
    }

    .product-hero-overlay {
        background: radial-gradient(circle at center, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.98) 100%);
    }

    .product-hero-title {
        font-size: 42px;
    }

    .product-hero-desc {
        font-size: 16px;
    }

    .play-btn-anim {
        margin-top: 60px;
    }
}

/* ==========================================================================
   ÜRÜN GALERİ VE AÇIKLAMA BÖLÜMÜ TASARIMI
   ========================================================================== */
.section-product-gallery-desc {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.section-product-tabs {
    background-color: #f7f7f7;
}

.product-large-preview {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
}

.large-image-wrap {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 540px;
}

.large-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.zoom-icon-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zoom-icon-overlay:hover {
    background-color: #ff9000;
    transform: scale(1.1);
}

.zoom-icon-overlay:hover .zoom-icon-img {
    filter: brightness(0) invert(1);
}

.product-thumbnails-grid {
    scrollbar-width: none;
}

.product-thumbnails-grid::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    width: 117px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    background-color: #ffffff;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 96px;
}

.thumb-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.thumb-item:hover {
    border-color: #cbd5e1;
}

.thumb-item.active {
    border-color: #ff9000;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.15);
}

.auto-tab-content-title,
.product-description-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a2530;
    margin-bottom: 25px;
    line-height: 1.35;
    position: relative;
    padding-bottom: 20px;
}

.auto-tab-content-title {
    display: inline-block;
}

.auto-tab-content-title:before,
.product-description-content h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: #ff9000;
    z-index: 2;
}

.auto-tab-content-title:after,
.product-description-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dddddd;
    z-index: 1;
}

.product-description-content p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}

/* Mobil Uyum */
@media (max-width: 767px) {
    .section-product-gallery-desc {
        padding: 60px 0;
    }

    .large-image-wrap {
        height: 320px;
        padding: 30px 15px;
    }

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

    .thumb-item {
        width: 70px;
        height: 70px;
    }
}

.auto-tabs {
    width: 100%;
}

.auto-tabs-nav {
    /* display: grid; */
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
    /* gap: 20px; */
    margin-bottom: 48px;
    border: 0;
}

.auto-tabs-nav .nav-item {
    /* width: 100%; */
}



.auto-tabs-nav .nav-link:hover {
    border-color: #ff8a00;
    color: #ff8a00;
}

.auto-tabs-nav .nav-link.active {
    border-color: #ff8a00;
    background-color: #ff8a00;
    color: #ffffff;

    box-shadow: 0 5px 16px rgba(255, 138, 0, 0.20);
}

.auto-tabs-content-title {
    position: relative;

    margin: 0 0 25px;
    padding-bottom: 14px;

    color: #393939;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.auto-tabs-content-title::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 58px;
    height: 2px;

    background-color: #ff8a00;
}

.auto-tabs-content-title::after {
    content: "";

    position: absolute;
    left: 58px;
    bottom: 0;
    right: 0;

    height: 1px;

    background-color: #dddddd;
}

.auto-tabs-content p {
    margin-bottom: 18px;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.55;
}

.auto-tabs-content ul,
.auto-tabs-content ol {
    margin-bottom: 20px;
    padding-left: 22px;

    color: #707070;
}

.auto-tabs-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767.98px) {
    .auto-tabs-nav {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }

    .auto-tabs-content-title {
        font-size: 20px;
    }

    .auto-tabs-content p {
        font-size: 15px;
    }
}

.auto-tab-image {
    width: 100%;
}

.auto-tab-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .auto-tab-image {
        margin-top: 30px;
    }
}