/* ==========================================================================
   PRONIT TEXTILE - MAIN STYLESHEET
   ========================================================================== */

:root {
    --primary-color: #E61C52;      /* Pronit Pink/Red Accent */
    --primary-hover: #c41240;
    --dark-color: #2F3538;         /* Pronit Slate Charcoal */
    --text-muted: #6c757d;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 35px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Poppins', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 999;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    position: relative;
}

.nav-link i {
    font-size: 11px;
    transition: var(--transition);
    color: #888;
}

.nav-item:hover .nav-link {
    color: var(--primary-color);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Mega Menu Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 820px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    border-top: 3px solid var(--primary-color);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease-in-out;
    z-index: 1000;
}

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

.mega-menu-content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: center;
}

.mega-visual-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 200px;
}

.mega-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: var(--transition);
}

.mega-visual-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.65);
}

.mega-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--white);
}

.mega-card-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    padding-bottom: 8px;
}

.mega-card-overlay h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.mega-links-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mega-links-list li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.mega-links-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Header Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Customer Login Button */
.btn-customer-login {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(230, 28, 82, 0.3);
    transition: var(--transition);
}

.btn-customer-login:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.4);
}

/* Dropdown Language Selector */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 150px;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: var(--transition);
    z-index: 1010;
}

.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
    cursor: pointer;
}

.lang-option:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.lang-option.active {
    background-color: rgba(230, 28, 82, 0.08);
    color: var(--primary-color);
    font-weight: 700;
}

/* Mobile Language Bar */
.mobile-lang-bar {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: #FAFAFA;
}

.mobile-lang-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.mobile-lang-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.mobile-lang-item:hover,
.mobile-lang-item.active {
    background-color: rgba(230, 28, 82, 0.08);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   OFF-CANVAS MOBILE MENU
   ========================================================================== */

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.offcanvas-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--white);
    z-index: 1050;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas-menu.active {
    transform: translateX(-360px);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-logo img {
    height: 38px;
    width: auto;
}

.btn-close-offcanvas {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark-color);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-close-offcanvas:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.offcanvas-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--light-bg);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-submenu {
    display: none;
    padding: 6px 0 12px 16px;
}

.mobile-nav-item.open .mobile-submenu {
    display: block;
}

.mobile-nav-item.open .mobile-nav-link i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.mobile-submenu-link {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.mobile-submenu-link:hover {
    color: var(--primary-color);
}

.offcanvas-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: var(--dark-color);
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-contact-info i {
    color: var(--primary-color);
    font-size: 15px;
    width: 16px;
}

/* ==========================================================================
   HERO SLIDER SECTION (ÖZSAR STYLE ADAPTATION)
   ========================================================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 520px;
    max-height: 720px;
    background-color: #111;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Overlay gradient & bottom strip */
.slide-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.slide-caption-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.35) 0%, rgba(15, 15, 15, 0.9) 100%);
    backdrop-filter: blur(4px);
    padding: 40px 0 50px 0;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 850px;
}

/* Pink vertical bar like Özsar */
.caption-accent-line {
    width: 5px;
    height: 75px;
    background-color: var(--primary-color);
    border-radius: 2px;
    flex-shrink: 0;
}

.caption-content {
    color: var(--white);
}

.caption-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.caption-desc {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    max-width: 720px;
    line-height: 1.5;
}

.btn-detail {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.4);
    transition: var(--transition);
}

.btn-detail:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 28, 82, 0.6);
}

/* Swiper Navigation Custom Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    color: var(--white);
    backdrop-filter: blur(4px);
    transition: var(--transition);
    margin-top: -24px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 6px;
    background-color: var(--primary-color);
}

/* ==========================================================================
   QUALITY & CERTIFICATE LOGO SLIDER SECTION
   ========================================================================== */

.quality-cert-section {
    background-color: var(--white);
    padding: 60px 0 50px 0;
    border-top: 4px solid var(--primary-color); /* Top line in Pronit logo color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.quality-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.quality-title-box {
    text-align: right;
}

.quality-main-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 4px;
}

.quality-sub-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.quality-divider-line {
    width: 4px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 2px;
    flex-shrink: 0;
}

.quality-desc-box {
    text-align: left;
}

.quality-desc-box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 500px;
}

/* Logo Swiper Slider */
.logo-swiper-wrapper {
    padding: 30px 0;
}

.logo-slide-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 10px 20px;
}

.logo-slide-item img {
    max-height: 110px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.logo-slide-item:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   PRODUCTS CAROUSEL & CARDS SECTION
   ========================================================================== */

.products-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.products-header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.products-accent-line {
    width: 4px;
    height: 54px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.products-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

/* E-Catalog Button */
.btn-catalog-download {
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-catalog-download i {
    color: var(--primary-color);
    font-size: 16px;
}

.btn-catalog-download:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 28, 82, 0.35);
}

.btn-catalog-download:hover i {
    color: var(--white);
}

/* Product Cards Carousel */
.products-swiper-container {
    position: relative;
    padding: 10px 50px 60px 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 28, 82, 0.3);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    color: var(--dark-color);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    transition: var(--transition);
}

.product-card:hover .product-card-title {
    color: var(--primary-color);
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-btn-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.product-btn-link i {
    font-size: 11px;
    transition: var(--transition);
}

.product-card:hover .product-btn-link {
    color: var(--primary-hover);
}

.product-card:hover .product-btn-link i {
    transform: translateX(4px);
}

/* Products Swiper Arrows & Dots Styling */
.products-swiper-container .swiper-button-next,
.products-swiper-container .swiper-button-prev {
    width: 46px;
    height: 46px;
    background-color: var(--white);
    color: var(--dark-color);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    top: calc(50% - 25px);
    transform: translateY(-50%);
    z-index: 10;
    transition: var(--transition);
}

.products-swiper-container .swiper-button-prev {
    left: 0;
}

.products-swiper-container .swiper-button-next {
    right: 0;
}

.products-swiper-container .swiper-button-next:hover,
.products-swiper-container .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.products-swiper-container .swiper-button-next:after,
.products-swiper-container .swiper-button-prev:after {
    font-size: 15px;
    font-weight: bold;
}

.products-swiper-container .swiper-pagination {
    bottom: 10px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.products-swiper-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.products-swiper-container .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* ==========================================================================
   FACILITIES & MANUFACTURING BENTO GRID SECTION
   ========================================================================== */

.facilities-section {
    background-color: #ffffff;
    padding: 85px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.facilities-header-wrapper {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.facilities-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-top: 6px;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1.1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

/* Bento 1: Hero Stat Card (Pronit Pink Gradient) */
.bento-stat-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(145deg, #E61C52 0%, #B80D3A 100%);
    border-radius: 16px;
    padding: 40px 32px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(230, 28, 82, 0.25);
    position: relative;
    overflow: hidden;
}

.bento-stat-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.stat-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.stat-hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.stat-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.stat-metrics-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Bento 2: Video Showcase Card */
.bento-video-card {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 440px;
    box-shadow: var(--shadow-md);
}

.bento-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-video-card:hover img {
    transform: scale(1.06);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

/* Pulsing Play Button */
.btn-play-video {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    animation: pulse-ring 2s infinite;
    transition: var(--transition);
}

.btn-play-video:hover {
    transform: scale(1.12);
    background-color: var(--primary-hover);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 28, 82, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(230, 28, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 28, 82, 0);
    }
}

.video-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.video-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Bento 3 & 4: Right Facility Cards Column */
.bento-facility-list {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.facility-card-item {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.facility-card-item:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}

.facility-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.facility-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2px;
    transition: var(--transition);
}

.facility-card-item:hover .facility-info h4 {
    color: var(--primary-color);
}

.facility-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Video Lightbox Modal */
.video-modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 840px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.btn-close-video-modal {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.video-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   FACILITIES SECTION (1:1 EXACT ADAPTATION)
   ========================================================================== */

.facilities-section {
    background-color: #FAFAFA;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 70px 0 80px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.facilities-top-title {
    text-align: center;
    margin-bottom: 35px;
}

.title-accent-bar {
    width: 3px;
    height: 24px;
    background-color: var(--primary-color);
    margin: 0 auto 8px auto;
}

.facilities-top-title h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0d1e38;
}

.facilities-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Left Stack Column */
.fac-col-left {
    width: 290px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
}

.fac-box-charcoal {
    background-color: #444c56;
    color: var(--white);
    padding: 30px 24px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fac-box-charcoal h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
}

.fac-box-charcoal p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.fac-box-pink {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 28px 24px;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fac-box-pink .pink-sub {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.9;
}

.fac-box-pink h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
}

/* 2. Middle Center Vertical Image */
.fac-col-center-img {
    width: 220px;
    height: 430px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fac-col-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Middle Right Panel (Catalog & Video) */
.fac-col-mid-right {
    width: 290px;
    height: 430px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.fac-bg-image {
    position: absolute;
    inset: 0;
}

.fac-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
}

.fac-action-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fac-action-box.top-catalog {
    height: 240px;
    background-color: rgba(36, 44, 53, 0.75);
    backdrop-filter: blur(2px);
}

.fac-action-box.bottom-video {
    height: 190px;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.fac-action-box.bottom-video:hover {
    background-color: var(--primary-hover);
}

.fac-action-link {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fac-action-link i {
    font-size: 38px;
}

.fac-action-link span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* 4. Far Right Column (4 Facility Cards) */
.fac-col-right-list {
    width: 250px;
    height: 430px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.fac-card {
    position: relative;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}

.fac-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.fac-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: var(--transition);
}

.fac-card:hover img {
    filter: brightness(0.5);
}

.fac-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 8px;
}

.fac-card-overlay h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.fac-card-overlay span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* Responsive Media Queries for Facilities Layout */
@media (max-width: 1100px) {
    .facilities-main-wrapper {
        flex-wrap: wrap;
    }
    
    .fac-col-left,
    .fac-col-center-img,
    .fac-col-mid-right,
    .fac-col-right-list {
        width: 48%;
        height: auto;
    }
    
    .fac-col-center-img img {
        height: 430px;
    }
}

@media (max-width: 600px) {
    .fac-col-left,
    .fac-col-center-img,
    .fac-col-mid-right,
    .fac-col-right-list {
        width: 100%;
    }
}

/* ==========================================================================
   CUSTOMER RELATIONS SECTION (MÜŞTERİ İLİŞKİLERİ)
   ========================================================================== */

.customer-relations-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.cr-top-title {
    text-align: center;
    margin-bottom: 50px;
}

.cr-top-title .title-accent-bar {
    width: 3px;
    height: 24px;
    background-color: var(--primary-color);
    margin: 0 auto 8px auto;
}

.cr-top-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
}

.cr-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left & Right Columns - MUST HAVE min-width: 0 for Swiper inside CSS Grid! */
.cr-left-col,
.cr-right-col {
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cr-sub-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* References Carousel */
.references-swiper-container {
    padding: 10px 0 35px 0;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.references-swiper {
    width: 100%;
}

.ref-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 12px 18px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-color);
    letter-spacing: -0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.ref-logo-badge:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.ref-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 10px;
}

.ref-logo-item img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.ref-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cr-divider-line {
    height: 1px;
    background-color: var(--border-color);
    margin: 25px 0 35px 0;
}

/* Offices Swiper Carousel */
.offices-swiper-container {
    position: relative;
    padding-bottom: 40px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.offices-swiper {
    width: 100%;
}

.office-card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.office-thumb {
    width: 120px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.office-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.office-details p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 6px;
}

.office-contact-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Right Column */
.cr-right-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cr-block-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.cr-block-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cr-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-cr-action {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.25);
}

.btn-cr-action:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 28, 82, 0.4);
}

.cr-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
}

.cr-icon-item i {
    font-size: 28px;
    color: var(--dark-color);
    transition: var(--transition);
}

.cr-icon-item span {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.cr-icon-item:hover {
    color: var(--primary-color);
}

.cr-icon-item:hover i {
    color: var(--primary-color);
    transform: translateY(-2px);
    transform: translateY(-3px);
}

/* Responsive Media Query */
@media (max-width: 992px) {
    .cr-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   MEDIA CENTER SECTION (MEDYA MERKEZİ)
   ========================================================================== */

.media-center-section {
    background-color: #FAFAFA;
    padding: 85px 0;
    border-top: 1px solid var(--border-color);
}

.media-top-title {
    text-align: center;
    margin-bottom: 50px;
}

.media-top-title .title-accent-bar {
    width: 3px;
    height: 24px;
    background-color: var(--primary-color);
    margin: 0 auto 8px auto;
}

.media-top-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0b1e38;
}

/* Expanded Wide Grid Container */
.media-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.media-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 28, 82, 0.3);
}

.media-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.media-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-img-wrapper img {
    transform: scale(1.08);
}

.media-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.media-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.media-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0b1e38;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.media-card:hover .media-card-title {
    color: var(--primary-color);
}

.media-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.media-card:hover .media-card-link {
    color: var(--primary-hover);
}

/* Responsive Media Center Grid */
@media (max-width: 992px) {
    .media-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .media-grid-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FOUNDER / LEADERSHIP SECTION (KURUCU MESAJI)
   ========================================================================== */

.founder-section {
    position: relative;
    width: 100%;
    background-color: var(--white);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    align-items: stretch;
}

.founder-content-box {
    background-color: #2F3538; /* Pronit Dark Charcoal */
    color: var(--white);
    padding: 60px 80px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.founder-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.founder-message {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}

.btn-founder-more {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.3);
    transition: var(--transition);
}

.btn-founder-more:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 28, 82, 0.45);
}

.founder-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.founder-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Responsive Media Query */
@media (max-width: 992px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
    }
    
    .founder-content-box {
        padding: 40px 24px;
    }
    
    .founder-img-box {
        height: 380px;
        min-height: 380px;
    }
}

/* ==========================================================================
   VIDEOS SECTION (VİDEOLAR)
   ========================================================================== */

.videos-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.videos-top-title {
    text-align: center;
    margin-bottom: 50px;
}

.videos-top-title .title-accent-bar {
    width: 3px;
    height: 24px;
    background-color: var(--primary-color);
    margin: 0 auto 8px auto;
}

.videos-top-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.videos-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(230, 28, 82, 0.2);
}

.video-thumb-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: #111;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-card:hover .video-thumb-wrapper img {
    transform: scale(1.08);
    opacity: 0.75;
}

/* Center Play Icon Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-play-overlay i {
    font-size: 48px;
    color: var(--white);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.video-card:hover .video-play-overlay i {
    transform: scale(1.15);
    color: var(--white);
}

.video-card-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 24px;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.video-card-footer h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 992px) {
    .videos-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .videos-grid-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   COMBINED CONTACT FORM & SOCIAL MEDIA SECTION
   ========================================================================== */

.contact-social-section {
    background-color: #FAFAFA;
    padding: 85px 0;
    border-top: 1px solid var(--border-color);
}

.contact-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Contact Form Column */
.cs-form-col {
    display: flex;
    flex-direction: column;
}

.cs-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    position: relative;
    padding-left: 14px;
}

.cs-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.cs-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--dark-color);
    background-color: var(--white);
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 28, 82, 0.15);
}

.char-counter {
    text-align: right;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: var(--dark-color);
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.btn-submit-form {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.3);
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit-form:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 28, 82, 0.45);
}

/* Right: Social Media & Instagram Column */
.cs-social-col {
    display: flex;
    flex-direction: column;
}

.social-title-box {
    margin-bottom: 20px;
}

.social-title-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0b1e38;
    line-height: 1.3;
    margin-bottom: 16px;
}

.social-brand-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.social-fb { background-color: #3b5998; }
.social-ig { background-color: #e1306c; }
.social-li { background-color: #0077b5; }
.social-yt { background-color: #ff0000; }
.social-vk { background-color: #4c75a3; }

/* Instagram Feed Block */
.insta-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.insta-handle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
}

.insta-handle i {
    font-size: 26px;
    color: #e1306c;
}

.btn-follow-insta {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-follow-insta:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

/* 3x3 Instagram Photo Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(230, 28, 82, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .contact-social-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   INNER PAGE HERO BANNER & BREADCRUMB
   ========================================================================== */

.page-banner-section {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Dark Overlay */
.page-banner-overlay,
.banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.page-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav i {
    font-size: 11px;
    color: var(--primary-color);
}

.breadcrumb-nav span.active {
    color: var(--white);
    font-weight: 700;
}

/* ==========================================================================
   INNER PAGE CONTENT & SIDEBAR
   ========================================================================== */

.page-content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.page-grid-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.page-main-body h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0b1e38;
    margin-bottom: 16px;
}

.page-main-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-main-body img.content-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    margin: 25px 0;
}

/* Vision / Mission Cards */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 35px 0;
}

.value-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Sidebar Widget */
.sidebar-widget {
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background-color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.sidebar-menu li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #ffffff;
}

.sidebar-menu li a.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(230, 28, 82, 0.35);
}

.sidebar-cta-widget {
    background: linear-gradient(135deg, #2F3538 0%, #1A1D1F 100%);
    color: var(--white);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
}

.sidebar-cta-widget i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.sidebar-cta-widget h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sidebar-cta-widget p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* Responsive Inner Page */
@media (max-width: 992px) {
    .page-grid-layout {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SITE FOOTER SECTION
   ========================================================================== */

.site-footer {
    background-color: var(--white);
    padding: 70px 0 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

/* Watermark Emblem at Bottom Left */
.footer-watermark {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 280px;
    height: 280px;
    background-image: url('../images/emblem.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.12; /* Subtle watermark opacity */
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 280px 1.2fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

/* Left Brand Column */
.footer-brand-col img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Middle Contact Column */
.footer-contact-col h3,
.footer-links-col h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0b1e38;
    margin-bottom: 20px;
}

.footer-address-block {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--dark-color);
}

.footer-address-block h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.footer-address-block p {
    color: var(--text-muted);
}

.footer-address-block a {
    color: var(--dark-color);
    font-weight: 600;
}

.footer-address-block a:hover {
    color: var(--primary-color);
}

.footer-career-link {
    font-size: 13px;
}

.footer-career-link h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.footer-career-link a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.footer-career-link a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Right Social & Policy Column */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 28, 82, 0.4);
}

.footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal-list li a {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    transition: var(--transition);
}

.footer-legal-list li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Bottom Copyright Bar */
.footer-copyright-bar {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    background-color: var(--light-bg);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   FLOATING ACTION BUTTON (SAĞ ALT YÜZEN İLETİŞİM + BUTONU)
   ========================================================================== */

.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
}

.fab-main-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #2F3538;
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-main-btn:hover {
    transform: scale(1.08);
    background-color: var(--primary-color);
}

.floating-contact-widget.active .fab-main-btn {
    background-color: var(--primary-color);
    transform: rotate(135deg); /* Rotates + to X */
}

.fab-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.floating-contact-widget.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.fab-icon-btn:hover {
    transform: scale(1.12);
}

/* Specific Service Colors */
.fab-whatsapp {
    background-color: #25D366;
}

.fab-phone {
    background-color: #007AFF;
}

.fab-email {
    background-color: #E61C52;
}

/* Tooltip on hover */
.fab-tooltip {
    position: absolute;
    right: 60px;
    background-color: rgba(20, 20, 20, 0.9);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.fab-item:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-4px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-stat-card,
    .bento-video-card,
    .bento-facility-list {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .bento-video-card {
        min-height: 320px;
    }

    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .btn-customer-login span {
        display: none; /* Icon only on mobile */
    }
    
    .btn-customer-login {
        padding: 8px 12px;
    }
    
    .caption-title {
        font-size: 26px;
    }
    
    .caption-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .brand-logo img {
        height: 38px;
    }
    
    .hero-slider-section {
        height: calc(100vh - 70px);
        min-height: 440px;
    }
    
    .slide-caption-wrapper {
        padding: 24px 0 35px 0;
    }
    
    .caption-box {
        gap: 14px;
    }
    
    .caption-accent-line {
        height: 60px;
        width: 4px;
    }
    
    .caption-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .caption-desc {
        font-size: 13px;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .quality-header-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .quality-title-box {
        text-align: center;
    }
    
    .quality-divider-line {
        width: 60px;
        height: 3px;
    }
    
    .quality-desc-box {
        text-align: center;
    }

    .btn-detail {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-main-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* ==========================================================================
   SINGLE PRODUCT PAGE & 5 FEATURE CARDS
   ========================================================================== */

.single-product-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.product-main-img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.product-main-img-box img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.product-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-category-tag {
    display: inline-block;
    background-color: rgba(230, 28, 82, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.product-single-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

.product-single-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-single-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-product-inquiry {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(230, 28, 82, 0.3);
    transition: var(--transition);
}

.btn-product-inquiry:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 28, 82, 0.45);
}

/* 5 Feature Cards Bar */
.product-features-bar {
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    margin: 50px 0;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.feature-item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 8px;
    transition: var(--transition);
    border-right: 1px solid var(--border-color);
}

.feature-item-card:last-child {
    border-right: none;
}

.feature-item-card:hover {
    transform: translateY(-4px);
}

.feature-icon-box {
    width: 100px;
    height: 100px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box svg {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
}

.feature-icon-box svg .cls-1 {
    fill: var(--primary-color);
}

.feature-item-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 6px;
}

.feature-item-card span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.35;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .product-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-item-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   SINGLE NEWS PAGE & BOTTOM OTHER NEWS CAROUSEL / NAVIGATION
   ========================================================================== */

.single-news-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: flex-start;
}

.news-left-media {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-featured-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.news-featured-img-box img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-featured-img-box:hover img {
    transform: scale(1.04);
}

.news-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-meta-info-card {
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-meta-info-card .meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news-meta-info-card .meta-item i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(230, 28, 82, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.news-meta-info-card .meta-item strong {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-meta-info-card .meta-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
}

.news-share-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.news-share-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.news-share-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.news-right-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(230, 28, 82, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    align-self: flex-start;
}

.news-single-header-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.25;
}

.news-single-body-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.news-single-body-text p {
    margin-bottom: 20px;
}

/* Bottom Other News Grid */
.other-news-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.other-news-header {
    text-align: center;
    margin-bottom: 40px;
}

.other-news-header .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.other-news-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
}

.other-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.other-news-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.other-news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 28, 82, 0.3);
}

.other-news-img-link {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.other-news-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-news-card:hover .other-news-img-link img {
    transform: scale(1.08);
}

.other-news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 14px;
}

.other-news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.other-news-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.35;
    margin-bottom: 16px;
    transition: var(--transition);
}

.other-news-card:hover .other-news-card-body h4 {
    color: var(--primary-color);
}

.other-news-read-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.other-news-card:hover .other-news-read-btn {
    color: var(--primary-hover);
}

.other-news-card:hover .other-news-read-btn i {
    transform: translateX(4px);
}

/* Next / Prev Buttons with Thumbnails */
.news-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed var(--border-color);
}

.news-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    max-width: 420px;
    flex: 1;
}

.news-nav-item:hover {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.news-nav-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-nav-item .nav-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.news-nav-item .nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .news-detail-grid {
        grid-template-columns: 1fr;
    }
    .news-left-media {
        position: relative;
        top: 0;
    }
    .other-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .news-nav-item {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .other-news-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CONTACT PAGE TEMPLATE & REPRESENTATION OFFICES (TEMSİLCİLİKLERİMİZ)
   ========================================================================== */

/* 1. Corporate Headquarters & Factory Section */
.contact-hq-section {
    padding: 70px 0 40px 0;
    background-color: #ffffff;
}

.hq-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hq-card {
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 35px 30px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
}

.hq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 28, 82, 0.3);
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
}

.hq-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.3);
}

.hq-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hq-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.hq-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.hq-detail i {
    color: var(--primary-color);
    font-size: 15px;
    margin-top: 3px;
}

.hq-detail a {
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.hq-detail a:hover {
    color: var(--primary-color);
}

/* 2. Global Offices Grid Section */
.contact-offices-section {
    padding: 60px 0 80px 0;
    background-color: #F8F9FA;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.offices-header-box {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.offices-header-box .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.offices-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.offices-intro {
    font-size: 15px;
    color: var(--text-muted);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.office-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 28, 82, 0.3);
}

.office-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.office-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-card:hover .office-img-wrapper img {
    transform: scale(1.08);
}

.office-country-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.office-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.office-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.office-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.office-info-row i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.office-info-row a {
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.office-info-row a:hover {
    color: var(--primary-color);
}

.btn-office-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-office-map:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.responsive-map-iframe {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.responsive-map-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* 3. Main Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: flex-start;
}

.form-info-col .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.form-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.form-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-direct-boxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.direct-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.direct-box i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(230, 28, 82, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.direct-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.direct-box p a {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
    transition: var(--transition);
}

.direct-box p a:hover {
    color: var(--primary-color);
}

/* Contact Form Styling */
.form-wrapper-col {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-main-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-main-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-main-form input[type="text"],
.contact-main-form input[type="email"],
.contact-main-form input[type="tel"],
.contact-main-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark-color);
    background-color: #FAFAFA;
    transition: var(--transition);
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(230, 28, 82, 0.15);
}

.btn-submit-main-form {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(230, 28, 82, 0.35);
    transition: var(--transition);
}

.btn-submit-main-form:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 28, 82, 0.45);
}

@media (max-width: 992px) {
    .hq-cards-grid {
        grid-template-columns: 1fr;
    }
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .form-wrapper-col {
        padding: 24px;
    }
}

/* ==========================================================================
   CAREER PAGE TEMPLATE & APPLICATION FORM
   ========================================================================== */

/* 1. Career Culture Section */
.career-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.career-intro-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.career-intro-header .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.career-main-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.career-intro-p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
}

.career-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.c-value-card {
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.c-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 28, 82, 0.3);
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
}

.c-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(230, 28, 82, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px auto;
    transition: var(--transition);
}

.c-value-card:hover .c-value-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.c-value-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.c-value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 2. Open Positions Section */
.open-positions-section {
    padding: 70px 0;
    background-color: #F8F9FA;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.positions-header {
    text-align: center;
    margin-bottom: 40px;
}

.positions-header .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.positions-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-color);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.position-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.position-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pos-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pos-dept {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pos-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
}

.pos-loc {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-apply-pos {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-apply-pos:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateX(3px);
}

/* 3. Career Application Form Section */
.career-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.career-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.c-form-text-col .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.c-form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.c-form-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.c-contact-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.c-c-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(230, 28, 82, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.c-contact-box strong {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-contact-box a {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
}

/* Career Form Card & CV Upload Box */
.c-form-card-col {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.career-main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark-color);
    background-color: #FAFAFA;
    transition: var(--transition);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 28, 82, 0.15);
}

.cv-file-upload-box {
    position: relative;
}

.cv-file-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cv-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    background-color: #FAFAFA;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.cv-file-upload-box:hover .cv-upload-label {
    border-color: var(--primary-color);
    background-color: rgba(230, 28, 82, 0.03);
    color: var(--primary-color);
}

.cv-upload-label i {
    font-size: 28px;
    color: var(--primary-color);
}

.cv-upload-label span {
    font-size: 13px;
    font-weight: 600;
}

.btn-submit-career {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(230, 28, 82, 0.35);
    transition: var(--transition);
}

.btn-submit-career:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 28, 82, 0.45);
}

@media (max-width: 992px) {
    .career-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .career-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .career-values-grid {
        grid-template-columns: 1fr;
    }
    .position-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-apply-pos {
        width: 100%;
        justify-content: center;
    }
    .c-form-card-col {
        padding: 24px;
    }
}

/* ==========================================================================
   MEDIA / NEWS ARCHIVE GRID PAGE & PAGINATION (EXACT ADAPTATION FROM REF IMAGE)
   ========================================================================== */

.media-archive-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.media-header-box {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.media-header-box .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.media-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
}

.media-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 30px;
    margin-bottom: 50px;
}

.media-news-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.media-card-img-link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.media-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-news-card:hover .media-card-img-link img {
    transform: scale(1.06);
}

.media-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.media-card-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}

.media-card-title a {
    color: #1e293b;
    transition: var(--transition);
}

.media-news-card:hover .media-card-title a {
    color: var(--primary-color);
}

.media-card-excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-card-detay-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: var(--transition);
}

.media-card-detay-btn:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}

/* Media Pagination */
.media-pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-pagination-wrapper .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-pagination-wrapper a,
.media-pagination-wrapper span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.media-pagination-wrapper a:hover,
.media-pagination-wrapper .current {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.3);
}

@media (max-width: 576px) {
    .media-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRODUCTS & SERVICES ARCHIVE GRID STYLES
   ========================================================================== */

/* Filter Pills for Product Archives */
.product-filter-pills .filter-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.product-filter-pills .filter-pill.active,
.product-filter-pills .filter-pill:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(230, 28, 82, 0.3);
}

/* Product Card Hover Effects */
.product-archive-card {
    transition: var(--transition);
}

.product-archive-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-archive-card:hover h3 a {
    color: var(--primary-color) !important;
}

.btn-product-detail:hover i {
    transform: translateX(4px);
}

/* Service Card Hover Effects */
.service-archive-card {
    transition: var(--transition);
}

.service-archive-card:hover {
    transform: translateY(-6px);
}

.service-archive-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-archive-card:hover h3 a {
    color: var(--primary-color) !important;
}

.btn-service-detail:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .products-grid-3col,
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .products-grid-3col,
    .services-grid-3col {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   CONTACT PAGE LOCATIONS HORIZONTAL ROWS (MATCHING REFERENCE SCREENSHOT)
   ========================================================================== */

.contact-locations-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.contact-location-row {
    display: grid;
    grid-template-columns: 320px 1fr 340px;
    gap: 40px;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px dashed var(--border-color);
}

.contact-location-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.location-photo-box {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.location-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-photo-box:hover img {
    transform: scale(1.05);
}

.location-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-name {
    font-size: 26px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
}

.location-info-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.location-info-item a {
    color: #334155;
    font-weight: 600;
    transition: var(--transition);
}

.location-info-item a:hover {
    color: var(--primary-color);
}

.location-map-box {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.responsive-location-map {
    width: 100%;
    height: 100%;
}

.responsive-location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-location-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .location-photo-box,
    .location-map-box {
        height: 250px;
    }
}

/* ==========================================================================
   SINGLE SERVICE & SINGLE NEWS PHOTO GALLERY STYLES
   ========================================================================== */

.gallery-item-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.gallery-img-link {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
}

.gallery-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(230, 28, 82, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-card:hover .gallery-img-link img {
    transform: scale(1.1);
}

.gallery-item-card:hover .gallery-hover-overlay {
    opacity: 1;
}

/* Static Logo / Certificate Card Styles (When Lightbox is Disabled / False) */
.static-logo-card {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.static-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.gallery-img-static img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.static-logo-card:hover .gallery-img-static img {
    transform: scale(1.05);
}

/* ==========================================================================
   POLICIES ACCORDION STYLES (POLİTİKALARIMIZ)
   ========================================================================== */

.policy-accordion-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.policy-accordion-item:hover {
    border-color: rgba(230, 28, 82, 0.4) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
}

.policy-accordion-item.active {
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 22px rgba(230, 28, 82, 0.12) !important;
}

.policy-accordion-item.active .policy-icon-box {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.policy-accordion-item.active .policy-chevron-box {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: rotate(180deg);
}

.policy-accordion-item.active .policy-accordion-header h3 {
    color: var(--primary-color) !important;
}

.policy-accordion-header:hover .policy-icon-box {
    transform: scale(1.05);
}

.policy-text-content ul {
    margin: 14px 0;
    padding-left: 20px;
}

.policy-text-content li {
    margin-bottom: 8px;
}

.btn-policy-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 28, 82, 0.45) !important;
}

@media (max-width: 768px) {
    .policy-accordion-body {
        padding-left: 24px !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .media-archive-grid {
        grid-template-columns: 1fr;
    }
}
