/* ============================================
   Rotaş Oto Ticaret - Modern Red Theme
   ============================================ */

/* ============================================
   Loading Screen - Clean White Automotive
   ============================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: min(92vw, 340px);
    padding: 0 1rem;
}

.loading-brand {
    margin-bottom: 2rem;
    animation: loadingBrandIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-logo {
    height: 72px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.loading-wheel {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.75rem;
    color: var(--primary-red);
    animation: loadingWheelSpin 2.4s linear infinite;
}

.loading-wheel svg {
    width: 100%;
    height: 100%;
    display: block;
}

.loading-status {
    animation: loadingStatusIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.loading-text {
    margin: 0 0 1rem;
    color: var(--gray);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.loading-progress {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
    position: relative;
}

.loading-progress-bar {
    height: 100%;
    width: 40%;
    border-radius: 999px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    animation: loadingProgressSlide 1.5s ease-in-out infinite;
}

@keyframes loadingBrandIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loadingStatusIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingWheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loadingProgressSlide {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(320%);
    }
}

@media (max-width: 768px) {
    .loading-logo {
        height: 58px;
        max-width: 240px;
    }

    .loading-wheel {
        width: 52px;
        height: 52px;
        margin-bottom: 1.5rem;
    }

    .loading-text {
        font-size: 0.65rem;
        letter-spacing: 0.22em;
    }
}

:root {
    --primary-red: #DC2626;
    --dark-red: #B91C1C;
    --light-red: #EF4444;
    --black: #000000;
    --dark-gray: #1F1F1F;
    --gray: #4B5563;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --yellow: #FCD34D;
    --blue: #3B82F6;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Futuristic Colors */
    --neon-red: #ff006e;
    --neon-blue: #00f5ff;
    --neon-purple: #8338ec;
    --glow-red: rgba(220, 38, 38, 0.6);
    --glow-blue: rgba(0, 245, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Futuristic Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: -1;
    animation: backgroundShift 20s ease infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    padding: 0.25rem 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.3s ease;
}

/* Navbar inside slider - transparent and absolute, starts from slider top */
.slider-section .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
}

/* Navbar outside slider - fixed and solid */
.navbar.solid:not(.slider-section .navbar),
body > .navbar.solid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%),
                      linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    background-size: 100% 100%, 100% 2px;
    background-position: center, bottom;
    background-repeat: no-repeat;
}

/* Transparent navbar when at top (inside slider) */
.slider-section .navbar.transparent {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    background-image: none !important;
    padding: 0.5rem 0;
}

/* Solid navbar when scrolled down (inside slider) */
.slider-section .navbar.solid {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}


.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar .container {
    padding: 0;
    max-width: 100%;
}

.navbar .container .nav-wrapper {
    padding: 0;
    width: 100%;
}

.nav-right-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 0;
}

.logo {
    margin-left: 0;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
}

/* Logo in transparent navbar */
.slider-section .navbar.transparent .logo-image {
    filter: none;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    font-style: italic;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-right: 0;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

/* Transparent navbar - make menu items more visible */
.slider-section .navbar.transparent .nav-menu a {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    transition: all 0.3s ease;
}

.slider-section .navbar.transparent .nav-menu a:hover {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(220, 38, 38, 0.9), 0 1px 4px rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

.slider-section .navbar.transparent .nav-menu a.active {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

.nav-menu li {
    position: relative;
}

.dropdown-indicator {
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

/* Dropdown indicator in transparent navbar */
.slider-section .navbar.transparent .dropdown-indicator {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(220, 38, 38, 0.4);
}

.nav-menu li.has-dropdown:hover .dropdown-indicator {
    transform: rotate(180deg) scale(1.1);
    background: var(--dark-red);
    border-color: var(--dark-red);
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.5);
}

.nav-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-menu li.has-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu li.has-dropdown:hover > a::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    margin-top: 0.5rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: none;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.dropdown-menu a:hover {
    background-color: rgba(220, 38, 38, 0.05);
    color: var(--primary-red);
    padding-left: 2rem;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* B2B button in transparent navbar */
.slider-section .navbar.transparent .nav-button {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(220, 38, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dropdown menu in slider section - more visible */
.slider-section .dropdown-menu {
    background: rgba(255, 255, 255, 0.99) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
    border: 1px solid rgba(220, 38, 38, 0.15) !important;
}

.slider-section .dropdown-menu a {
    color: var(--black) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9) !important;
}

.nav-button {
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 0;
    margin-right: 1.5rem;
}

.nav-button:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--black);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23DC2626" opacity="0.05"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Slider Section
   ============================================ */

.slider-section {
    position: relative;
    width: 100%;
    height: 785px;
    overflow: visible; /* Brands slider'ın görünmesi için */
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    transform: none !important; /* No parallax on slider to prevent text overlap */
    margin-bottom: 4rem;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    will-change: transform;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(220, 38, 38, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%),
        radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    z-index: 2;
    animation: overlayPulse 8s ease infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    color: var(--black);
    padding: 2rem;
    pointer-events: none;
}

.slide-content * {
    pointer-events: auto;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
    animation: slideInUp 0.8s ease-out;
    position: relative;
    z-index: 11;
    color: var(--primary-red);
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
    animation: slideInUp 1s ease-out;
    position: relative;
    z-index: 11;
    color: var(--gray);
    font-weight: 500;
}

.slide-button {
    animation: slideInUp 1.2s ease-out;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    position: relative;
    z-index: 11;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(220, 38, 38, 0.4);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-nav::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px;
}

.slider-prev::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: -2px;
    border-color: transparent #1a1a1a transparent transparent;
    border-width: 10px 14px 10px 0;
}

.slider-next::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 2px;
    border-color: transparent transparent transparent #1a1a1a;
    border-width: 10px 0 10px 14px;
}

.slider-nav span {
    display: none;
}

.slider-nav:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.slider-nav:hover.slider-prev::before {
    border-color: transparent var(--white) transparent transparent;
}

.slider-nav:hover.slider-next::before {
    border-color: transparent transparent transparent var(--white);
}

.slider-nav:active {
    transform: translateY(-50%) scale(1.0);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 4;
    height: 16px;
    line-height: 16px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--primary-red);
    border-color: var(--white);
    width: 32px;
    border-radius: 6px;
    height: 12px;
    margin: 0;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(220, 38, 38, 0.5),
        0 0 30px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-red);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ============================================
   Features Section
   ============================================ */

/* ============================================
   Brands Slider Section
   ============================================ */

.brands-slider-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

/* Compact brands slider directly below main slider */
.brands-slider-compact {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    width: 100%;
    z-index: 10;
}


.brands-slider-compact .brand-slide-content {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: none;
}

.brands-slider-compact .brand-slide-content:hover {
    transform: none;
    box-shadow: none;
}

.brands-slider-compact .brand-slide-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-slider-compact .brand-slide-logo img {
    max-height: 60px;
    max-width: 90%;
    object-fit: contain;
}

.brands-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.brands-slider-container {
    width: 100%;
    overflow: hidden;
}

.brands-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    transform: translateX(0%); /* Başlangıç pozisyonu */
    opacity: 1;
    visibility: visible;
}

.brand-slide {
    flex: 0 0 calc(100% / 5);
    min-width: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

.brand-slide-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.brand-slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(220, 38, 38, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.brand-slide-content:hover::before {
    left: 100%;
}

.brand-slide-content:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.25),
        0 0 40px rgba(220, 38, 38, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.brand-slide-logo {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.brand-slide-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.brand-slide-content:hover .brand-slide-logo img {
    filter: grayscale(0%);
}

.brand-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    border-radius: 10px;
}

.brand-slide-name {
    display: none;
}

.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-red) 20%, 
        var(--neon-red) 50%, 
        var(--primary-red) 80%, 
        transparent 100%);
    border-radius: 2px;
    animation: underlineGlow 3s ease infinite;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
        width: 100px;
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
        width: 150px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(228, 23, 23, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 0 40px rgba(220, 38, 38, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(220, 38, 38, 0.3),
        0 0 60px rgba(220, 38, 38, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--primary-red) 1000%, var(--dark-red) 50%, var(--neon-red) 10%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;

    transform-style: preserve-3d;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red), var(--primary-red));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(10px);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-card:hover .feature-icon {
    transform: rotateY(15deg) rotateX(5deg) scale(1.15) translateZ(20px);
    box-shadow: 
        0 20px 50px rgba(220, 38, 38, 0.4),
        0 0 30px rgba(220, 38, 38, 0.3);
    animation: iconPulse 2s ease infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 20px 50px rgba(220, 38, 38, 0.4),
            0 0 30px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 
            0 25px 60px rgba(220, 38, 38, 0.5),
            0 0 40px rgba(220, 38, 38, 0.4),
            0 0 80px rgba(220, 38, 38, 0.3);
    }
}

.feature-card h3 {
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   Impactful Stats Section
   ============================================ */

.impactful-stats-section {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.impactful-stats-right {
    background: var(--primary-red);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impactful-stats-vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.2;
    filter: grayscale(0%);
    display: block;
}

.vehicle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
    opacity: 0.1;
}

.vehicle-body {
    position: relative;
    width: 400px;
    height: 200px;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 40%, var(--primary-red) 40%, var(--primary-red) 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
}

.vehicle-body::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-red);
}

.vehicle-logo {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.vehicle-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.impactful-stats-container {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 500px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.impactful-stats-left {
    background: #2a2a2a;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.impactful-stats-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(220, 38, 38, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(220, 38, 38, 0.2) 1px, transparent 1px);
    background-size: 50% 50%;
    opacity: 0.5;
    pointer-events: none;
}

.impactful-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 700px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.impactful-stat-item {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    border-right: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.impactful-stat-item:nth-child(2n) {
    border-right: none;
}

.impactful-stat-item:nth-child(n+3) {
    border-bottom: none;
}

.impactful-stat-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.impactful-stat-icon i {
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-style: normal;
}

.impactful-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -1px;
}

.impactful-stat-label {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.5;
}


.impactful-stats-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.impactful-stats-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.impactful-stats-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.impactful-stats-description {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.9;
    font-weight: 400;
}

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

    .impactful-stats-left {
        padding: 3rem 2rem;
    }

    .impactful-stats-right {
        padding: 3rem 2rem;
    }

    .impactful-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impactful-stat-icon {
        font-size: 2.5rem;
        height: 70px;
    }

    .impactful-stat-icon i {
        width: 70px;
        height: 70px;
    }

    .impactful-stat-number {
        font-size: 2.5rem;
    }

    .impactful-stats-title {
        font-size: 2rem;
    }
}

/* ============================================
   About Preview Section
   ============================================ */

.about-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.about-preview .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 50px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-badge i {
    font-size: 1rem;
}

.about-title-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--black);
}

.title-highlight {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 3.5rem;
    display: inline-block;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.highlight-text {
    color: var(--primary-red);
    font-weight: 700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
    opacity: 0.3;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 6rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.image-placeholder-modern {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-red) 95%, var(--dark-red) 10%, var(--primary-red) 100%);
    background-size: 200% 200%;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.4),
        0 0 80px rgba(220, 38, 38, 0.2);
    animation: gradientMove 8s ease infinite;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.year-display {
    position: relative;
    z-index: 2;
    text-align: center;
}

.year-main {
    display: block;
    font-size: 8rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.year-subtitle {
    display: block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    animation: floatIcon 6s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}


/* ============================================
   Page Header
   ============================================ */

/* ============================================
   Modern Page Header (All Pages)
   ============================================ */

.page-header {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.page-header::after {
    display: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-red);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 0.5rem;
    font-weight: 400;
}

/* ============================================
   Legal Content Section
   ============================================ */

.content-section.legal-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.legal-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--dark-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-section p strong {
    color: var(--black);
    font-weight: 600;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section ul li::before {
    content: '•';
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.legal-section ul li strong {
    color: var(--black);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    color: var(--dark-red);
    border-bottom-color: var(--dark-red);
}

.legal-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-section table thead {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.legal-section table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.legal-section table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
    font-size: 0.95rem;
}

.legal-section table tbody tr:last-child td {
    border-bottom: none;
}

.legal-section table tbody tr:hover {
    background: rgba(220, 38, 38, 0.05);
}

.legal-update-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.legal-update-date p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.legal-update-date p strong {
    color: var(--black);
}

@media (max-width: 768px) {
    .legal-page-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }

    .legal-section table {
        font-size: 0.85rem;
    }

    .legal-section table th,
    .legal-section table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ============================================
   About Content Section
   ============================================ */

.about-content-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

/* ============================================
   About Tabs Section
   ============================================ */

.about-tabs-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    min-height: 60vh;
}

.about-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-red);
}

.tab-btn.active {
    color: var(--primary-red);
}

.tab-btn.active::after {
    width: 80%;
}

.tab-separator {
    color: #ddd;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.about-tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.about-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.about-text-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.about-text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
    border-radius: 2px;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-section p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-section p strong {
    color: var(--primary-red);
    font-weight: 700;
}

.about-detail {
    margin-bottom: 4rem;
}

.about-text-large {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.about-text-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.about-text-large h2 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.about-text-large h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
    border-radius: 2px;
}

.about-text-large p {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
    position: relative;
}

.about-text-large p strong {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.4);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.value-card h3 {
    color: var(--primary-red);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* ============================================
   Statistics Section
   ============================================ */

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, var(--primary-red) 100%);
    background-size: 200% 200%;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: statsGradient 10s ease infinite;
}

@keyframes statsGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.5s ease;
    display: inline-block;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   Timeline Section
   ============================================ */

.timeline-section {
    margin: 0;
    padding: 0;
    position: relative;
}

.about-text-content .timeline-section {
    margin: 0;
    padding: 0;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0.08) 100%);
    border-radius: 30px;
}

.timeline {
    position: relative;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        var(--primary-red) 0%, 
        rgba(220, 38, 38, 0.8) 25%,
        rgba(220, 38, 38, 0.6) 50%,
        rgba(220, 38, 38, 0.8) 75%,
        var(--primary-red) 100%);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 140px;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4444 50%, var(--dark-red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 
        0 10px 30px rgba(220, 38, 38, 0.4),
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 12px rgba(220, 38, 38, 0.2);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(220, 38, 38, 0.4),
            0 0 0 8px rgba(255, 255, 255, 1),
            0 0 0 12px rgba(220, 38, 38, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(220, 38, 38, 0.6),
            0 0 0 8px rgba(255, 255, 255, 1),
            0 0 0 16px rgba(220, 38, 38, 0.3);
    }
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 20px 50px rgba(220, 38, 38, 0.5),
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 16px rgba(220, 38, 38, 0.3);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(220, 38, 38, 0.1);
    border-left: 5px solid var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.timeline-content:hover::before {
    transform: scaleY(1);
}

.timeline-content:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.25),
        0 0 0 1px rgba(220, 38, 38, 0.2);
}

.timeline-content h3 {
    color: var(--primary-red);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title {
    color: var(--primary-red);
    text-shadow: none;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    border-radius: 3px;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #991b1b 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.cta-section .btn-secondary::before {
    display: none;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

/* ============================================
   Modern About Hero Section
   ============================================ */

.about-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f8f9fa 75%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23DC2626" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: none;
    letter-spacing: -1px;
}

@keyframes textShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.about-hero .hero-subtitle {
    font-size: 1.75rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

.about-hero .hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Products Section
   ============================================ */

.products-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-category:hover::before {
    transform: scaleX(1);
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 3.5rem;
    color: var(--primary-red);
}

.product-category h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-category p {
    color: var(--gray);
    line-height: 1.6;
}

.products-info {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.products-info h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.products-info p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   Contact Section (legacy - kept for safety)
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.contact-info h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-red);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   Modern Contact Split Page
   ============================================ */

.contact-page-body {
    background: #1F2937;
}

.contact-page-body .footer {
    margin-top: 0;
}

.contact-page-body .footer-map {
    display: none !important;
}

/* Tek blok: menü + sol içerik + harita aynı section */
.contact-split {
    --contact-bg:
        radial-gradient(circle at 72% 0%, rgba(220, 38, 38, 0.26), transparent 38%),
        radial-gradient(circle at 8% 80%, rgba(255, 255, 255, 0.04), transparent 42%),
        linear-gradient(155deg, #2F3848 0%, #343E4F 48%, #3A4454 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "nav nav"
        "left map";
    min-height: 100vh;
    margin: 0;
    background: var(--contact-bg);
}

.contact-page-body .contact-navbar {
    grid-area: nav;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 5;
    width: 100%;
    background: transparent !important;
    background-image: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.5rem 0;
}

.contact-page-body .contact-navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.92);
}

.contact-page-body .contact-navbar .nav-menu a:hover,
.contact-page-body .contact-navbar .nav-menu a.active {
    color: #ffffff;
}

.contact-page-body .contact-navbar .nav-menu a.active::after {
    background-color: var(--primary-red);
}

.contact-page-body .contact-navbar .nav-button {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.contact-page-body .contact-navbar .nav-button:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
}

.contact-page-body .contact-navbar .hamburger span {
    background: #fff;
}

.contact-page-body .contact-navbar .dropdown-menu {
    background: rgba(20, 24, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page-body .contact-navbar .dropdown-menu a {
    color: rgba(255, 255, 255, 0.88);
}

.contact-page-body .contact-navbar .dropdown-menu a:hover {
    color: #fff;
    background: rgba(220, 38, 38, 0.15);
}

.contact-split-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: transparent;
}

.contact-intro {
    position: relative;
    flex: 1 1 auto;
    padding: 1.75rem 3rem 2.5rem;
    color: #fff;
    overflow: hidden;
    background: transparent;
}

.contact-intro-bg {
    position: absolute;
    right: -8%;
    top: 8%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 40px rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.contact-intro-bg::before {
    content: '';
    position: absolute;
    inset: 55px;
    border-radius: 50%;
    border: 1px solid rgba(220, 38, 38, 0.22);
}

.contact-intro-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    animation: contactFadeUp 0.7s ease both;
}

.contact-split-right {
    grid-area: map;
    position: relative;
    background: #eef1f5;
    min-height: 520px;
    align-self: stretch;
}

@media (max-width: 968px) {
    .contact-page-body .contact-navbar .nav-right-section {
        background-color: rgba(20, 24, 32, 0.97);
        border-top-color: var(--primary-red);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
        top: 80px;
    }

    .contact-page-body .contact-navbar .nav-right-section .nav-menu a {
        color: rgba(255, 255, 255, 0.92);
    }
}
.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FCA5A5;
    font-weight: 600;
}

.contact-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--primary-red);
}

.contact-intro h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-company {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.contact-quick-block h2 {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.contact-quick-link {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.65rem;
    transition: color 0.2s ease;
}

.contact-quick-link i {
    color: var(--primary-red);
    margin-top: 0.2rem;
    width: 14px;
}

.contact-quick-link:hover {
    color: #fff;
}

.contact-hours {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hours i {
    color: #FCA5A5;
    margin-top: 0.15rem;
}

.contact-hours strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.contact-hours span {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-panel {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    padding: 2rem 3rem 2.25rem;
    animation: contactFadeUp 0.85s ease both;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.contact-alert-success {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.contact-alert-error {
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
}

.contact-line-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.contact-line-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-line-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-line-field label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 500;
}

.contact-line-field label span {
    color: #FEE2E2;
}

.contact-line-field input,
.contact-line-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 0.95rem;
    padding: 0.55rem 0;
    outline: none;
    border-radius: 0;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.contact-line-field input::placeholder,
.contact-line-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-line-field input:focus,
.contact-line-field textarea:focus {
    border-bottom-color: #fff;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 420px;
}

.contact-consent input {
    margin-top: 0.15rem;
    accent-color: #111;
}

.contact-consent a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: none;
    background: #111827;
    color: #fff;
    font: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.85rem 1.35rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

.contact-map-wrap {
    position: absolute;
    inset: 0;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.15) contrast(1.02);
}

.contact-branch-cards {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    max-width: 640px;
    animation: contactFadeUp 0.9s ease both;
}

.contact-branch-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1.05rem 1.1rem 0.95rem;
    box-shadow: 0 14px 40px rgba(15, 17, 21, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(15, 17, 21, 0.18);
}

.contact-branch-card.is-active {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 16px 42px rgba(220, 38, 38, 0.14);
}

.contact-branch-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.contact-branch-top h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #111827;
    font-weight: 800;
}

.contact-branch-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.76rem;
    color: #6B7280;
    font-weight: 600;
    line-height: 1.3;
}

.contact-branch-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-red);
    background: #FEE2E2;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.contact-branch-badge-depot {
    color: #1f2937;
    background: #e5e7eb;
}

.contact-branch-card ul {
    list-style: none;
    margin: 0 0 0.9rem;
    padding: 0;
}

.contact-branch-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
    color: #4B5563;
    font-size: 0.8rem;
    line-height: 1.4;
}

.contact-branch-card li i {
    color: var(--primary-red);
    width: 14px;
    margin-top: 0.15rem;
}

.contact-branch-card a {
    color: inherit;
    text-decoration: none;
}

.contact-branch-card a:hover {
    color: var(--primary-red);
}

.contact-branch-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-red) !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .contact-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "nav"
            "map"
            "left";
        min-height: auto;
    }

    .contact-split-right {
        min-height: 420px;
    }

    .contact-intro,
    .contact-form-panel {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 720px) {
    .contact-quick-grid,
    .contact-line-row {
        grid-template-columns: 1fr;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-submit-btn {
        justify-content: center;
    }

    .contact-intro {
        padding-top: 1.5rem;
    }

    .contact-branch-cards {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
        grid-template-columns: 1fr;
        max-width: none;
    }
}

.contact-quick-link strong {
    color: #fff;
    font-weight: 700;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-form-wrapper h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E5E7EB;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: #1F2937;
    color: var(--white);
    margin-top: 4rem;
}

.footer-main {
    padding: 2.5rem 0 1.5rem;
    background-color: #1F2937;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 2fr;
    gap: 1.5rem;
    align-items: start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1200px) {
    .footer-content {
        gap: 2rem;
    }
}

.footer-main .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .footer-main .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 768px) {
    .footer-main .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-section ul li i {
    color: var(--primary-red);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.footer-section ul li span {
    color: #D1D5DB;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #111827;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-nav span {
    color: #6B7280;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #374151;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer About Section */
.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    margin: 0;
    max-width: 100%;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.footer-logo {
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* Footer Contact Section */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact ul li:last-child {
    margin-bottom: 0;
}

.footer-contact ul li i {
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: var(--primary-red);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.footer-contact ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--primary-red);
}

.footer-contact ul li span {
    color: #D1D5DB;
    line-height: 1.6;
}

.footer-map {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
    display: block;
}

/* Footer Legal Section - KVKK */
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.footer-legal h4 {
    text-align: left;
    width: 100%;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.footer-legal ul li {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: flex-start;
}

.footer-legal ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-align: left;
}

.footer-legal ul li a:hover {
    color: var(--primary-red);
}

/* Footer Section Padding Reduction */
.footer-section {
    padding: 0;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .logo-image {
        height: 60px;
        max-width: 250px;
    }
    
    .logo {
        margin-left: 0;
    }
    
    .nav-right-section {
        margin-right: 0;
    }

    .nav-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-left: 0.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-right-section {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 2px solid var(--primary-red);
        gap: 1rem;
    }

    .nav-right-section.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-menu li.has-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-left: 2px solid var(--primary-red);
        padding-left: 1rem;
        background: transparent;
    }
    
    .dropdown-indicator {
        font-size: 0.75rem;
        width: 16px;
        height: 16px;
    }

    .slider-section {
        height: 600px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slider-nav {
        width: 48px;
        height: 48px;
    }

    .slider-prev::before {
        border-width: 8px 12px 8px 0;
        transform: translate(-50%, -50%);
        margin-left: -1px;
    }

    .slider-next::before {
        border-width: 8px 0 8px 12px;
        transform: translate(-50%, -50%);
        margin-left: 1px;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-title-modern {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    
    .image-placeholder-modern {
        height: 400px;
    }
    
    .year-main {
        font-size: 5rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    /* Tablet için brands grid */
    .brands-intro {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .brands-intro-text {
        font-size: 1rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .brand-card {
        padding: 1.25rem;
    }

    .brands-slider-section {
        padding: 3rem 0;
    }
    
    /* Mobil için brands grid */
    @media (max-width: 768px) {
        .brands-intro {
            padding: 1rem 0;
            margin-bottom: 1.5rem;
        }
        
        .brands-intro-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .brands-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .brand-card {
            padding: 1rem;
        }
        
        .brand-logo {
            height: 120px;
            margin-bottom: 0.75rem;
        }
        
        .brand-info h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .brand-description {
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
            min-height: 35px;
        }
    }

    .brand-slide {
        flex: 0 0 calc(100% / 3);
    }

    .brand-slide-logo {
        height: 100px;
    }

    .brand-slide-name {
        font-size: 0.9rem;
    }

    .about-hero {
        padding: 4rem 0;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .about-hero .hero-description {
        font-size: 1.1rem;
    }

    .about-text-large {
        padding: 2.5rem;
        border-radius: 20px;
    }

    .about-text-large h2 {
        font-size: 2rem;
    }

    .about-text-large p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        padding-left: 120px;
    }

    .timeline-year {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        padding-left: 90px;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-hero {
        padding: 3rem 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-hero .hero-description {
        font-size: 1rem;
    }
}

/* ============================================
   Scroll to Top Button
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 
        0 8px 24px rgba(220, 38, 38, 0.4),
        0 0 20px rgba(220, 38, 38, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(220, 38, 38, 0.5),
        0 0 30px rgba(220, 38, 38, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   Floating Action Buttons
   ============================================ */

.floating-actions {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.fab-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fab-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.fab-button:hover::before {
    width: 300px;
    height: 300px;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(37, 211, 102, 0.5),
        0 0 30px rgba(37, 211, 102, 0.4);
}

.fab-phone {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.fab-phone:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(220, 38, 38, 0.5),
        0 0 30px rgba(220, 38, 38, 0.4);
}

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, var(--primary-red) 100%);
    background-size: 200% 200%;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: newsletterGradient 10s ease infinite;
}

@keyframes newsletterGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group button {
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-input-group button i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }
    
    .floating-actions {
        bottom: 1rem;
        left: 1rem;
    }
    
    .fab-button {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .brands-slider-section {
        padding: 2rem 0;
    }

    .brand-slide {
        flex: 0 0 calc(100% / 2);
    }

    .brand-slide-logo {
        height: 80px;
    }

    .brand-slide-name {
        font-size: 0.85rem;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .about-hero {
        padding: 3rem 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .about-hero .hero-description {
        font-size: 1rem;
    }

    .about-text-large {
        padding: 2rem;
        border-radius: 20px;
    }

    .about-text-large h2 {
        font-size: 1.75rem;
    }

    .about-text-large p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        padding-left: 90px;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}

/* ============================================
   Team Section - Slider
   ============================================ */

.team-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.department-slider-wrapper {
    margin-bottom: 4rem;
}

.department-title {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
}

.department-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    border-radius: 2px;
}

.team-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.team-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    width: 100%;
    justify-content: flex-start;
}

.team-card {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    min-width: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.team-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
}

.team-info {
    padding: 1.25rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-position {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.slider-btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: var(--dark-red);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-red);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   Brands Section
   ============================================ */

.brands-section {
    padding: 3rem 0 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.brands-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.brands-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
}

.brands-intro-text strong {
    color: var(--primary-red);
    font-weight: 600;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 0;
}

.brand-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: none;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.brand-card * {
    text-decoration: none !important;
}

.brand-card:hover {
    text-decoration: none !important;
}

.brand-card:hover * {
    text-decoration: none !important;
}

.brand-card[href="#"] {
    cursor: default;
    pointer-events: none;
}

.brand-card::before {
    display: none;
}

.brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.brand-card:hover::after {
    content: '↗';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
}

.brand-logo {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    padding: 0.5rem;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    border-radius: 5px;
}

.brand-info {
    width: 100%;
}

.brand-info h3 {
    color: var(--black);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-description {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 40px;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-content {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    font-size: 1.2rem;
}

/* ============================================
   Blog Section
   ============================================ */

.blog-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.blog-image {
    width: 100%;
    height: clamp(220px, 30vw, 320px);
    overflow: hidden;
    background-color: var(--light-gray);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
}

.blog-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.blog-content h2 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* ============================================
   Blog Post Section
   ============================================ */

.blog-post-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.blog-post-header h1 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    gap: 2rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.blog-post-meta strong {
    color: var(--black);
}

.blog-post-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    color: var(--black);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    color: var(--primary-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-post-body h2 {
    font-size: 2rem;
}

.blog-post-body h3 {
    font-size: 1.5rem;
}

.blog-post-body h4 {
    font-size: 1.25rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
    color: var(--black);
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-post-body figure {
    margin: 2rem 0;
    text-align: center;
}

.blog-post-body figure img {
    margin: 0;
}

.blog-post-body figure figcaption {
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

.blog-post-body iframe {
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.blog-post-body table th,
.blog-post-body table td {
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    text-align: left;
}

.blog-post-body table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--black);
}

.blog-post-body blockquote {
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: var(--gray);
    font-style: italic;
}

.blog-post-body pre {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-post-body code {
    background-color: var(--light-gray);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-post-body pre code {
    background-color: transparent;
    padding: 0;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
}

.blog-post-body a {
    color: var(--primary-red);
    text-decoration: underline;
}

.blog-post-body a:hover {
    color: var(--dark-red);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.sidebar-widget h3 {
    color: var(--primary-red);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: var(--primary-red);
}

.post-date {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
}

@media (max-width: 1400px) {
    .team-card {
        flex: 0 0 calc((100% - 3rem) / 3);
    }
}

@media (max-width: 1024px) {
    .team-card {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
    
    .team-slider-container {
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .blog-post-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 0 100%;
    }
    
    .department-title {
        font-size: 1.5rem;
    }
    
    .team-image {
        height: 250px;
    }
}

/* ============================================
   Blog Slider Section
   ============================================ */
.blog-slider-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-slider-section .section-title::after {
    display: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1rem;
    font-weight: 400;
}

.blog-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.blog-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.blog-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
}

.blog-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-slide-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

.blog-slide-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.blog-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-slide-link:hover .blog-slide-image img {
    transform: scale(1.1);
}

.blog-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: var(--primary-red);
    font-size: 3rem;
}

.blog-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-slide-link:hover .blog-slide-overlay {
    opacity: 1;
}

.blog-slide-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-slide-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.blog-slide-date,
.blog-slide-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-slide-date i,
.blog-slide-author i {
    color: var(--primary-red);
    font-size: 0.875rem;
}

.blog-slide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-slide-link:hover .blog-slide-title {
    color: var(--primary-red);
}

.blog-slide-excerpt {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-slide-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.blog-slide-link:hover .blog-slide-read-more {
    gap: 0.75rem;
}

.blog-slide-read-more i {
    transition: transform 0.3s ease;
}

.blog-slide-link:hover .blog-slide-read-more i {
    transform: translateX(4px);
}

.blog-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-red);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.blog-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.blog-slider-prev {
    left: 0;
}

.blog-slider-next {
    right: 0;
}

.blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.blog-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-slider-dot:hover {
    background: var(--primary-red);
    transform: scale(1.2);
}

.blog-slider-dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 1200px) {
    .blog-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .blog-slider-container {
        padding: 0 4rem;
    }
}

@media (max-width: 968px) {
    .blog-slider-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .blog-slider-container {
        padding: 0 3.5rem;
    }
    
    .blog-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .blog-slide-content {
        padding: 1.5rem;
    }
    
    .blog-slide-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .blog-slider-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .blog-slider-container {
        padding: 0 3rem;
    }
    
    .blog-slide {
        flex: 0 0 100%;
    }
    
    .blog-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .blog-slide-image {
        height: 200px;
    }
    
    .blog-slide-content {
        padding: 1.25rem;
    }
    
    .blog-slide-title {
        font-size: 1.15rem;
    }
    
    .blog-slide-excerpt {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-slider-container {
        padding: 0 2.5rem;
    }
    
    .blog-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Vehicle Categories Section
   ============================================ */

.vehicle-categories-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.vehicle-categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vehicle-categories-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.world-map-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    height: 500px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.world-map-leaflet {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0;
}

/* Leaflet custom styles */
.world-map-leaflet .leaflet-container {
    background: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

.world-map-leaflet .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.world-map-leaflet .leaflet-control-zoom a {
    background-color: #ffffff;
    color: var(--primary-red);
    border: none;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.world-map-leaflet .leaflet-control-zoom a:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

.world-map-leaflet .leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.world-map-leaflet .leaflet-tooltip {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.world-map-leaflet .leaflet-tooltip-top:before {
    border-top-color: var(--primary-red);
}

/* Custom country marker */
.leaflet-country-marker {
    background: transparent;
    border: none;
}

.country-marker-pin {
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.5);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.vehicle-categories-content {
    text-align: center;
    margin-bottom: 2.25rem;
}

.vehicle-categories-tagline {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 0.65rem;
    font-weight: 500;
}

.tagline-highlight {
    color: var(--primary-red);
    font-weight: 700;
}

.vehicle-categories-tagline .tagline-highlight {
    color: var(--primary-red);
}

.vehicle-categories-title {
    font-size: 1.85rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.3;
}

.vehicle-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
}

.vehicle-category-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    max-height: 360px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.vehicle-category-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.vehicle-category-card:hover .vehicle-category-image {
    transform: scale(1.06);
}

.vehicle-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.72) 100%
    );
    pointer-events: none;
}

.vehicle-category-arrow {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.vehicle-category-card:hover .vehicle-category-arrow {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.vehicle-category-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.vehicle-category-overlay .category-card-title {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.vehicle-category-overlay .category-small-icon {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

/* legacy selectors kept empty/reset if referenced elsewhere */
.category-large-icon,
.category-card-info,
.category-card-dot {
    display: none;
}

@media (max-width: 968px) {
    .vehicle-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 360px;
    }

    .vehicle-category-card {
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .vehicle-categories-title {
        font-size: 1.5rem;
    }

    .world-map-container {
        height: 350px;
        padding: 0;
    }
    
    .world-map-leaflet {
        min-height: 350px;
    }
    
    .world-map-leaflet .leaflet-control-zoom a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }

    /* About Tabs Responsive */
    .about-tabs-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-separator {
        display: none;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 2px solid #eee;
    }

    .tab-btn.active {
        border-bottom-color: var(--primary-red);
    }

    .tab-btn::after {
        display: none;
    }

    .about-text-content {
        padding: 2rem 1.5rem;
    }

    .about-text-content h2 {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-tabs-section {
        padding: 2rem 0 4rem;
    }

    .about-tabs-nav {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .tab-btn {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .about-text-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .about-text-content h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   Medyada Biz - News/Magazine Page Styles
   ============================================ */

/* News Hero Section */
.news-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f0f4f8 75%, #ffffff 100%);
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.news-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.news-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(220, 38, 38, 0.02) 50px,
            rgba(220, 38, 38, 0.02) 52px
        );
    z-index: 0;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.news-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.news-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.35), 0 0 0 0 rgba(220, 38, 38, 0.4);
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.news-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.45);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.35), 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(220, 38, 38, 0.5), 0 0 0 8px rgba(220, 38, 38, 0);
    }
}

.news-badge i {
    font-size: 1.1rem;
}

.news-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #991b1b 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
}

.news-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    border-radius: 2px;
}

.news-hero-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.news-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red);
    border: 2px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-hero-date:hover {
    border-color: var(--primary-red);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

.news-hero-date i {
    color: var(--primary-red);
    font-size: 1rem;
}

/* Featured News Section */
.featured-news-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.news-section-header-top {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.news-section-title-top {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.5rem 0 1rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #991b1b 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.news-section-title-top::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    border-radius: 2px;
}

.news-section-subtitle-top {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.featured-news-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-article {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

.featured-article-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-article:hover .featured-article-image img {
    transform: scale(1.1);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.article-category {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.featured-article-content {
    padding: 2.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-date,
.article-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.article-date i,
.article-source i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.featured-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.featured-article:hover .featured-article-title {
    color: var(--primary-red);
}

.featured-article-excerpt {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.article-read-more:hover {
    gap: 1rem;
}

.article-read-more i {
    transition: transform 0.3s ease;
}

.article-read-more:hover i {
    transform: translateX(5px);
}

/* News Sidebar */
.featured-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-sidebar-header {
    margin-bottom: 1rem;
}

.news-sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.news-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
    border-radius: 2px;
}

.sidebar-article {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.sidebar-article:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.sidebar-article-image {
    flex: 0 0 120px;
    height: 120px;
    overflow: hidden;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sidebar-article:hover .sidebar-article-image img {
    transform: scale(1.15);
}

.sidebar-article-content {
    flex: 1;
    padding: 1rem 1rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-article-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.sidebar-article-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-article:hover .sidebar-article-content h4 {
    color: var(--primary-red);
}

/* News Grid Section */
.news-grid-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.news-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.news-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    border-radius: 2px;
}

.news-section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.15);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-card-link {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-link {
    transform: scale(1);
}

.news-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.news-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.news-card-date i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

.news-card-category {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.news-card-excerpt {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.news-card-read-more:hover {
    gap: 0.75rem;
}

.news-card-read-more i {
    transition: transform 0.3s ease;
}

.news-card-read-more:hover i {
    transform: translateX(5px);
}

/* Newsletter Section */
.news-newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
}

.news-newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.news-newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.news-newsletter-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.news-newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.news-newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.news-newsletter-input-group {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.news-newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    color: var(--black);
}

.news-newsletter-input-group input::placeholder {
    color: var(--gray);
}

.news-newsletter-input-group .btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .featured-news-wrapper {
        grid-template-columns: 1fr;
    }

    .featured-news-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .sidebar-article {
        flex-direction: column;
    }

    .sidebar-article-image {
        flex: 0 0 100%;
        height: 150px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .featured-news-section {
        padding: 3rem 0 4rem;
    }

    .news-section-header-top {
        margin-bottom: 3rem;
        padding-top: 1.5rem;
    }

    .news-section-title-top {
        font-size: 2.5rem;
    }

    .news-section-subtitle-top {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .news-badge {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .featured-article-image {
        height: 350px;
    }

    .featured-article-title {
        font-size: 2rem;
    }

    .news-section-title {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-news-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .featured-news-section {
        padding: 2rem 0 4rem;
    }

    .news-section-header-top {
        margin-bottom: 2.5rem;
        padding-top: 1rem;
    }

    .news-section-title-top {
        font-size: 2rem;
    }

    .news-section-title-top::after {
        width: 60px;
        height: 3px;
    }

    .news-section-subtitle-top {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .news-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .featured-article-content {
        padding: 2rem;
    }

    .featured-article-title {
        font-size: 1.75rem;
    }

    .news-newsletter-content h2 {
        font-size: 2rem;
    }

    .news-newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .news-newsletter-input-group input,
    .news-newsletter-input-group .btn {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .news-hero-title {
        font-size: 2rem;
    }

    .news-section-title {
        font-size: 2rem;
    }

    .featured-article-image {
        height: 250px;
    }

    .news-card-image {
        height: 200px;
    }
}

/* ============================================
   Media News Detail Page Styles
   ============================================ */

.news-detail-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.news-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.news-detail-breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-detail-breadcrumb a:hover {
    color: var(--dark-red);
}

.news-detail-breadcrumb span {
    color: var(--gray);
}

.news-detail-section {
    padding: 4rem 0;
    background: var(--white);
}

.news-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-detail-article {
    background: var(--white);
}

.news-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.news-detail-date,
.news-detail-category,
.news-detail-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.news-detail-date i,
.news-detail-source i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.news-detail-category {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #991b1b 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-detail-image {
    width: 100%;
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-detail-excerpt {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    font-weight: 500;
}

.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 3rem;
}

.news-detail-content p {
    margin-bottom: 1.5rem;
}

.news-detail-content h2,
.news-detail-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.news-detail-content h2 {
    font-size: 2rem;
}

.news-detail-content h3 {
    font-size: 1.5rem;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.news-detail-content li {
    margin-bottom: 0.75rem;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.news-detail-external-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.sidebar-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-news-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-news-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.sidebar-news-link:hover {
    transform: translateX(5px);
}

.sidebar-news-image {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sidebar-news-link:hover .sidebar-news-image img {
    transform: scale(1.1);
}

.sidebar-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-news-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.sidebar-news-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    transition: color 0.3s ease;
    margin: 0;
}

.sidebar-news-link:hover .sidebar-news-content h4 {
    color: var(--primary-red);
}

@media (max-width: 968px) {
    .news-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-detail-title {
        font-size: 2.5rem;
    }

    .news-detail-excerpt {
        font-size: 1.1rem;
    }

    .news-detail-content {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .news-detail-section {
        padding: 2rem 0;
    }

    .news-detail-title {
        font-size: 2rem;
    }

    .news-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .news-detail-image {
        border-radius: 15px;
    }
}

/* ============================================
   ATR Page Styles
   ============================================ */

.atr-hero-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3f5f 50%, #1a1f3a 100%);
    position: relative;
    padding: 3rem 0 0;
    overflow: hidden;
}

.atr-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.atr-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.atr-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 1.5rem;
}

.atr-hero-left {
    color: var(--white);
}

.atr-logos {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    align-items: center;
}

.atr-logo-item {
    position: relative;
}

.atr-logo-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 8px;
}

.atr-logo-rotas {
    background: var(--white);
    color: var(--primary-red);
}

.atr-logo-rotas-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 72px;
}

.atr-logo-rotas-img {
    height: 52px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.atr-logo-atr {
    background: var(--white);
    color: var(--black);
    font-size: 1.2rem;
    padding: 4px;
}

.atr-logo-text {
    font-weight: 800;
}

/* ATR logos as images */
.atr-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.atr-stats-logo-img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.atr-stats-atr-circle {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    padding: 6px;
}

.atr-hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 500px;
    margin-top: 1rem;
}

.atr-hero-right {
    position: relative;
}

.atr-slider-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.atr-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.atr-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9f7a 100%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 8rem;
}

.atr-content-stats-section {
    padding: 6rem 0;
    background: var(--white);
}

.atr-content-stats-section .container {
    max-width: 1600px;
    padding: 0 3rem;
}

.atr-content-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    min-height: auto;
    width: 100%;
}

.atr-content-section {
    background: var(--white);
    padding: 0;
}

.atr-content-wrapper {
    max-width: 100%;
    margin: 0;
}

.atr-content-wrapper h1 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.atr-content-wrapper p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.atr-stats-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3f5f 50%, #1a1f3a 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-self: start;
}

.atr-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.atr-stats-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.atr-stats-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

.atr-stats-logo-rotas {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
}

.atr-stats-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.atr-stats-logo-atr {
    display: flex;
    align-items: center;
    justify-content: center;
}

.atr-stats-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.4;
}

.atr-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.atr-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 0.6rem;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 75px;
}

.atr-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.atr-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.atr-stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--white);
    line-height: 1.2;
}

.atr-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 968px) {
    .atr-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .atr-slider-container {
        height: 300px;
    }

    .atr-content-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .atr-stats-section {
        padding: 3rem 2rem;
    }

    .atr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .atr-content-wrapper h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .atr-hero-section {
        padding: 4rem 0 0;
    }

    .atr-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .atr-slider-container {
        height: 250px;
    }

    .atr-content-stats-wrapper {
        gap: 2rem;
    }

    .atr-stats-section {
        padding: 2rem 1.5rem;
    }

    .atr-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .atr-content-wrapper h1 {
        font-size: 1.75rem;
    }

    .atr-stats-logo-text {
        font-size: 1.5rem;
    }

    .atr-stat-item {
        padding: 1.2rem 0.8rem;
    }

    .atr-stat-icon {
        font-size: 1.5rem;
    }

    .atr-stat-value {
        font-size: 1.3rem;
    }

    .atr-stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   Popup Modal Styles
   ============================================ */

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.popup-content {
    position: relative;
    z-index: 10001;
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-header {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.popup-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

/* Popup type specific header colors */
.popup-header-recall {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
}

.popup-header-query {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.popup-header-advertisement {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.popup-header-announcement {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.popup-body {
    padding: 2.5rem;
    flex: 1;
}

.popup-main-content {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.popup-main-content p {
    margin-bottom: 1rem;
}

.popup-main-content strong {
    color: var(--black);
    font-weight: 700;
}

.popup-query-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.popup-query-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-query-form label {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.popup-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.popup-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.popup-query-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.popup-query-result {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid #e5e7eb;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.query-result-single {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.6;
}

.query-result-single span {
    display: block;
    width: 100%;
}

.popup-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: var(--white);
}

.popup-btn-primary:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.popup-btn-secondary {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: var(--white);
}

.popup-btn-secondary:hover {
    background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.popup-footer {
    padding: 1.5rem 2.5rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
}

.popup-btn-close {
    background: #6B7280;
    color: var(--white);
    padding: 0.75rem 2rem;
}

.popup-btn-close:hover {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

/* Responsive Popup Styles */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .popup-header {
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .popup-body {
        padding: 1.5rem;
    }

    .popup-query-buttons {
        flex-direction: column;
    }

    .popup-btn {
        width: 100%;
    }

    .popup-footer {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .popup-header {
        padding: 1.25rem;
    }

    .popup-header h2 {
        font-size: 1.25rem;
    }

    .popup-body {
        padding: 1.25rem;
    }

    .popup-main-content {
        font-size: 0.95rem;
    }
}


/* ============================================
   Cookie Consent (KVKK)
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    background: #111827;
    color: #F9FAFB;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.5rem;
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.cookie-consent-banner.is-visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.cookie-consent-text p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #D1D5DB;
    margin: 0;
}

.cookie-consent-text a {
    color: #FCA5A5;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-primary {
    background: var(--primary-red);
    color: #fff;
}

.cookie-btn-primary:hover {
    background: var(--dark-red);
}

.cookie-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #6B7280;
}

.cookie-btn-outline:hover {
    border-color: #F9FAFB;
}

.cookie-btn-ghost {
    background: #374151;
    color: #F9FAFB;
}

.cookie-btn-ghost:hover {
    background: #4B5563;
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-settings-modal[hidden] {
    display: none !important;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.cookie-settings-panel {
    position: relative;
    width: min(560px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header,
.cookie-settings-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-settings-footer {
    border-bottom: none;
    border-top: 1px solid #E5E7EB;
    justify-content: flex-end;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #111827;
}

.cookie-settings-close {
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #6B7280;
}

.cookie-settings-body {
    padding: 1.25rem;
}

.cookie-settings-intro {
    color: #4B5563;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.cookie-category {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
}

.cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.cookie-category p {
    margin: 0;
    font-size: 0.85rem;
    color: #6B7280;
}

.cookie-badge {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    background: #FEE2E2;
    color: var(--primary-red);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-weight: 600;
    vertical-align: middle;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #D1D5DB;
    border-radius: 26px;
    transition: 0.2s;
}

.cookie-slider:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.2s;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--primary-red);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-prefs-fab {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 10040;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #111827;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.cookie-prefs-fab:hover {
    background: var(--primary-red);
}

.cookie-prefs-fab[hidden] {
    display: none !important;
}

.cookie-embed-placeholder {
    background: #1F2937;
    color: #D1D5DB;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cookie-embed-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0.75rem 0 1rem;
    font-size: 0.88rem;
    color: #4B5563;
    line-height: 1.45;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-red);
}

.form-consent a {
    color: var(--primary-red);
    text-decoration: underline;
}

/* E-bülten (kırmızı zemin): linkler beyaz olmalı */
.newsletter-section .form-consent,
.news-newsletter-section .form-consent {
    color: rgba(255, 255, 255, 0.95);
}

.newsletter-section .form-consent a,
.news-newsletter-section .form-consent a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.newsletter-section .form-consent a:hover,
.news-newsletter-section .form-consent a:hover {
    color: #FEE2E2;
}

body.cookie-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-consent-actions .cookie-btn {
        flex: 1 1 auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-prefs-fab {
        bottom: 0.75rem;
        left: 0.75rem;
    }
}
