/* ===== DEĞİŞKENLER VE TEMEL AYARLAR ===== */
:root {
    --primary-color: #fd0000;
    --white-color: #ffffff;
    --dark-color: #1a1a1a;
    --light-gray-color: #f8f9fa;
    --text-color: #555;
    --heading-color: #111;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Yatay kaymayı engelle */
}

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; /* Yatay kaymayı engelle */
    position: relative;
    padding-top: 0; /* Header fixed olduğu için hero zaten tam ekran */
}

body.menu-open {
    overflow: hidden;
}

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

h1, h2, h3 {
    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;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--heading-color);
    color: var(--white-color);
    border-color: var(--heading-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--heading-color);
    transform: translateY(-2px);
}

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

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

/* ===== HEADER ===== */
.header-top {
    background: linear-gradient(135deg, #18191a 0%, #242526 100%);
    color: #e4e6eb;
    padding: 10px 0;
    font-size: 13.5px;
    border-bottom: 2px solid rgba(253, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
}

.header-top .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.header-top .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(253, 0, 0, 0.08), rgba(253, 0, 0, 0.03));
    border: 1px solid rgba(253, 0, 0, 0.15);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-top .contact-info span:hover {
    background: linear-gradient(135deg, rgba(253, 0, 0, 0.15), rgba(253, 0, 0, 0.08));
    border-color: rgba(253, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 0, 0, 0.2);
}

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

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

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

/* Main Header - Always Visible (Her zaman görünür, sabit) */
.main-header {
    background: #ffffff;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: none;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%),
        radial-gradient(circle at 20% 80%, rgba(253, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 0, 0, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(253, 0, 0, 0.03) 50%, transparent 70%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.main-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid var(--primary-color);
}

.main-header.scrolled::before {
    background: 
        linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%),
        radial-gradient(circle at 20% 80%, rgba(253, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 0, 0, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(253, 0, 0, 0.02) 50%, transparent 70%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(253, 0, 0, 0.04) 2px,
            rgba(253, 0, 0, 0.04) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(253, 0, 0, 0.025) 2px,
            rgba(253, 0, 0, 0.025) 4px
        );
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-header.scrolled::after {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    position: relative;
    z-index: 3;
    margin-left: 20px;
    background: none;
    border: none;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    cursor: pointer;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
    display: block;
}

.main-header.scrolled .logo img {
    height: 50px;
}

/* Navigation */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav ul li a {
    color: #1a1a1a;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    display: block;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 8px;
}

.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: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

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

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

/* Tüm menü linkleri için koyu renk */
.main-nav > ul > li a {
    color: #1a1a1a !important;
}

.main-nav > ul > li a:hover {
    color: var(--primary-color) !important;
    background: rgba(253, 0, 0, 0.08);
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(253, 0, 0, 0.15);
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-top: 15px;
    backdrop-filter: blur(10px);
    z-index: 1001;
}


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

/* Dropdown menüye hover yapıldığında da açık kalması için */
.dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-menu li {
    margin: 0 !important;
    display: block !important;
    width: 100%;
    gap: 0 !important;
    text-align: center;
}

.dropdown-menu li a {
    display: inline-block !important;
    padding: 12px 40px;
    white-space: nowrap;
    transition: color 0.2s ease, border-bottom 0.15s ease;
    color: #1a1a1a !important;
    font-weight: 500;
}

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

.dropdown-menu li a:hover {
    color: var(--primary-color) !important;
    border-bottom: 3px solid var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    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);
}

/* ===== HERO ===== */
.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, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(26,26,26,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--white-color);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* Hero Animations */
.animate-hero {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-hero:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-hero:nth-child(2) {
    animation-delay: 0.4s;
}

.animate-hero:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* ===== FEATURES ===== */
.features {
    padding: 50px 0;
    background-color: var(--light-gray-color);
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white-color);
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== ABOUT US ===== */
.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-us-image img {
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    width: 100%;
    object-fit: cover;
}

.about-us-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.about-us-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

/* ===== SERVICES ===== */
.services {
    background-color: var(--light-gray-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 0 auto;
}

/* Services Carousel */
.services-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

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

.services-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.services-carousel .service-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
}

.service-card {
    background: var(--white-color);
    padding: 45px 35px;
    text-align: center;
    border-radius: 12px;
    border-top: 4px solid var(--light-gray-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff3333);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    box-shadow: 0 5px 20px rgba(253, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.service-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
    color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    opacity: 0.1;
}

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

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

.cta p {
    margin-bottom: 30px;
    font-size: 1.15rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #b8bec4;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(253, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 0, 0, 0.015) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(253, 0, 0, 0.005) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(253, 0, 0, 0.01) 2px,
            rgba(253, 0, 0, 0.01) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(253, 0, 0, 0.005) 2px,
            rgba(253, 0, 0, 0.005) 4px
        );
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-col h3 {
    color: var(--white-color);
    font-size: 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: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #b8bec4;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

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

.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;
}

.footer-contact li a {
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--white-color);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 18px;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), #d00000);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(253, 0, 0, 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);
    position: relative;
    font-size: 14px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
}

/* Fade In Animation */
.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== BRANDS CAROUSEL (Araç Markaları) ===== */
.brands-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0 80px 0 !important;
    margin: 0 0 40px 0;
    position: relative;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 0 0 40px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 2px;
}

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

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

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

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

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

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 100px;
    height: 320px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 40px;
    align-items: center;
    height: 100%;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(253, 0, 0, 0.1);
    width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 20px 20px 0 0;
}

.review-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(253, 0, 0, 0.2);
}

.review-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.review-stars i {
    color: #ffc107;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: Georgia, serif;
    opacity: 0.2;
    font-weight: bold;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.review-author {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-date {
    color: var(--text-color);
    font-size: 13px;
    opacity: 0.8;
    font-weight: 500;
}

.reviews-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 15;
    box-shadow: 0 8px 25px rgba(253, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.reviews-carousel .carousel-btn:hover {
    background: #d40000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(253, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.reviews-carousel .prev-btn {
    left: 20px;
}

.reviews-carousel .next-btn {
    right: 20px;
}

.reviews-carousel .carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
    background: #ccc;
}

.reviews-carousel .carousel-btn:disabled:hover {
    transform: translateY(-50%);
    background: #ccc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 0, 0, 0.3), transparent);
}

.brands-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 0, 0, 0.3), transparent);
}

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

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

.brands-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    align-items: center;
}

.brand-item {
    flex: 0 0 auto;
    width: 180px;
    height: 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);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.brand-item img {
    max-width: 100%;
    max-height: 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: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(253, 0, 0, 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(253, 0, 0, 0.5);
}

.carousel-btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(253, 0, 0, 0.3);
}

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

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PAGE HEADER (İç Sayfalar için) ===== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    margin-top: 90px;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 0, 0, 0.3), rgba(26, 26, 26, 0.8));
    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);
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

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

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

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

/* ===== ABOUT DETAIL PAGE ===== */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 20px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.about-content-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-content-text h3:first-child {
    margin-top: 0;
}

.about-content-text h3 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.about-content-text p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-list {
    list-style: none;
    margin-top: 20px;
}

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.05rem;
    padding: 10px 0;
}

.services-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

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

.about-content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    color: var(--white-color);
    box-shadow: 0 5px 20px rgba(253, 0, 0, 0.3);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.why-item {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff3333);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(253, 0, 0, 0.3);
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-item p {
    line-height: 1.7;
    color: var(--text-color);
}

/* ===== CONTACT PAGE (İletişim Sayfası) ===== */
.contact-cards {
    background-color: var(--white-color);
    padding: 80px 0 60px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.contact-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.contact-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--light-gray-color);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.contact-card-link:hover .contact-card,
.contact-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff3333);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(253, 0, 0, 0.3);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.contact-card p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-card .phone-number,
.contact-card .email-text,
.contact-card .address-text {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-card .small-text {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-container h2,
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

/* Map Wrapper */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.map-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateX(5px);
}

.map-link i {
    font-size: 0.9rem;
}

.map-wrapper {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Contact Form */
.form-description {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-form {
    background: var(--white-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
    font-size: 0.95rem;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(253, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Form Success Message */
.form-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white-color);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.form-success i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--white-color);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    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: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    color: var(--white-color);
    font-size: 32px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    animation: ripple 1.5s infinite;
}

@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.7);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Desktop'ta WhatsApp butonunu gizle */
@media (min-width: 769px) {
    .whatsapp-float {
        display: none;
    }
}

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

/* Tablet - 992px */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        width: 100vw;
    }

    .hero::before {
        background-size: cover;
        background-position: center center;
        height: 100%;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-image {
        order: -1;
    }

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

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

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Page Tablet */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    /* Brands Carousel Tablet */
    .brands-carousel-wrapper {
        padding: 0 50px;
    }

    .brand-item {
        width: 150px;
        height: 100px;
    }

    /* Services Carousel Tablet */
    .services-carousel-wrapper {
        padding: 0 70px;
    }

    .brand-item img {
        max-height: 60px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Header Adjustments */
    .header-top {
        display: none;
    }
    
    /* Reviews Section Mobile */
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .reviews-carousel {
        padding: 0 70px;
        height: 280px;
    }
    
    .reviews-track {
        gap: 20px;
    }
    
    .review-card {
        width: 280px;
        max-width: 280px;
        padding: 25px 20px;
        height: 240px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .review-stars i {
        font-size: 18px;
    }
    
    .reviews-carousel .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .reviews-carousel .prev-btn {
        left: 10px;
    }
    
    .reviews-carousel .next-btn {
        right: 10px;
    }

    .main-header {
        padding: 12px 0;
        background: #ffffff !important;
        overflow: visible;
    }
    
    .main-header::before {
        width: 100% !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    }
    
    .main-header.scrolled::before {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%) !important;
    }

    .logo {
        margin-left: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .logo img {
        height: 50px;
    }
    
    .main-header.scrolled .logo img {
        height: 45px;
    }

    /* Checkbox Label Mobile */
    .checkbox-label {
        font-size: 0.8rem;
        gap: 8px;
        line-height: 1.3;
    }
    
    .checkbox-label input[type="checkbox"] {
        margin-top: 2px;
        transform: scale(0.9);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background-color: var(--white-color) !important;
    }

    .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;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        font-size: 1.3rem;
        padding: 20px;
        display: block;
        color: var(--white-color) !important;
        font-weight: 600;
    }

    /* Dropdown Mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown > a {
        position: relative;
        padding: 20px !important;
    }

    .dropdown-menu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: linear-gradient(135deg, rgba(253, 0, 0, 0.1), rgba(253, 0, 0, 0.05));
        border: 1px solid rgba(253, 0, 0, 0.2);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 0 !important;
        padding: 10px 0;
        min-width: 100%;
        margin: 10px 20px;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        padding: 15px 40px !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        color: var(--white-color) !important;
        font-weight: 500;
        border-radius: 8px;
        margin: 5px 10px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(253, 0, 0, 0.2) !important;
        color: var(--primary-color) !important;
    }

    .dropdown a i {
        display: inline-block !important;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    /* Hero - Tam ekran tüm cihazlarda */
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        width: 100vw;
    }

    .hero::before {
        background-size: cover;
        background-position: center center;
        height: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
        margin-top: 75px;
    }

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

    /* About Detail */
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

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

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Brands Carousel Mobile */
    .brands-carousel-wrapper {
        padding: 0 40px;
    }

    .brands-track {
        gap: 20px;
    }

    /* Services Carousel Mobile */
    .services-carousel-wrapper {
        padding: 0 50px;
    }

    .services-track {
        gap: 15px;
    }

    .services-carousel .service-card {
        max-width: 100%;
    }

    .brand-item {
        width: 120px;
        height: 80px;
        padding: 15px;
    }

    .brand-item img {
        max-height: 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    /* Features */
    .features {
        margin-top: -40px;
        padding: 40px 0;
    }

    .features-grid {
        gap: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .main-footer {
        padding: 50px 0 0;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Reviews Section Small Mobile */
    .reviews-carousel {
        padding: 0 60px;
        height: 260px;
    }
    
    .reviews-track {
        gap: 15px;
    }
    
    .review-card {
        width: 260px;
        max-width: 260px;
        padding: 20px 15px;
        height: 220px;
    }
    
    .reviews-carousel .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .reviews-carousel .prev-btn {
        left: 5px;
    }
    
    .reviews-carousel .next-btn {
        right: 5px;
    }

    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        width: 100vw;
    }

    .hero::before {
        background-size: cover;
        background-position: center center;
        height: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 80px 0 50px;
        margin-top: 70px;
    }

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

    /* About Stats Mobile */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

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

    /* Brands Carousel Small Mobile */
    .brands-carousel-wrapper {
        padding: 0 35px;
    }

    .brand-item {
        width: 100px;
        height: 70px;
        padding: 10px;
    }

    .brand-item img {
        max-height: 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    /* Contact Page Small Mobile */
    .contact-form {
        padding: 25px 15px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .form-success {
        padding: 35px 20px;
    }

    .form-success i {
        font-size: 40px;
    }

    .form-success h3 {
        font-size: 1.5rem;
    }

    .feature-card,
    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .cta {
        padding: 60px 20px;
    }
}

/* Prevent horizontal overflow globally */
* {
    max-width: 100%;
}

body, html {
    width: 100%;
    overflow-x: hidden;
}

/* ===== SERVICE PAGES ===== */

/* Service Detail Page */
.service-detail {
    background: var(--white-color);
}

.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.service-intro h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

/* Full Width Image Layout */
.service-image-full {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    max-width: 100%;
}

.service-image-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

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

.service-content-full {
    margin: 50px 0;
}

.service-section-title {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
    justify-content: center;
}

.service-section-title i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(253, 0, 0, 0.3);
}

.service-badge i {
    font-size: 1.3rem;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-details h3 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-list li strong {
    color: var(--heading-color);
}

/* Service List Grid (2 Column Layout) */
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

/* Service List Grid Horizontal (5 Column Layout) */
.service-list-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 0;
}

.service-list-item {
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--light-gray-color);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
}

.service-list-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(253, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(253, 0, 0, 0.1), rgba(253, 0, 0, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item-content h4 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.service-item-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

/* Schedule Grid (Periyodik Bakım Zamanı) */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.schedule-card {
    background: var(--white-color);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.schedule-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.schedule-card h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.schedule-card p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Why Service Grid */
.why-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-service-item {
    background: var(--white-color);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.why-service-item:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(253, 0, 0, 0.1), rgba(253, 0, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.why-service-item h3 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.why-service-item p {
    line-height: 1.6;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Outline Button */
.btn-outline-white {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

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

/* Service Pages Responsive */
@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-list-grid-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-section-title {
        font-size: 1.7rem;
    }

    .schedule-grid,
    .why-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .service-intro h2 {
        font-size: 1.8rem;
    }

    .service-intro p {
        font-size: 1rem;
    }

    .service-details h3 {
        font-size: 1.5rem;
    }

    .service-section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-list-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-list-item {
        padding: 15px;
    }

    .service-item-icon {
        width: 45px;
        height: 45px;
    }

    .service-item-icon i {
        font-size: 1.3rem;
    }

    .service-item-content h4 {
        font-size: 1rem;
    }

    .service-item-content p {
        font-size: 0.9rem;
    }

    .schedule-grid,
    .why-service-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card,
    .why-service-item {
        padding: 30px 20px;
    }

    .service-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cta .btn {
        display: block;
        margin: 10px auto !important;
    }
}

@media (max-width: 480px) {
    .service-list-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Services Carousel - Small Mobile */
    .services-carousel-wrapper {
        padding: 0 40px;
    }

    .services-track {
        gap: 10px;
    }
}
