/* ===== IŞIKSOY OTOMOTİV - MODERN & RESPONSIVE CSS ===== */

/* ===== DEĞİŞKENLER VE TEMEL AYARLAR ===== */
:root {
    --primary-color: #3f556a;
    --secondary-color: #cfd3d4;
    --accent-color: #2c3e50;
    --white-color: #ffffff;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-color: #555;
    --heading-color: #222;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    position: relative;
    padding-top: 0;
}

body.menu-open {
    overflow: hidden;
}

/* Container - Responsive */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Buttons - Modern & Responsive */
.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 40px);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    box-shadow: var(--box-shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(63, 85, 106, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    min-width: 200px;
}

.btn-white:hover {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.header-top {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    color: var(--secondary-color);
    padding: 12px 0;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    border-bottom: 2px solid rgba(63, 85, 106, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.header-top .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 20px);
    align-items: center;
}

.header-top .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(63, 85, 106, 0.1);
    border: 1px solid rgba(63, 85, 106, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.header-top .contact-info span:hover {
    background: rgba(63, 85, 106, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.header-top .contact-info i {
    color: var(--primary-color);
    font-size: 14px;
}

.header-top .contact-info a {
    color: var(--secondary-color);
    transition: var(--transition);
    font-weight: 500;
}


/* Header Top - Contact Info */
.header-top {
    background: var(--primary-color);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-top .contact-info span {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top .contact-info a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.header-top .contact-info a:hover {
    color: var(--secondary-color);
}

/* Main Header - Fixed & Responsive */
.main-header {
    background: var(--white-color);
    padding: clamp(8px, 1.5vw, 16px) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: none; /* Başta çizgi yok */
}

.main-header.scrolled {
    padding: clamp(6px, 1.2vw, 12px) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-color); /* Scroll sonrası çizgi belirir */
}



.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: clamp(50px, 8vw, 70px);
    width: auto;
    transition: var(--transition);
}

.main-header.scrolled .logo img {
    height: clamp(40px, 7vw, 55px);
}

/* Navigation - Desktop */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 12px);
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 6px 10px;
    position: relative;
    display: block;
    transition: var(--transition);
    border-radius: 6px;
    font-size: 0.9rem;
}


.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(63, 85, 106, 0.08);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Active linkin her zaman efektli olması - scroll sonrası da korunsun */
.main-nav ul li a.active {
    color: var(--primary-color) !important;
    background: rgba(63, 85, 106, 0.08) !important;
}

.main-nav ul li a.active::after {
    width: 100% !important;
}

/* Scrolled durumunda da active efekti korunsun - !important ile öncelik ver */
.main-header.scrolled .main-nav ul li a.active::after {
    width: 100% !important;
}

.main-header.scrolled .main-nav ul li a.active {
    color: var(--primary-color) !important;
    background: rgba(63, 85, 106, 0.08) !important;
}

/* Special Service Button */
.special-service-btn {
    background: var(--white-color) !important;
    color: var(--dark-color) !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(63, 85, 106, 0.1) !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.special-service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 85, 106, 0.08), transparent);
    transition: left 0.4s ease;
}

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

.special-service-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(63, 85, 106, 0.2) !important;
    border-color: var(--primary-color) !important;
}

.special-service-btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.special-service-btn:hover i {
    transform: translateX(1px);
}

.special-service-btn::after {
    display: none !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown active state when submenu item is active */
.dropdown .dropdown-menu li a.active {
    color: var(--primary-color) !important;
    background: rgba(63, 85, 106, 0.08) !important;
}

.dropdown .dropdown-toggle.active,
.dropdown .dropdown-toggle.active:hover {
    color: var(--primary-color) !important;
    background: rgba(63, 85, 106, 0.08) !important;
}

.dropdown .dropdown-toggle.active::after {
    width: 100% !important;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white-color);
    border: 2px solid rgba(63, 85, 106, 0.15);
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow-lg);
    margin-top: 15px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 30px;
    white-space: nowrap;
    transition: var(--transition);
    color: var(--dark-color);
    font-weight: 500;
    display: block;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    background: rgba(63, 85, 106, 0.08);
    padding-left: 40px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before {
    top: -9px;
}

.hamburger::after {
    bottom: -9px;
}

.mobile-menu-btn.is-active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.is-active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(63, 85, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(63, 85, 106, 0.3);
}

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

.why-us-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.why-us-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* ===== HERO SECTION (Ana Karşılama) - Modern Design ===== */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh; /* Small viewport height - mobil için */
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(51, 65, 85, 0.8) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-text-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-badge span {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-badge span:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: slideInUp 0.8s ease-out 0.4s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hero-title-line {
    display: block;
    width: 100%;
}

.hero-highlight {
    background: linear-gradient(135deg, #4a6fa5, #6b9bd2, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    position: relative;
    font-weight: 800;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #4a6fa5, #6b9bd2, #4a5568);
    border-radius: 2px;
    opacity: 0.8;
    animation: gradientShift 3s ease infinite;
}

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

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
    color: #cbd5e1;
    animation: slideInUp 0.8s ease-out 0.6s both;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 4vw, 25px);
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.hero .btn {
    margin: 10px;
}

.hero .btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero .btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
        line-height: 1.1;
        gap: 2px;
    }
    
    .hero-title-line {
        text-align: center;
    }
    
    .hero-highlight {
        font-weight: 800;
    }
    
    .hero-highlight::after {
        height: 2px;
        bottom: -1px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        gap: 1px;
    }
}

/* ===== ABOUT SECTION (Hakkımızda) ===== */
.about-section {
    background: var(--light-gray);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    transform-style: preserve-3d;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(63, 85, 106, 0.8), rgba(44, 62, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-slow);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white-color);
    padding: 20px;
}

.overlay-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 10px;
    color: var(--white-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--secondary-color);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.about-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.about-features {
    list-style: none;
    margin: 25px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    padding: 12px;
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.about-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(63, 85, 106, 0.15);
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===== BRANDS SECTION (Markalar) ===== */
.brands-section {
    background: var(--white-color);
    padding: clamp(50px, 8vw, 80px) 0;
    position: relative;
}

/* ===== MODERN PAGE HEADER STYLES ===== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 30%, #34495e 70%, var(--accent-color) 100%);
    padding: clamp(100px, 15vw, 140px) 0 clamp(60px, 10vw, 80px);
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    background-size: 200% 200%;
    animation: modernGradientShift 8s ease infinite;
}

@keyframes modernGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
    100% { background-position: 50% 0%; }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/parcalarButunu.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

/* İş Ortakları Sayfa Banner */
.isOrtaklari-page .page-header::before {
    background: url('images/isOrtaklariBanner.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

/* Hakkımızda Sayfa Banner */
.hakkimizda-page .page-header::before {
    background: url('images/hakkimizdaBanner.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

/* Kampanyalar Sayfa Banner */
.kampanyalar-page .page-header::before {
    background: url('images/parcalarButunu.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

/* SSS Sayfa Banner */
.sss-page .page-header::before,
.page-header.sss-hero::before {
    background: url('images/sssBanner.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
    background-size: 20px 20px;
    animation: checkerboardMove 20s linear infinite;
    z-index: 0;
}

@keyframes checkerboardMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--white-color);
    margin-bottom: 20px;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.6);
    animation: titleEntrance 1.2s ease-out;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--white-color), transparent);
    animation: titleUnderline 2s ease-out 0.5s both;
}

@keyframes titleEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleUnderline {
    from { width: 0; }
    to { width: 100px; }
}

/* Modern Breadcrumb Styling */
.breadcrumb {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    padding: 12px 25px;
    border-radius: 25px;
    margin-bottom: 30px;
    animation: breadcrumbSlide 1s ease-out 0.8s both;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.breadcrumb a {
    color: var(--white-color);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.breadcrumb a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.breadcrumb span {
    color: #FFD700;
    font-weight: 700;
    margin: 0 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Page Header Description */
.page-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: descriptionFade 1s ease-out 1s both;
    line-height: 1.6;
    font-weight: 500;
}

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

/* Modern Page Header Social & Contact */
.page-header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    animation: socialFade 1s ease-out 1.2s both;
}

.page-header-social-icons {
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-header-social-icons a:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-header-phone {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.page-header-phone:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Social & Phone */
@media (max-width: 768px) {
    .page-header-social {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-header-social-icons {
        gap: 12px;
        padding: 12px 20px;
    }
    
    .page-header-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-header-phone {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(63, 85, 106, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

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

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    position: relative;
    background: var(--white-color);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    box-shadow: 0 5px 20px rgba(63, 85, 106, 0.08);
    border: 2px solid rgba(63, 85, 106, 0.05);
    transition: all 0.3s ease;
    cursor: default;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 85, 106, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: clamp(60px, 8vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) brightness(1.1);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-name {
    position: relative;
    z-index: 2;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    transition: color 0.3s ease;
}

/* Partner Card Hover Effects */
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(63, 85, 106, 0.15);
    border-color: var(--primary-color);
}

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

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.partner-card:hover .partner-name {
    color: var(--primary-color);
}

/* Premium Brands Highlight */
.partner-card.premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(63, 85, 106, 0.1);
    box-shadow: 0 8px 25px rgba(63, 85, 106, 0.1);
}

.partner-card.premium .partner-logo img {
    filter: grayscale(10%) brightness(1.05);
    opacity: 0.9;
}

.partner-card.premium:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(63, 85, 106, 0.2);
}

/* Partner Animation on Scroll */
.partner-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpPartner 0.6s ease forwards;
}

.partner-card:nth-child(1) { animation-delay: 0.05s; }
.partner-card:nth-child(2) { animation-delay: 0.1s; }
.partner-card:nth-child(3) { animation-delay: 0.15s; }
.partner-card:nth-child(4) { animation-delay: 0.2s; }
.partner-card:nth-child(5) { animation-delay: 0.25s; }
.partner-card:nth-child(6) { animation-delay: 0.3s; }
.partner-card:nth-child(7) { animation-delay: 0.35s; }
.partner-card:nth-child(8) { animation-delay: 0.4s; }
.partner-card:nth-child(9) { animation-delay: 0.45s; }
.partner-card:nth-child(10) { animation-delay: 0.5s; }
.partner-card:nth-child(11) { animation-delay: 0.55s; }
.partner-card:nth-child(12) { animation-delay: 0.6s; }
.partner-card:nth-child(13) { animation-delay: 0.65s; }
.partner-card:nth-child(14) { animation-delay: 0.7s; }
.partner-card:nth-child(15) { animation-delay: 0.75s; }
.partner-card:nth-child(16) { animation-delay: 0.8s; }

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

/* Partners Grid Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 40px;
    }
    
    .partner-card {
        padding: 20px 15px;
    }
    
    .partner-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
    
    .partner-card {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .partner-logo {
        height: 45px;
        margin-bottom: 10px;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
}

/* ===== MODERN BRANDS GRID SECTION ===== */
.brands-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(50px, 8vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.brands-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(63, 85, 106, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

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

.brands-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(15px, 2.5vw, 25px);
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Card Styles - Clean and Simple */
.brand-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    cursor: pointer;
}

.brand-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border: 2px solid rgba(63, 85, 106, 0.12);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    will-change: box-shadow;
    box-sizing: border-box;
}

.brand-logo {
    position: relative;
    z-index: 2;
    width: 65%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Brand Name - Simple Text */
.brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(63, 85, 106, 0.92), transparent);
    color: var(--white-color);
    padding: 12px 8px 10px;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}

/* Clean Hover Effects - Fixed border issues */
.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card:hover .brand-card-inner {
    box-shadow: 0 10px 30px rgba(63, 85, 106, 0.15);
    border: 2px solid rgba(63, 85, 106, 0.2);
}

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

.brand-card:hover .brand-name {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Brand (Mercedes - Clean Spotlight) */
.brand-card.featured {
    grid-column: 2 / 5;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.brand-card.featured .brand-card-inner {
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 35px rgba(63, 85, 106, 0.12);
}

.brand-card.featured .brand-logo {
    width: 45%;
    height: 45%;
}

.brand-card.featured .brand-logo img {
    transition: all 0.3s ease;
}

.brand-card.featured .brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(63, 85, 106, 0.92), transparent);
    color: var(--white-color);
    padding: 12px 8px 10px;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}

/* Fixed hover for featured brand */
.brand-card.featured:hover {
    transform: translateY(-8px);
}

.brand-card.featured:hover .brand-card-inner {
    box-shadow: 0 15px 45px rgba(63, 85, 106, 0.2);
    border: 2px solid var(--primary-color);
}

.brand-card.featured:hover .brand-logo img {
    transform: scale(1.05);
}

.brand-card.featured:hover .brand-name {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Brands - Applied to all brands except featured */
.brand-card.premium .brand-card-inner {
    border: 2px solid rgba(63, 85, 106, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.brand-card.premium .brand-logo img {
    transition: all 0.3s ease;
}

.brand-card.premium:hover {
    transform: translateY(-5px);
}

.brand-card.premium:hover .brand-card-inner {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(63, 85, 106, 0.15);
}

.brand-card.premium:hover .brand-logo img {
    transform: scale(1.05);
}

.brand-card.premium:hover .brand-name {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Layout - Auto-flow */
.brand-card.featured ~ .brand-card {
    grid-column: auto;
}

/* Optimized Animation */
.brand-card {
    opacity: 0;
    animation: fadeInBrand 0.4s ease forwards;
}

.brand-card:nth-child(1) { animation-delay: 0.05s; }
.brand-card:nth-child(2) { animation-delay: 0.1s; }
.brand-card:nth-child(3) { animation-delay: 0.15s; }
.brand-card:nth-child(4) { animation-delay: 0.2s; }
.brand-card:nth-child(5) { animation-delay: 0.25s; }
.brand-card:nth-child(6) { animation-delay: 0.3s; }
.brand-card:nth-child(7) { animation-delay: 0.35s; }
.brand-card:nth-child(8) { animation-delay: 0.4s; }
.brand-card:nth-child(9) { animation-delay: 0.45s; }
.brand-card:nth-child(10) { animation-delay: 0.5s; }

@keyframes fadeInBrand {
    to { opacity: 1; }
}

/* Brands Grid Responsive */
@media (max-width: 992px) {
    .brands-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .brand-card.featured {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}

@media (max-width: 768px) {
    .brands-section-new {
        padding: 40px 0;
    }
    
    .brands-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 35px;
    }
    
    .brand-card {
        border-radius: 12px;
    }
    
    .brand-card-inner {
        border-radius: 12px;
    }
    
    .brand-card.featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 2 / 1;
    }
    
    .brand-card.featured .brand-logo {
        width: 35%;
        height: 70%;
    }
    
    .brand-name {
        font-size: 0.75rem;
        padding: 8px 6px 6px;
    }
    
    .brand-card.featured .brand-name {
        font-size: 0.75rem;
        padding: 8px 6px 6px;
    }
}

@media (max-width: 480px) {
    .brands-section-new {
        padding: 35px 0;
    }
    
    .brands-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 30px;
    }
    
    .brand-card {
        border-radius: 10px;
        aspect-ratio: 1;
    }
    
    .brand-card-inner {
        border-radius: 10px;
    }
    
    .brand-card.featured {
        grid-column: 1 / 4;
        grid-row: 1;
        aspect-ratio: 3 / 1;
    }
    
    .brand-card.featured .brand-logo {
        width: 25%;
        height: 60%;
    }
    
    .brand-logo {
        width: 60%;
        height: 60%;
    }
    
    .brand-name {
        font-size: 0.7rem;
        padding: 6px 4px 5px;
    }
    
    .brand-card.featured .brand-name {
        font-size: 0.7rem;
        padding: 6px 4px 5px;
    }
    
    /* Hover yok, direkt göster mobilde */
    .brand-card .brand-name {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mercedes için de aynı kuralı uygula */
    .brand-card.featured .brand-name {
        opacity: 1;
        transform: translateY(0);
    }
}

.brands-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 60px;
}

.brands-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    transition: transform 0.5s ease;
    align-items: center;
}

.brand-item {
    flex: 0 0 auto;
    width: clamp(120px, 20vw, 180px);
    height: clamp(80px, 15vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(63, 85, 106, 0.2);
    border-color: var(--primary-color);
}

.brand-item img {
    max-width: 100%;
    max-height: clamp(50px, 10vw, 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    font-size: clamp(14px, 3vw, 18px);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(63, 85, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(63, 85, 106, 0.5);
}

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

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

/* ===== PRODUCTS SECTION (Ürün Kategorileri) ===== */
.products-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 35px);
    margin-top: 40px;
}

.product-card {
    background: var(--white-color);
    padding: clamp(30px, 5vw, 45px) clamp(25px, 4vw, 35px);
    text-align: center;
    border-radius: 15px;
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition-slow);
}

.product-card:hover::before {
    left: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.product-icon {
    width: clamp(70px, 15vw, 90px);
    height: clamp(70px, 15vw, 90px);
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    box-shadow: 0 5px 20px rgba(63, 85, 106, 0.3);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: rotateY(360deg);
}

.product-card h3 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    margin-bottom: 18px;
    color: var(--heading-color);
}

.product-card p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.product-card .btn {
    margin-top: 10px;
}

/* ===== VIDEO SECTION (Video Bölümü) ===== */
.video-section {
    padding: 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(63, 85, 106, 0.6), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-content {
    text-align: center;
    color: var(--white-color);
    padding: 20px;
    max-width: 800px;
}

.video-content h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ===== STATS SECTION (İstatistikler) ===== */
.stats-section {
    background: var(--white-color);
    color: var(--dark-color);
    padding: clamp(50px, 8vw, 80px) 0;
    border-top: 1px solid rgba(63, 85, 106, 0.1);
    border-bottom: 1px solid rgba(63, 85, 106, 0.1);
}

/* İş Ortakları sayfası için özel stats stilleri */
.partners-section + .stats-section {
    background: var(--white-color) !important;
    color: var(--dark-color) !important;
    padding: clamp(50px, 8vw, 80px) 0 !important;
    border: none !important;
}

.partners-section + .stats-section .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: clamp(20px, 4vw, 40px) !important;
    text-align: center !important;
}

.partners-section + .stats-section .stat-item {
    padding: clamp(20px, 4vw, 30px) !important;
    background: rgba(63, 85, 106, 0.05) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(63, 85, 106, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    transform: none !important;
}

.partners-section + .stats-section .stat-item:hover {
    transform: translateY(-5px) !important;
    background: rgba(63, 85, 106, 0.08) !important;
    box-shadow: 0 8px 25px rgba(63, 85, 106, 0.12) !important;
    border-color: var(--primary-color) !important;
}

.partners-section + .stats-section .stat-icon {
    font-size: clamp(2rem, 6vw, 3rem) !important;
    margin-bottom: 15px !important;
    color: var(--primary-color) !important;
    display: block !important;
}

.partners-section + .stats-section .stat-text {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    font-weight: 800 !important;
    font-family: var(--font-heading) !important;
    margin-bottom: 10px !important;
    display: block !important;
    color: var(--primary-color) !important;
    line-height: 1 !important;
}

.partners-section + .stats-section .stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
    opacity: 0.95 !important;
    font-weight: 500 !important;
    color: var(--text-color) !important;
    display: block !important;
    line-height: 1.2 !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    text-align: center;
}

.stat-item {
    padding: clamp(20px, 4vw, 30px);
    background: rgba(63, 85, 106, 0.05);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid rgba(63, 85, 106, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(63, 85, 106, 0.1);
    box-shadow: 0 10px 30px rgba(63, 85, 106, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
}

.stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    opacity: 0.95;
    font-weight: 500;
    color: var(--text-color);
}

.stat-text {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
    line-height: 1.2;
}

/* ===== CTA SECTION (Harekete Geçirici) ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 50%, #2c3e50 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: var(--white-color);
    text-align: center;
    padding: clamp(60px, 10vw, 100px) 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/parcalarButunu.png') no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(207, 211, 212, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}


.cta-section h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--white-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out 0.2s both;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

/* CTA Section Button Spacing */
.cta-section .btn {
    margin: 10px clamp(8px, 2vw, 15px);
    animation: slideInUp 0.8s ease-out 0.4s both;
    display: inline-block;
}

/* ===== SPECIALIZED CTA DESIGNS ===== */

/* Ana Sayfa - Ürün Arama Odaklı */
.cta-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: clamp(60px, 12vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.cta-home::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%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-home-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white-color);
    margin-bottom: 20px;
    text-align: left;
}

.cta-home-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0;
    text-align: left;
}

.cta-home-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-home-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white-color);
    animation: float 3s ease-in-out infinite;
}

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

/* Ürünler Sayfası - Kategori Odaklı */
.cta-products {
    background: linear-gradient(135deg, #2dd4bf 0%, #0891b2 50%, #0284c7 100%);
    padding: clamp(60px, 12vw, 100px) 0;
    position: relative;
}

.cta-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cta-product-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.cta-product-card i {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 20px;
    display: block;
}

.cta-product-card h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cta-product-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Hakkımızda Sayfası - Ekip Odaklı */
.cta-about {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: clamp(60px, 12vw, 100px) 0;
    position: relative;
}

.cta-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white-color), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-about-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-about-team {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.cta-team-member {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-team-member:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* İletişim Sayfası - Hızlı İletişim */
.cta-contact {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: clamp(60px, 12vw, 100px) 0;
    position: relative;
}

.cta-contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-contact-option {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 25px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--white-color);
}

.cta-contact-option i {
    font-size: 1.5rem;
}

/* İş Ortakları Sayfası - Güven Odaklı */
.cta-partners {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: clamp(60px, 12vw, 100px) 0;
    position: relative;
    color: var(--dark-color);
}

.cta-partners h2 {
    color: var(--dark-color) !important;
}

.cta-partners p {
    color: var(--text-color);
}

.cta-partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cta-stat-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.cta-stat-label {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive için */
@media (max-width: 768px) {
    .cta-home-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-home-text h2,
    .cta-home-text p {
        text-align: center;
    }
    
    .cta-about-team {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact-option {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== PRODUCT CATEGORIES ===== */
.product-categories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(63, 85, 106, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(63, 85, 106, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(63, 85, 106, 0.15);
    border-color: var(--primary-color);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    z-index: 2;
}

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

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

.category-info {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    z-index: 2;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.category-info h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--white-color);
}

.category-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

/* ===== CATEGORY MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white-color);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f1f3f4;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--white-color) !important;
}

.modal-close {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-image {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(63, 85, 106, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.modal-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.modal-info p {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.modal-description h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.modal-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-description li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 30px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 0;
    margin-right: 0;
}

.modal-description li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.modal-description li:last-child {
    border-bottom: none;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 2px solid #f1f3f4;
    display: flex;
    gap: 15px;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.modal-footer .btn {
    min-width: 150px;
}

.modal-footer .btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.modal-footer .btn-outline-white:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* ===== PRODUCT CATEGORIES RESPONSIVE ===== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(15px, 3vw, 25px);
    }
    
    .category-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }
    
    .category-image {
        height: 220px;
    }
    
    .category-info {
        padding: 20px 25px;
    }
    
    .category-info h3 {
        font-size: 1.1rem;
    }
    
    /* Modal responsive */
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-image {
        height: 250px;
        order: -1;
        padding: 15px;
    }
    
    .modal-image img {
        object-fit: contain;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-footer {
        padding: 20px 25px;
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-info {
        padding: 15px 20px;
    }
    
    .category-info h3 {
        font-size: 1rem;
    }
    
    .category-info p {
        font-size: 0.9rem;
    }
    
    /* Modal small mobile */
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 15px 20px;
    }
    
    .modal-image {
        height: 200px;
        padding: 10px;
    }
    
    .modal-image img {
        object-fit: contain;
    }
    
    .modal-info h3 {
        font-size: 1.4rem;
    }
    
    .modal-description h4 {
        font-size: 1.1rem;
    }
    
    .modal-description li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 25px;
    }
    
    .modal-description li:before {
        width: 15px;
        font-size: 1rem;
        top: 8px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
}

/* ===== PARÇA SORGULA MODAL & BUTTON ===== */
.parca-sorgula-btn {
    background: linear-gradient(135deg, var(--secondary-color), #4fa3ff);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
}

.parca-sorgula-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.4);
    background: linear-gradient(135deg, #4fa3ff, var(--secondary-color));
}

.parca-sorgula-btn i {
    font-size: 0.95rem;
}

/* Parça Sorgula Modal Styles */
#parcaSorgulaModal.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

#parcaSorgulaModal.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#parcaSorgulaModal .modal-content {
    background: var(--white-color);
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#parcaSorgulaModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 24px 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#parcaSorgulaModal .modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

#parcaSorgulaModal .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#parcaSorgulaModal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

#parcaSorgulaModal .modal-body {
    padding: 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#parcaSorgulaModal .modal-body form,
#parcaSorgulaModal form#parcaSorgulaForm {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

#parcaSorgulaModal .form-group-modal,
#parcaSorgulaModal form .form-group-modal {
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    padding: 0 !important;
}

#parcaSorgulaModal .form-group-modal label,
#parcaSorgulaModal form .form-group-modal label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
    text-align: left;
    width: 100% !important;
    box-sizing: border-box !important;
}

#parcaSorgulaModal .form-group-modal .required {
    color: var(--primary-color);
}

#parcaSorgulaModal .form-group-modal input,
#parcaSorgulaModal .form-group-modal select,
#parcaSorgulaModal form .form-group-modal input,
#parcaSorgulaModal form .form-group-modal select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 11px 14px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    background-color: var(--white-color);
    box-sizing: border-box !important;
    margin: 0 !important;
    display: block !important;
}

#parcaSorgulaModal .form-group-modal input:focus,
#parcaSorgulaModal .form-group-modal select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(63, 85, 106, 0.1);
    transform: scale(1.01);
}

#parcaSorgulaModal .form-group-modal select,
#parcaSorgulaModal form .form-group-modal select {
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233f556a' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    padding-right: 42px !important;
    padding-left: 14px !important;
}

#parcaSorgulaModal .modal-footer {
    padding: 0 30px 30px;
}

#parcaSorgulaModal .btn-modal-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#parcaSorgulaModal .btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 85, 106, 0.3);
}

@media (max-width: 768px) {
    .parca-sorgula-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .parca-sorgula-btn i {
        font-size: 0.85rem;
    }
    
    #parcaSorgulaModal .modal-content {
        max-width: 100%;
        margin: 0;
    }
    
    #parcaSorgulaModal .modal-header,
    #parcaSorgulaModal .modal-body,
    #parcaSorgulaModal .modal-footer {
        padding: 20px;
    }
    
    #parcaSorgulaModal .modal-body form,
    #parcaSorgulaModal form#parcaSorgulaForm {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #parcaSorgulaModal .form-group-modal,
    #parcaSorgulaModal form .form-group-modal {
        width: 100% !important;
        margin-bottom: 18px !important;
        padding: 0 !important;
    }
    
    #parcaSorgulaModal .form-group-modal label,
    #parcaSorgulaModal form .form-group-modal label {
        font-size: 0.9rem !important;
        width: 100% !important;
    }
    
    #parcaSorgulaModal .form-group-modal input,
    #parcaSorgulaModal .form-group-modal select,
    #parcaSorgulaModal form .form-group-modal input,
    #parcaSorgulaModal form .form-group-modal select {
        padding: 12px 14px !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    #parcaSorgulaModal .form-group-modal select,
    #parcaSorgulaModal form .form-group-modal select {
        padding-right: 42px !important;
    }
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0d0d0d 100%);
    color: var(--secondary-color);
    padding: clamp(40px, 8vw, 60px) 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(25px, 5vw, 40px);
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white-color);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.company-year {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-col ul li a {
    color: var(--secondary-color);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-col ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white-color);
    padding-left: 15px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    transition: var(--transition);
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(63, 85, 106, 0.3);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    width: clamp(50px, 10vw, 65px);
    height: clamp(50px, 10vw, 65px);
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--white-color);
    font-size: clamp(1.5rem, 5vw, 2rem);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ===== PARALAKS EFFECT ===== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 992px */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-carousel-wrapper {
        padding: 0 50px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .logo img {
        height: clamp(45px, 8vw, 65px);
        width: auto;
    }
    
    .main-header.scrolled .logo img {
        height: clamp(35px, 6vw, 50px);
    }
}

/* Mobile - 768px */
/* Tablet Special Service Button */
@media (max-width: 1024px) and (min-width: 769px) {
    .special-service-btn {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
        border-radius: 4px !important;
        margin: 4px auto !important;
        max-width: 180px !important;
        width: fit-content !important;
        gap: 4px !important;
    }
    
    .special-service-btn i {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-top {
        display: none;
    }
    
    .main-header {
        padding: 8px 0;
    }
    
    .logo img {
        height: 45px;
        width: auto;
    }
    
    .main-header.scrolled .logo img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98));
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .main-nav.active {
        display: flex;
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        font-size: 1.3rem;
        padding: 20px;
        color: var(--white-color);
    }
    
    .special-service-btn {
        background: var(--white-color) !important;
        color: var(--dark-color) !important;
        padding: 6px 12px !important;
        border-radius: 4px !important;
        font-weight: 600 !important;
        font-size: 0.8rem !important;
        margin: 6px auto !important;
        text-align: center !important;
        display: inline-flex !important;
        border: 1px solid var(--primary-color) !important;
        box-shadow: 0 1px 2px rgba(63, 85, 106, 0.08) !important;
        width: fit-content !important;
        max-width: 200px !important;
        align-items: center !important;
        gap: 4px !important;
    }
    
    .special-service-btn:hover {
        background: var(--primary-color) !important;
        color: var(--white-color) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(63, 85, 106, 0.15) !important;
    }
    
    .special-service-btn i {
        font-size: 0.85rem !important;
        transition: transform 0.3s ease !important;
    }
    
    .special-service-btn:hover i {
        transform: translateX(1px) !important;
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(63, 85, 106, 0.1);
        border: 1px solid rgba(63, 85, 106, 0.2);
        border-radius: 10px;
        margin: 10px 20px;
        width: calc(100% - 40px);
        max-width: none;
        min-width: auto;
        box-sizing: border-box;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: var(--white-color);
        padding: 15px 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Dropdown container width fix */
    .dropdown {
        width: 100%;
    }
    
    /* Prevent overflow on container */
    .main-nav ul li {
        overflow: hidden;
    }
    
    /* Hero Mobile */
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        width: 100vw;
    }
    
    .hero-video {
        height: 100%;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
        min-height: calc(100vh - 10px);
    }
    
    .hero-text-wrapper {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 0 0 auto;
        min-width: 140px;
        max-width: 180px;
    }
    
    /* Video Section Mobile */
    .video-container {
        height: 50vh;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Brands Carousel Mobile */
    .brands-carousel-wrapper {
        padding: 0 40px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 90px 15px 50px;
        min-height: 100vh;
    }
    
    .brands-carousel-wrapper {
        padding: 0 35px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        width: 100vw;
    }
    
    .main-nav {
        padding: 20px 0;
        overflow-y: auto;
    }
    
    .main-nav ul li a {
        padding: 10px;
        font-size: 1.1rem;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    padding: 140px 0 80px;
    margin-top: 0;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('images/mercedesAndParcalar.png') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(63, 85, 106, 0.4));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--white-color);
    transition: var(--transition);
}

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

.breadcrumb span {
    color: var(--primary-color);
    margin: 0 8px;
}

/* ===== SSS HERO SECTION ===== */
.sss-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.sss-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('images/sssBanner.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.sss-hero .page-header-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(63, 85, 106, 0.5));
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.faq-category-btn {
    background: var(--white-color);
    color: var(--text-color);
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 85, 106, 0.3);
}

/* FAQ Content */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: var(--white-color);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(63, 85, 106, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.faq-question:hover {
    background: rgba(63, 85, 106, 0.02);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    flex: 1;
}

.faq-question h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.faq-question .fa-chevron-down {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(63, 85, 106, 0.02);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1rem;
}


.btn-outline-white {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    min-width: 200px;
}

.btn-outline-white:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== ENHANCED CTA ===== */
.cta-enhanced {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a6b 100%);
    padding: 80px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 85, 106, 0.9), rgba(42, 74, 107, 0.8));
    z-index: 3;
}

.cta-enhanced .container {
    position: relative;
    z-index: 4;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-text h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--white-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}


/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-categories {
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .faq-category-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
    
}

@media (max-width: 480px) {
    .faq-categories {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .faq-category-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Enhanced CTA Responsive */
@media (max-width: 768px) {
    .cta-enhanced {
        padding: 60px 0;
        min-height: 350px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    
}

@media (max-width: 480px) {
    .cta-enhanced {
        padding: 50px 0;
        min-height: 300px;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
}

/* SSS Hero Responsive */
@media (max-width: 768px) {
    .sss-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 30px;
    }
    
    .hero-stats .stat-item {
        padding: 15px 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sss-hero {
        min-height: 45vh;
        padding: 100px 0 50px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats .stat-item {
        width: 100%;
        max-width: 200px;
        padding: 15px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
}

/* Why Us Section Responsive */
@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .why-us-card {
        padding: 30px 20px;
    }
    
    .why-us-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .why-us-icon i {
        font-size: 1.8rem;
    }
    
    .why-us-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .why-us-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-us-section {
        padding: 50px 0;
    }
    
    .why-us-card {
        padding: 25px 15px;
    }
    
    .why-us-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-us-icon i {
        font-size: 1.5rem;
    }
    
    .why-us-card h3 {
        font-size: 1.1rem;
    }
    
    .why-us-card p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .header-top,
    .mobile-menu-btn,
    .whatsapp-float,
    .carousel-btn {
        display: none;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
/* Smooth scrolling for all browsers */
* {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.about-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

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

/* ===== IMAGE SECTION ===== */
.image-section {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-section:hover img {
    transform: scale(1.02);
}

/* Image Section Responsive */
@media (max-width: 768px) {
    .image-section {
        margin: 30px 0;
        border-radius: 10px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .image-section {
        margin: 25px 0;
        border-radius: 8px;
        max-width: 95%;
    }
}

/* ===== BRAND MODAL STYLES ===== */
.brand-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.brand-modal-content {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(63, 85, 106, 0.1);
}

.brand-modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: rgba(63, 85, 106, 0.6);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.brand-modal-close:hover {
    background: rgba(63, 85, 106, 0.1);
    color: var(--primary-color);
}

.brand-modal-body {
    padding: 16px 24px 24px;
}

.brand-modal-body p {
    margin: 0;
    color: rgba(63, 85, 106, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.brand-modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid rgba(63, 85, 106, 0.1);
}

.brand-modal-footer .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-modal-footer .btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.brand-modal-footer .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.brand-modal-footer .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .brand-modal {
        padding: 10px;
    }
    
    .brand-modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .brand-modal-header {
        padding: 20px 20px 12px;
    }
    
    .brand-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .brand-modal-body {
        padding: 12px 20px 20px;
    }
    
    .brand-modal-footer {
        padding: 12px 20px 20px;
        flex-direction: column;
    }
    
    .brand-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Mobile - 480px */
@media (max-width: 480px) {
    /* Dropdown Mobile - Extra Small */
    .dropdown-menu {
        margin: 8px 15px;
        width: calc(100% - 30px);
    }
    
    .dropdown-menu li a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    /* Main nav container */
    .main-nav ul {
        padding: 0 10px;
    }
}

/* Very Small Mobile - 360px */
@media (max-width: 360px) {
    .dropdown-menu {
        margin: 5px 10px;
        width: calc(100% - 20px);
    }
    
    .dropdown-menu li a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* ===== KAMPANYALAR SAYFASI STİLLERİ ===== */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.campaign-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(63, 85, 106, 0.2);
    border-color: var(--primary-color);
}

.campaign-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.campaign-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.campaign-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    font-size: 2rem;
}

.campaign-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.campaign-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.campaign-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.campaign-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-campaigns {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 80px 60px;
    text-align: center;
    margin: 100px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.cta-campaigns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-phone {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-phone:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.phone-icon {
    width: 70px;
    height: 70px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.phone-info {
    text-align: left;
}

.phone-info span {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #ffd700;
    transform: scale(1.05);
}

.cta-benefits {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-item i {
    font-size: 2rem;
    color: #ffd700;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.btn-outline-white {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    min-width: 200px;
}

.btn-outline-white:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Kampanyalar */
@media (max-width: 768px) {
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .campaign-card {
        padding: 25px 20px;
    }
    
    .cta-campaigns {
        padding: 50px 30px;
        margin-top: 60px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-phone {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .phone-info {
        text-align: center;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .cta-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        min-width: 100px;
        padding: 15px;
    }
}

/* ===== CAMPAIGNS BANNER SECTION ===== */
.campaigns-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.campaigns-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/homeParalaks.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.campaigns-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-campaigns-carousel {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.carousel-container {
    position: relative;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 40px;
    padding: 60px 100px;
    backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.campaign-slides {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.campaign-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.campaign-slide.prev {
    transform: translateX(-100%);
}

.campaign-slide-content {
    text-align: center;
    color: var(--white-color);
    width: 100%;
    max-width: none;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 370px;
}

.campaign-badge-large {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    color: var(--white-color);
    padding: 20px 40px;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.campaign-slide h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--white-color);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: none;
    padding: 0 40px;
}

.campaign-slide p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
    width: 100%;
    max-width: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0 40px;
}

.campaign-slide .btn {
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 250px;
}

.campaign-slide .btn-white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.3);
}

.campaign-slide .btn-white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.dot.active {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ===== CAMPAIGN MODAL ===== */
.campaign-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.campaign-modal-content {
    background: var(--white-color);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.campaign-modal-header {
    padding: 25px 30px 15px;
    border-bottom: 2px solid #f1f3f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 20px 20px 0 0;
}

.campaign-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.campaign-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.campaign-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.campaign-modal-body {
    padding: 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--white-color);
    box-shadow: 0 8px 25px rgba(63, 85, 106, 0.3);
}

.campaign-modal-info .campaign-badge-large {
    background: var(--accent-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 20px;
}

.campaign-modal-info h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.campaign-modal-info p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.campaign-modal-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.campaign-modal-info li {
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.6;
}

.campaign-modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    border-top: 1px solid #f1f3f4;
}

.campaign-modal-footer .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.campaign-modal-footer .btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.campaign-modal-footer .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.campaign-modal-footer .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.campaign-modal-footer .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Campaign Card Button Updates */
.campaign-detail-btn {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.campaign-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Campaign Carousel */
@media (max-width: 1024px) {
    .campaigns-banner {
        min-height: 80vh;
    }
    
    .banner-campaigns-carousel {
        padding: 60px 0;
    }
    
    .carousel-container {
        padding: 40px 60px;
        width: 95%;
    }
    
    .campaign-slide h3 {
        font-size: 2.4rem;
        padding: 0 30px;
    }
    
    .campaign-slide p {
        font-size: 1.4rem;
        padding: 0 30px;
    }
    
    .campaign-badge-large {
        padding: 18px 36px;
        font-size: 1.5rem;
    }
    
    .campaign-slide .btn {
        padding: 18px 40px;
        font-size: 1.15rem;
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .campaigns-banner {
        min-height: 100vh;
        position: relative;
        top: 0;
    }
    
    .banner-campaigns-carousel {
        padding: 40px 0;
    }
    
    .carousel-container {
        padding: 30px 40px;
        margin: 0;
        border-radius: 25px;
        width: 98%;
    }
    
    .campaign-slides {
        min-height: 400px;
    }
    
    .campaign-slide-content {
        padding: 25px 40px;
        min-height: 320px;
    }
    
    .campaign-slide h3 {
        font-size: 2.0rem;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .campaign-slide p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .campaign-badge-large {
        padding: 16px 30px;
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .carousel-nav.prev {
        left: 15px;
    }
    
    .carousel-nav.next {
        right: 15px;
    }
    
    .carousel-dots {
        margin-top: 20px;
        gap: 12px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .campaign-slide .btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .campaigns-banner {
        min-height: 100vh;
        position: relative;
        top: 0;
    }
    
    .banner-campaigns-carousel {
        padding: 30px 0;
    }
    
    .carousel-container {
        padding: 20px 30px;
        width: 98%;
        border-radius: 20px;
    }
    
    .campaign-slide-content {
        padding: 20px 30px;
    }
    
    .campaign-slide h3 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .campaign-slide p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .campaign-badge-large {
        padding: 14px 25px;
        font-size: 1.2rem;
    }
    
    .campaign-slide .btn {
        padding: 14px 30px;
        font-size: 1.0rem;
        min-width: 180px;
    }
    
    .campaign-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .campaign-modal-header {
        padding: 20px;
    }
    
    .campaign-modal-body {
        padding: 20px;
    }
    
    .campaign-modal-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .campaign-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* CTA responsive for 480px */
    .cta-campaigns {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-phone {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .phone-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .cta-benefits {
        gap: 15px;
    }
    
    .benefit-item {
        min-width: 80px;
        padding: 12px;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
    }
    
    .benefit-item span {
        font-size: 0.8rem;
    }
}

/* ===== CAMPAIGN DETAILS SECTION ===== */
.campaign-details-section {
    margin: 80px 0;
    padding: 0;
}

.campaign-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.campaign-detail-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.campaign-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.detail-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.detail-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.detail-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-card-content {
    padding: 35px 30px;
}

.detail-card-content h3 {
    color: var(--dark-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.detail-specs {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-item:first-child {
    padding-top: 0;
}

.spec-label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: right;
    max-width: 60%;
}

.detail-description {
    color: var(--text-color);
    line-height: 1.7;
}

.detail-description p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.detail-description ul {
    margin: 0;
    padding-left: 20px;
}

.detail-description li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.detail-description li::marker {
    color: var(--primary-color);
}

/* Campaign Details Responsive */
@media (max-width: 768px) {
    .campaign-details-section {
        margin: 60px 0;
    }
    
    .campaign-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .detail-card-header {
        padding: 20px 25px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .detail-badge {
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    
    .detail-card-content {
        padding: 25px 20px;
    }
    
    .detail-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .detail-specs {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px 0;
    }
    
    .spec-value {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .campaign-details-grid {
        gap: 25px;
    }
    
    .detail-card-header {
        padding: 15px 20px;
    }
    
    .detail-card-content {
        padding: 20px 15px;
    }
    
    .detail-specs {
        padding: 15px;
    }
}
