/* ========================================
   TRANSGLOBAL LOGISTICS - MAIN STYLESHEET
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary-dark: #0a1628;
    --primary-navy: #1a2d5a;
    --secondary-teal: #c0392b;
    --secondary-light: #e74c3c;
    --accent-red: #c0392b;
    --accent-red-dark: #96281e;
    --accent-orange: #e74c3c;
    --accent-green: #10b981;
    --white: #ffffff;
    --light-bg: #fef8f7;
    --light-gray: #fde8e8;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --shadow-sm: 0 4px 12px rgba(192,57,43,0.1);
    --shadow-md: 0 8px 30px rgba(192,57,43,0.15);
    --shadow-lg: 0 15px 50px rgba(192,57,43,0.2);
    --shadow-xl: 0 25px 80px rgba(192,57,43,0.25);
    --shadow-glow: 0 0 40px rgba(192,57,43,0.3);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary-teal);
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ship {
    font-size: 4rem;
    color: var(--secondary-teal);
    animation: shipFloat 2s ease-in-out infinite;
}

.loader-wave {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-teal), transparent);
    margin-top: 20px;
    border-radius: 4px;
    animation: waveMove 1.5s ease-in-out infinite;
}

@keyframes shipFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes waveMove {
    0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10,22,40,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(10,22,40,0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(192,57,43,0.5);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== TOP INFO BAR ========== */
.top-info-bar {
    background: #1a1e2e;
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
}

.top-info-left i {
    color: var(--secondary-teal);
    font-size: 0.75rem;
}

.top-info-center {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-info-center i {
    color: #f59e0b;
    font-size: 0.75rem;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: var(--transition-base);
}

.top-info-item:hover {
    color: var(--secondary-teal);
}

.top-info-item i {
    font-size: 0.6rem;
}

.lang-selector span {
    color: #ef4444;
}

.top-info-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    margin: 0 5px;
}

.follow-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.top-social-links {
    display: flex;
    gap: 8px;
}

.top-social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    transition: var(--transition-base);
}

.top-social-links a:hover {
    color: var(--secondary-teal);
}

/* ========== MAIN NAVBAR ========== */
.main-navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 0;
    padding: 18px 50px;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
}

.main-navbar.scrolled .navbar-wrapper {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--secondary-teal);
}

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    padding: 10px 0;
    transition: var(--transition-base);
}

.menu-link i {
    font-size: 0.6rem;
    color: var(--text-gray);
    transition: var(--transition-base);
}

.menu-link:hover,
.menu-link.active {
    color: var(--secondary-teal);
}

.menu-link:hover i {
    color: var(--secondary-teal);
}

/* Navbar Right */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon-wrapper {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.85rem;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.65rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.phone-number:hover {
    color: var(--secondary-teal);
}

.menu-grid-btn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-left: 15px;
    width: 32px;
    height: 32px;
    padding: 6px;
    background: var(--light-bg);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.menu-grid-btn:hover {
    background: rgba(192,57,43,0.1);
}

.menu-grid-btn span {
    width: 6px;
    height: 6px;
    background: #0d1b3e;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.menu-grid-btn:hover span {
    background: var(--secondary-teal);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 55vh;
    max-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.4) 100%);
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 50px 0 45px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.subtitle-line {
    width: 40px;
    height: 2px;
    background: var(--secondary-teal);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: #fff;
    text-shadow: 0 4px 25px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 550px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Floating Tabs */
.hero-floating-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.floating-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
    min-width: 200px;
}

.floating-tab:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-lg);
}

.floating-tab.active {
    background: var(--accent-red);
}

.floating-tab.active .tab-title,
.floating-tab.active .tab-icon {
    color: var(--white);
}

.tab-icon {
    font-size: 1.5rem;
    color: var(--secondary-teal);
}

.tab-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
}

.floating-tab.active .tab-indicator {
    background: var(--white);
}

.tab-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    bottom: 10%;
    left: 5%;
}

.plane-animation {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.2);
    animation: planeMove 20s linear infinite;
}

@keyframes planeMove {
    0% { transform: translate(0, 0) rotate(-45deg); }
    100% { transform: translate(1000px, -500px) rotate(-45deg); }
}

/* ========== MARQUEE SECTION ========== */
.marquee-section {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5a 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marqueeScroll 12s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.marquee-dot {
    font-size: 0.6rem;
    color: var(--secondary-teal);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/katalog/hero/nova-teknik-isletme.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: blur(1px) saturate(1.2);
    pointer-events: none;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239,68,68,0.1) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

.about-desc {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
    background: rgba(255,255,255,0.7);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #c0392b;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.about-features {
    position: relative;
    padding-left: 40px;
}

.features-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-teal) 0%, var(--accent-red) 50%, var(--secondary-teal) 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(192,57,43,0.3);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 5px 15px rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.1);
}

.feature-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 10px 25px rgba(192,57,43,0.15);
    border-color: rgba(192,57,43,0.2);
}

.feature-item::before {
    content: '';
    position: absolute;
    left: -44px;
    width: 12px;
    height: 12px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.2);
    transition: var(--transition-base);
}

.feature-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(239,68,68,0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.feature-item:hover .feature-icon::before {
    left: 100%;
}

.feature-icon.warehouse {
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    color: #fff;
    box-shadow: 0 15px 35px rgba(192,57,43,0.4);
}

.feature-icon.pricing {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: #fff;
    box-shadow: 0 15px 35px rgba(244,63,94,0.4);
}

.feature-icon.air {
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    color: #fff;
    box-shadow: 0 15px 35px rgba(192,57,43,0.4);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.feature-content p {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 600;
    font-weight: 500;
}

.feature-decoration {
    position: absolute;
    right: 0;
    color: var(--accent-red);
    font-size: 1.5rem;
    opacity: 0.4;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Content */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: #f43f5e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-shadow: 0 3px 15px rgba(244,63,94,0.35);
}

.section-subtitle.centered {
    justify-content: center;
    display: flex;
}

.section-subtitle.light {
    color: var(--secondary-teal);
}

.subtitle-line {
    width: 40px;
    height: 2px;
    background: currentColor;
}

.subtitle-line.left,
.subtitle-line.right {
    background: currentColor;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0d1b3e;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.section-title.centered {
    text-align: center;
}

.section-title.light {
    color: var(--white);
}

.section-title .highlight {
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, rgba(192,57,43,0.3) 0%, rgba(192,57,43,0.15) 100%);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.about-list {
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 20px;
    font-size: 1.05rem;
    color: #1f2937;
    line-height: 1.6;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-weight: 500;
}

.about-list li:hover {
    transform: translateX(5px);
}

.about-list li i {
    color: var(--white);
    background: var(--accent-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239,68,68,0.3);
}

.about-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* About Badge */
.about-badge {
    position: absolute;
    bottom: 120px;
    right: 80px;
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    padding: 30px 35px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 30px 70px rgba(192,57,43,0.45), 0 15px 30px rgba(0,0,0,0.1);
    animation: badgeFloat 4s ease-in-out infinite;
    z-index: 10;
    border: 2px solid rgba(255,255,255,0.2);
}

.about-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    border-radius: inherit;
    z-index: -1;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0392b;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.badge-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    padding: 8px 0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.badge-list li i {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(192,57,43,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(239,68,68,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230891b2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    height: 100%;
    min-height: 320px;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.stats-card.headquarters .card-image {
    height: 180px;
    overflow: hidden;
}

.stats-card.headquarters .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.stats-card.headquarters:hover .card-image img {
    transform: scale(1.1);
}

.stats-card .card-content {
    padding: 25px;
}

.stats-card .card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.stats-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.stats-card.counter {
    background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.stats-card.counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: counterPulse 4s ease-in-out infinite;
}

.stats-card.counter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s linear infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.counter-number {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.counter-number .count {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.counter-number .suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 5px;
}

.counter-text {
    font-size: 1.25rem;
    color: var(--white);
    margin-top: 20px;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.stats-card.services-card {
    position: relative;
}

.stats-card.services-card .card-image {
    height: 170px;
    overflow: hidden;
}

.stats-card.services-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-card.services-card .card-content h4 {
    color: var(--primary-dark);
}

.stats-card.services-card .card-content .highlight {
    color: var(--accent-red);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ========== SERVICES SECTION - ULTRA PREMIUM ========== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 25%, #132347 50%, #0d1b3e 75%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(192,57,43,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(244,63,94,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 20%, rgba(192,57,43,0.08) 0%, transparent 40%);
    animation: premiumGlow 15s ease-in-out infinite;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/katalog/hero/nova-teknik-isletme.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: blur(2px);
    pointer-events: none;
}

@keyframes premiumGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.services-section .section-subtitle {
    color: #c0392b !important;
}

.services-section .section-title {
    color: #fff !important;
}

.services-section .section-title .highlight {
    color: #f43f5e !important;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(192,57,43,0.15), 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(192,57,43,0.1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.service-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-15px) scale(1.03);
    box-shadow: 0 35px 80px rgba(192,57,43,0.25), 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(192,57,43,0.3);
}

.service-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(13,27,62,0.8));
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    position: absolute;
    top: -32px;
    left: 30px;
    box-shadow: 0 8px 25px rgba(192,57,43,0.4);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #ff3b5c 0%, #e11d48 100%);
    transform: rotateY(180deg);
    box-shadow: 0 8px 25px rgba(255,59,92,0.5);
}

.service-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    margin-top: 25px;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.service-link i {
    transition: var(--transition-base);
}

.service-link:hover {
    color: #000000;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========== PROCESS SECTION V3 - WHITE WITH CONTAINER BG ========== */
.process-section-v3 {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/katalog/hero/nova-teknik-isletme.png');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    filter: blur(2px) saturate(1.2);
    pointer-events: none;
}

.process-section-v3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(192,57,43,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 80% 70%, rgba(192,57,43,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.process-bg-left {
    display: none;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f43f5e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.process-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.process-main-title .title-highlight {
    color: #c0392b;
    display: block;
}

.process-desc {
    font-size: 1.05rem;
    color: #1f2937;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Process Cards Flow - New Design */
.process-cards-flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.process-cards-flow::before {
    display: none;
}

.card-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 320px;
}

.process-card {
    padding: 35px 30px;
    border-radius: 16px;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.process-card.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(20,184,166,0.45), 0 10px 20px rgba(0,0,0,0.1);
}

.process-card.teal:hover {
    box-shadow: 0 30px 60px rgba(20,184,166,0.5), 0 15px 30px rgba(0,0,0,0.15);
}

.process-card.red {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(244,63,94,0.45), 0 10px 20px rgba(0,0,0,0.1);
}

.process-card.red:hover {
    box-shadow: 0 30px 60px rgba(244,63,94,0.5), 0 15px 30px rgba(0,0,0,0.15);
}

.process-card.light {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0d1b3e;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 10px 20px rgba(192,57,43,0.1);
    border: 1px solid rgba(192,57,43,0.2);
}

.process-card.light:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 15px 30px rgba(192,57,43,0.2);
}

.process-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.process-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 500;
}

.process-card.light p {
    color: #4b5563;
}

/* Card Connector - Dashed Line */
.card-connector {
    display: flex;
    align-items: center;
    margin: 20px 0 15px;
    position: relative;
}

.connector-dot {
    width: 16px;
    height: 16px;
    background: #c0392b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(192,57,43,0.2), 0 5px 20px rgba(192,57,43,0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.card-column:hover .connector-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(192,57,43,0.3), 0 8px 30px rgba(192,57,43,0.5);
}

.connector-line-left,
.connector-line-right {
    width: 60px;
    height: 2px;
    border-top: 2px dashed #b8d4db;
}

.card-column:first-child .connector-line-left {
    visibility: hidden;
}

.card-column:last-child .connector-line-right {
    visibility: hidden;
}

.card-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #6b7280;
    margin-top: 5px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.step-card.light p {
    color: var(--text-gray);
}

.step-arrow {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 4px 10px rgba(192,57,43,0.2);
    z-index: 10;
    color: #96281e;
    font-size: 1rem;
    border: 2px solid rgba(192,57,43,0.2);
    transition: all 0.3s ease;
}

.step-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 8px 20px rgba(192,57,43,0.3);
}

.process-step:last-child .step-arrow {
    display: none;
}

.timeline-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 0;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid #c7e6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: var(--transition-base);
}

.timeline-dot.active {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
    color: var(--white);
}

.timeline-dot span {
    font-size: 0.8rem;
}

.timeline-connector {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-teal) 0%, #c7e6f0 100%);
}

/* Old Process Section (Hidden) */
.process-section {
    display: none;
    z-index: 11;
    font-weight: bold;
}

.process-card:last-child::after,
.process-card:last-child::before {
    display: none;
}

.process-card-inner {
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: var(--transition-base);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 10px 30px rgba(0,0,0,0.15);
}

.process-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.35), 0 15px 40px rgba(0,0,0,0.2);
}

.process-card-inner.teal {
    background: linear-gradient(135deg, var(--secondary-teal) 0%, #96281e 100%);
    color: var(--white);
}

.process-card-inner.red {
    background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
    color: var(--white);
}

.process-card-inner.white {
    background: var(--white);
    color: var(--text-dark);
}

.process-card-number {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}

.process-card-inner.white .process-card-number {
    color: var(--primary-dark);
    opacity: 0.15;
}

.process-card-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: var(--transition-base);
}

.process-card-inner.white .process-card-icon {
    background: var(--light-bg);
    color: var(--secondary-teal);
}

.process-card:hover .process-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.process-card-inner.white .process-card-desc {
    color: var(--text-gray);
}

.process-connector {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.process-card:last-child .process-connector {
    display: none;
}

.process-step.white .step-number {
    color: var(--primary-dark);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step.white .step-title {
    color: var(--primary-dark);
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.process-step.white .step-description {
    color: var(--text-gray);
}

.step-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.process-timeline {
    position: relative;
    padding-top: 30px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--light-gray);
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    max-width: 70%;
    margin: 0 auto;
    position: relative;
}

.timeline-dots .dot {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: var(--transition-base);
}

.timeline-dots .dot.active {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
    color: var(--white);
}

.process-bg-text {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.process-bg-text span {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-dark);
    opacity: 0.03;
    text-transform: uppercase;
    letter-spacing: 15px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition-base);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-teal) 0%, #96281e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-card p a {
    color: var(--text-gray);
    transition: var(--transition-base);
}

.contact-card p a:hover {
    color: var(--secondary-teal);
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== QUOTE SECTION (LEGACY) ========== */
.quote-section {
    background: var(--light-bg);
    display: none;
}

.quote-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 40px;
}

.quote-phone {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-phone .phone-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.quote-phone .phone-info span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.quote-phone .phone-info a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.quote-phone .phone-info a:hover {
    color: var(--secondary-teal);
}

/* Quote Form */
.quote-right {
    background: var(--white);
    padding: 60px;
}

.quote-form-wrapper {
    max-width: 100%;
}

.form-header {
    margin-bottom: 35px;
}

.form-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form .form-group {
    position: relative;
}

.quote-form .form-group.full-width {
    grid-column: span 2;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-base);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 4px rgba(192,57,43,0.1);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: var(--text-light);
}

.quote-form select {
    appearance: none;
    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='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.checkbox-label input:checked + .checkmark {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    font-size: 1rem;
    justify-content: center;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-header-left .section-title {
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-red);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    text-transform: uppercase;
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent-red);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.blog-date .month {
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--primary-dark);
    transition: var(--transition-base);
}

.blog-title a:hover {
    color: var(--secondary-teal);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.blog-link i {
    transition: var(--transition-base);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--secondary-teal);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 3rem;
    color: var(--secondary-teal);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-teal);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #fbbf24;
    font-size: 1rem;
}

.swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-teal);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--primary-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
}

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .logo-text span {
    color: var(--secondary-teal);
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--secondary-teal);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-teal);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary-teal);
}

.footer-links a:hover {
    color: var(--secondary-teal);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-teal);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact .contact-info span,
.footer-contact .contact-info a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-contact .contact-info a:hover {
    color: var(--secondary-teal);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.footer-bottom-links li a {
    display: inline-block;
    font-size: 0.9rem;
    color: #fff;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: #c0392b;
}

.footer-bottom-links li:not(:last-child)::after {
    content: '|';
    color: rgba(255,255,255,0.3);
    margin-left: 10px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-red-dark);
    transform: translateY(-5px);
}

/* ========== SIDEBAR MENU ========== */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: var(--transition-slow);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-content {
    padding: 40px 30px;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-dark);
    transition: var(--transition-base);
}

.sidebar-close:hover {
    background: var(--accent-red);
    color: var(--white);
}

.sidebar-logo {
    margin-bottom: 25px;
}

.sidebar-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.sidebar-logo .logo-text span {
    color: var(--secondary-teal);
}

.sidebar-description {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

.sidebar-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.sidebar-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 500;
}

.sidebar-contact ul li i {
    color: var(--secondary-teal);
    width: 20px;
}

.sidebar-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition-base);
}

.sidebar-social a:hover {
    background: var(--secondary-teal);
    color: var(--white);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    .container { max-width: 100%; padding: 0 30px; }
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.4rem; }
    .about-grid { gap: 50px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .about-badge { display: none; }
}

@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .header-phone { display: none; }
    .menu-grid-btn { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-menu.active .nav-item { width: 100%; }
    .nav-menu.active .nav-link { 
        padding: 15px 0; 
        border-bottom: 1px solid var(--light-gray);
        display: block;
    }
    
    .nav-menu.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .nav-menu.active .nav-item.dropdown.active .dropdown-menu { display: block; }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-description { margin: 0 auto 35px; }
    .hero-buttons { justify-content: center; }
    .hero-floating-tabs { 
        flex-direction: row; 
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .floating-tab { min-width: auto; }
    
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .process-step { border-radius: var(--border-radius-lg) !important; }
    .step-arrow { display: none; }
    .quote-grid { grid-template-columns: 1fr; }
    .quote-left { min-height: 400px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Genel Mobil Düzeltmeleri */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .top-bar { display: block !important; }
    .top-info-bar { 
        display: block !important; 
        padding: 8px 10px !important;
    }
    .top-info-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 3px !important;
    }
    .top-info-left {
        display: flex !important;
        font-size: 0.65rem !important;
        color: #fff !important;
    }
    .top-info-center {
        display: flex !important;
        font-size: 0.65rem !important;
        color: #fff !important;
    }
    .top-info-right { 
        display: flex !important;
        font-size: 0.65rem !important;
    }
    
    /* Hero Mobil */
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-title { font-size: 1.5rem !important; line-height: 1.4 !important; padding: 0 10px !important; }
    .hero-subtitle { font-size: 0.75rem !important; letter-spacing: 1px !important; }
    .hero-desc { font-size: 0.95rem; }
    .hero-content { padding: 0 10px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.85rem; }
    
    /* Grid Düzeltmeleri */
    .stats-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    
    /* Service Card Mobil */
    .service-card { margin: 0 auto; max-width: 100%; }
    .service-image { height: 200px; }
    .service-content { padding: 20px 15px; }
    .service-content h3 { font-size: 1.1rem; }
    .service-content p { font-size: 0.9rem; }
    
    /* About Section Mobil */
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image { height: 300px; }
    .about-content { padding: 0 10px; }
    .about-desc { font-size: 0.95rem; }
    
    /* Quote Section Mobil */
    .quote-hero-content { padding: 40px 0 !important; }
    .quote-hero-grid { grid-template-columns: 1fr; }
    .quote-hero-left { text-align: center; padding: 20px 15px; }
    .quote-hero-title { font-size: 1.8rem; }
    .quote-hero-phone { justify-content: center; }
    .quote-right { padding: 30px 20px; }
    .quote-form .form-row { grid-template-columns: 1fr; }
    .quote-form .form-group.full-width { grid-column: span 1; }
    .form-checkboxes { flex-direction: column; gap: 15px; }
    .form-row-2 { flex-direction: column; gap: 15px; }
    
    /* CTA Section Mobil */
    .cta-section { padding: 60px 0; }
    .cta-content { padding: 0 15px; }
    .cta-content h2 { font-size: 1.6rem; }
    .cta-stat-boxes { flex-direction: column; gap: 15px; }
    .cta-action-btns { flex-direction: column; gap: 12px; }
    .cta-action-btns a { width: 100%; justify-content: center; text-align: center; }
    
    /* Footer Mobil */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; flex-direction: column; text-align: center; }
    .footer-contact .contact-icon { margin-bottom: 10px; }
    .footer-contact .contact-info { text-align: center; }
    .footer-contact .contact-info span, 
    .footer-contact .contact-info a { display: block; font-size: 0.85rem; }
    .footer-links { text-align: center; }
    .footer-links a { justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; gap: 15px; }
    .footer-bottom-links { justify-content: center; }
    
    /* Navbar Mobil - Hamburger Menu */
    .navbar-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }
    .navbar-phone { 
        display: flex; 
        align-items: center;
        gap: 6px;
    }
    .navbar-phone .phone-details { 
        display: flex;
        flex-direction: column;
    }
    .navbar-phone .phone-label {
        font-size: 0.55rem;
        color: #666;
    }
    .navbar-phone .phone-number {
        font-size: 0.7rem;
        font-weight: 700;
        color: #0a1628;
    }
    .navbar-phone .phone-icon-wrapper { 
        width: 32px; 
        height: 32px; 
        background: #c0392b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.75rem;
    }
    .menu-grid-btn { 
        display: none;
    }
    .mobile-menu-toggle {
        display: none;
    }
    .main-menu { 
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 100%;
        order: 3;
        margin-top: 12px;
        padding: 0;
        list-style: none;
        background: transparent;
    }
    .main-menu .menu-item {
        list-style: none;
        flex-shrink: 0;
    }
    .main-menu .menu-link {
        display: inline-block;
        padding: 8px 14px;
        font-size: 0.72rem;
        font-weight: 600;
        color: #0a1628;
        text-decoration: none;
        background: linear-gradient(135deg, rgba(192,57,43,0.08) 0%, rgba(192,57,43,0.15) 100%);
        border-radius: 6px;
        border: 1px solid rgba(192,57,43,0.2);
        white-space: nowrap;
    }
    .main-menu .menu-link:hover {
        background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, rgba(192,57,43,0.25) 100%);
    }
    .main-menu .menu-link.active {
        background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
        color: #fff;
        border-color: #c0392b;
    }
    
    .testimonial-card { padding: 30px 20px; }
    .process-bg-text span { font-size: 4rem; }
    
    .marquee-text { font-size: 1.5rem; }
    .marquee-section { padding: 10px 0; }
    
    /* Testimonials Marquee Mobile */
    .testimonials-marquee-section { padding: 60px 0 50px; }
    .testimonials-marquee-section .section-title { font-size: 1.8rem; }
    .testimonials-marquee-section .section-header { margin-bottom: 20px; }
    .testimonials-marquee-wrapper { margin-top: 15px !important; }
    .testimonial-row { margin-bottom: 15px; }
    .testimonial-track { gap: 15px; }
    .review-card {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
        min-height: 150px;
        padding: 18px 20px;
        border-radius: 14px;
    }
    .review-card p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
    .review-card span { font-size: 0.8rem; }
    .review-stars { font-size: 0.9rem; margin-bottom: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.7rem; }
    .btn { padding: 12px 20px; font-size: 0.9rem; }
    
    .floating-tab { padding: 12px 18px; }
    .tab-title { font-size: 0.8rem; }
    
    .service-content { padding: 25px 20px; }
    .service-icon { width: 55px; height: 55px; font-size: 1.3rem; top: -27px; }
    
    .blog-content { padding: 20px; }
    .back-to-top { width: 45px; height: 45px; bottom: 20px; right: 20px; }
    .sidebar-menu { width: 100%; right: -100%; }
    
    /* Testimonials Marquee 480px */
    .testimonials-marquee-section { padding: 50px 0 40px; }
    .testimonials-marquee-section .section-title { font-size: 1.5rem; }
    .review-card {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
        min-height: 140px;
        padding: 15px 18px;
    }
    .review-card p { font-size: 0.85rem; }
}

/* ========== MOBILE MENU ANIMATION ========== */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== ANIMATION UTILITIES ========== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== FORM VALIDATION STATES ========== */
.quote-form input.error,
.quote-form select.error,
.quote-form textarea.error {
    border-color: var(--accent-red);
    animation: shake 0.5s ease;
}

.quote-form input.success,
.quote-form select.success,
.quote-form textarea.success {
    border-color: #10b981;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-message {
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    margin-top: 20px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid #10b981;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/katalog/hero/nova-teknik-isletme.png') center/cover no-repeat;
    opacity: 0.06;
    filter: blur(2px) saturate(1.2);
    pointer-events: none;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-section .section-subtitle {
    color: #c0392b;
}

.blog-section .section-title {
    color: #0a1628;
}

.blog-section .section-desc {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(192,57,43,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(192,57,43,0.2), 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(192,57,43,0.3);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c0392b, #96281e);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(192,57,43,0.4);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content {
    padding: 25px;
}

.blog-card.featured .blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: #0a1628;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card.featured .blog-content h3 {
    font-size: 1.3rem;
}

.blog-card:hover .blog-content h3 {
    color: #c0392b;
}

.blog-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: #000000;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .blog-card.featured .blog-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-card.featured {
        grid-column: span 1;
    }
}

/* ========== TESTIMONIALS MARQUEE SECTION ========== */
.testimonials-marquee-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f8fafc 100%);
    overflow: hidden;
    max-width: 100vw;
}

.testimonials-marquee-wrapper {
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-row {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    padding: 8px 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}

.testimonial-track:hover {
    animation-play-state: running;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Referanslar ve Kalite Belgeleri */
.references-section {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(13, 27, 62, 0.92), rgba(26, 54, 93, 0.92)),
        url('../images/katalog/hero/nova-teknik-isletme.png') center/cover no-repeat;
    position: relative;
}

.references-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.ref-logo-item {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.ref-logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 70px rgba(192,57,43,0.35), 0 0 30px rgba(192,57,43,0.2);
    border-color: #c0392b;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.ref-logo-item img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.ref-logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.references-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #0d1b3e 0%, #1a365d 100%);
    border-radius: 20px;
}

.ref-stat {
    text-align: center;
}

.ref-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ref-stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

@media (max-width: 992px) {
    .references-logos { grid-template-columns: repeat(4, 1fr); }
    .references-stats { flex-wrap: wrap; gap: 30px; }
}

@media (max-width: 768px) {
    .references-logos { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .ref-logo-item { padding: 15px; min-height: 100px; }
    .ref-logo-item img { max-height: 60px; }
    .references-stats { flex-direction: column; gap: 25px; padding: 30px 20px; }
    .ref-stat-num { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .references-logos { grid-template-columns: repeat(2, 1fr); }
    .ref-logo-item { padding: 12px; min-height: 80px; }
    .ref-logo-item img { max-height: 50px; }
}

.certificates-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/katalog/hero/nova-teknik-isletme.png') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.certificates-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.certificates-section .container {
    position: relative;
    z-index: 1;
}

.cert-display {
    position: relative;
}

.certificates-viewer {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.cert-tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.cert-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0392b, #96281e);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(192,57,43,0.4), 0 0 15px rgba(192,57,43,0.2);
}

.cert-arrow:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(192,57,43,0.5), 0 0 25px rgba(192,57,43,0.3);
}

.cert-tabs-container {
    flex: 1;
    overflow: hidden;
}

.cert-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.cert-tabs::-webkit-scrollbar {
    display: none;
}

.cert-tab {
    padding: 12px 24px;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 30px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cert-tab:hover {
    background: #e0f2fe;
    border-color: #c0392b;
}

.cert-tab.active {
    background: linear-gradient(135deg, #c0392b, #96281e);
    border-color: #c0392b;
    color: #fff;
    box-shadow: 0 8px 25px rgba(192,57,43,0.5), 0 0 20px rgba(192,57,43,0.3);
    transform: scale(1.05);
}

.cert-display {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.cert-frame {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.15),
        0 15px 40px rgba(192,57,43,0.1),
        inset 0 0 0 1px rgba(192,57,43,0.1);
    border: 3px solid #e2e8f0;
    position: relative;
}

.cert-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c0392b, transparent);
}

@media (max-width: 768px) {
    .cert-tabs { 
        padding: 15px 20px;
    }
    .cert-tab { padding: 10px 18px; font-size: 0.85rem; }
    .cert-img { height: 400px; }
}

@media (max-width: 992px) {
    .references-grid { grid-template-columns: repeat(2, 1fr); }
    .certificates-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .references-grid { grid-template-columns: 1fr; }
    .certificates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .certificates-grid { grid-template-columns: 1fr; }
}


.cert-img {
    height: 550px;
    width: auto;
    border-radius: 8px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(192, 57, 43, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
}

.cert-img:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.35),
        0 20px 50px rgba(192, 57, 43, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cert-tab { padding: 10px 18px; font-size: 0.85rem; }
    .cert-display { padding: 10px; }
    .cert-display object { height: 450px; }
}

.cert-card-old {
    background: linear-gradient(145deg, #1a2744 0%, #0d1b3e 100%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(192, 57, 43, 0.2);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c0392b, #96281e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(192, 57, 43, 0.3);
    border-color: rgba(192, 57, 43, 0.5);
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.2), rgba(8, 145, 178, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.cert-icon i {
    font-size: 2rem;
    color: #c0392b;
    transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
    background: linear-gradient(135deg, #c0392b, #96281e);
    transform: scale(1.1);
}

.cert-card:hover .cert-icon i {
    color: #fff;
}

.cert-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #c0392b, #96281e);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.cert-card h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cert-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c0392b;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-view i {
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-view {
    color: #fff;
}

.cert-card:hover .cert-view i {
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .certificates-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .certificates-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-card { padding: 25px 20px; }
}

@media (max-width: 480px) {
    .certificates-grid { grid-template-columns: 1fr; }
}

/* Hizmet Detay Sayfası - Profesyonel Tasarım */
.service-detail-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.service-main-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-description {
    line-height: 1.8;
    color: #374151;
}

.service-description h3 {
    font-size: 1.8rem;
    color: #0d1b3e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c0392b;
}

.service-description h4 {
    font-size: 1.3rem;
    color: #0d1b3e;
    margin: 30px 0 15px;
}

.service-description p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-description ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.service-description ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #c0392b, #96281e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.service-description ul li strong {
    color: #0d1b3e;
}

.service-gallery {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.service-gallery h3 {
    font-size: 1.4rem;
    color: #0d1b3e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-gallery h3 i {
    color: #c0392b;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,27,62,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.cta-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #0d1b3e, #1a365d);
    border-radius: 16px;
    text-align: center;
}

.cta-box h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.cta-box .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #c0392b;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-box .cta-btn:hover {
    background: #96281e;
    transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .service-main-content { padding: 25px; }
    .service-description h3 { font-size: 1.4rem; }
    .service-description h4 { font-size: 1.1rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

.review-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 24px;
    border-radius: 16px;
    margin-right: 20px;
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(192,57,43,0.12), 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid rgba(192,57,43,0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(192,57,43,0.25), 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(192,57,43,0.4);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(245,158,11,0.3);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-card p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    flex-grow: 1;
}

.review-card span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

/* ========== QUOTE HERO SECTION ========== */
.quote-hero-section {
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.quote-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.75) 100%);
}

.quote-hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.quote-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-hero-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.quote-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.quote-hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.quote-hero-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.quote-hero-phone .phone-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0392b;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    animation: pulse 2s ease-in-out infinite;
}

.quote-hero-phone a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.quote-hero-cta {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.quote-hero-cta a {
    color: #c0392b;
    font-weight: 600;
}

.quote-form-card {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.quote-form-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 25px;
}

.quote-form-card .form-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin: 20px 0 10px;
}

.quote-form-card input,
.quote-form-card select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0d1b3e;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.quote-form-card input:focus,
.quote-form-card select:focus {
    outline: none;
    border-color: #96281e;
    box-shadow: 0 0 0 4px rgba(192,57,43,0.15);
}

.quote-form-card .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-checkboxes-inline {
    display: flex;
    gap: 25px;
    margin: 20px 0;
}

.form-checkboxes-inline label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #0d1b3e;
    cursor: pointer;
}

.form-checkboxes-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #96281e;
    margin: 0;
}

.btn-quote-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #96281e 0%, #96281e 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-quote-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192,57,43,0.4);
}

/* ========== ULTRA PREMIUM CTA SECTION ========== */
.container-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 50%, #132347 100%);
    position: relative;
    overflow: hidden;
}

.cta-ultra-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/katalog/hero/nova-teknik-isletme.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cta-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 50% 50% at 30% 50%, rgba(192,57,43,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 70% 60%, rgba(244,63,94,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-grid-layout {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-left-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge-premium {
    display: inline-block;
    background: rgba(192,57,43,0.2);
    color: #c0392b;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(192,57,43,0.3);
}

.cta-ultra-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.cta-ultra-title span {
    color: #c0392b;
}

.cta-ultra-desc {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 500;
}

.cta-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 35px;
}

.cta-stat-box {
    text-align: center;
}

.cta-stat-box .stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    display: inline;
}

.cta-stat-box .stat-plus {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.cta-stat-box .stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

.cta-action-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(192,57,43,0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(192,57,43,0.5);
}

.cta-btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.cta-btn-phone:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.cta-right-image {
    position: relative;
}

.floating-container-3d {
    position: relative;
    animation: float3d 6s ease-in-out infinite;
}

.floating-container-3d img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 20px 40px rgba(192,57,43,0.2);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

@keyframes float3d {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.container-cta-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 50%);
    border-radius: 50%;
    animation: pulseGlow 5s ease-in-out infinite;
}

.container-cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 50%);
    border-radius: 50%;
    animation: pulseGlow 7s ease-in-out infinite reverse;
}

.container-cta-bg {
    display: none;
}

.container-cta-content {
    position: relative;
    z-index: 1;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-item .stat-number {
    display: inline;
    font-size: 3.5rem;
    font-weight: 900;
    color: #f43f5e;
    text-shadow: 0 4px 20px rgba(244,63,94,0.3);
}

.cta-stat-item .stat-suffix {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f43f5e;
    text-shadow: 0 4px 20px rgba(244,63,94,0.3);
}

.cta-stat-item .stat-label {
    font-size: 0.9rem;
    color: #0d1b3e;
    font-weight: 500;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #96281e 0%, #96281e 100%);
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.cta-badge span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-main-title {
    font-size: 4rem;
    font-weight: 900;
    color: #0d1b3e;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.cta-container-image {
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-container-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.cta-container-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.container-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ========== SITE POPUP ========== */
.site-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.site-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5a 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
    animation: popupIn 0.4s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 20px 40px rgba(192,57,43,0.4);
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.popup-message {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.popup-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #c0392b 0%, #96281e 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(192,57,43,0.4);
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(192,57,43,0.5);
}

/* ========== TÜM HİZMETLER MODAL ========== */
.services-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-modal.active {
    display: block;
    opacity: 1;
}

.services-modal-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.services-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.services-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-modal-header h2 i {
    color: var(--secondary-light);
}

.services-modal-header p {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-size: 1.1rem;
}

.modal-close-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

.services-modal-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.category-btn.active {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-teal) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

.services-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.modal-service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.modal-service-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-light);
    box-shadow: 0 20px 50px rgba(192, 57, 43, 0.2);
}

.modal-service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.modal-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-service-card:hover .modal-service-image img {
    transform: scale(1.1);
}

.modal-service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-teal) 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.modal-service-info {
    padding: 25px;
}

.modal-service-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.modal-service-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-service-features span {
    padding: 5px 12px;
    background: rgba(192, 57, 43, 0.15);
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 15px;
}

.modal-service-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-light);
}

.modal-service-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-teal) 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(192, 57, 43, 0.4);
}

@media (max-width: 768px) {
    .services-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .services-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .services-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .services-modal-categories {
        justify-content: center;
    }
}

/* ========== YENİ BLOG SECTION - PROFESİYONEL ========== */
.blog-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.blog-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/katalog/hero/nova-teknik-isletme.png') center/cover no-repeat;
    opacity: 0.12;
    filter: blur(1px) saturate(1.3);
    pointer-events: none;
}

.blog-section-new::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 9s ease-in-out infinite reverse;
}

.blog-layout-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-featured-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.blog-featured-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.blog-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured-new:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c0392b, #96281e);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-badge.small {
    padding: 6px 14px;
    font-size: 0.7rem;
}

.blog-badge.mini {
    padding: 5px 12px;
    font-size: 0.65rem;
}

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.blog-date-badge i {
    margin-right: 6px;
    color: #c0392b;
}

.blog-info-new {
    padding: 30px;
}

.blog-info-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-info-new h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-info-new h3 a:hover {
    color: #c0392b;
}

.blog-info-new p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-link {
    color: #c0392b;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more-link:hover {
    color: #96281e;
    gap: 12px;
}

.blog-side-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card-new {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.blog-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date-small {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.blog-date-small i {
    margin-right: 5px;
    color: #c0392b;
}

.blog-card-info {
    padding: 20px;
}

.blog-card-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-info h4 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-info h4 a:hover {
    color: #c0392b;
}

.blog-card-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.blog-mini-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-mini-img {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.blog-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-mini-card:hover .blog-mini-img img {
    transform: scale(1.08);
}

.blog-mini-info {
    padding: 18px;
}

.blog-mini-date {
    color: #888;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 8px;
}

.blog-mini-date i {
    margin-right: 5px;
}

.blog-mini-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.blog-mini-info h5 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-mini-info h5 a:hover {
    color: #c0392b;
}

@media (max-width: 1024px) {
    .blog-layout-new {
        grid-template-columns: 1fr;
    }
    .blog-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .blog-img-wrapper {
        height: 250px;
    }
    .blog-info-new h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-grid-new {
        grid-template-columns: 1fr;
    }
}

/* ========== KAPSAMLI MOBİL DÜZELTMELER ========== */

/* Mobil Genel */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobil */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    
    .top-info-bar {
        display: block !important;
        padding: 6px 0 !important;
        font-size: 0.7rem !important;
    }
    
    /* ========== MOBİL HEADER - TEK SATIR: LOGO | MENÜ | TELEFON ========== */
    .main-navbar {
        padding: 10px 15px !important;
        background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%) !important;
        box-shadow: 0 4px 30px rgba(0,0,0,0.4) !important;
    }
    
    .navbar-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0 !important;
        gap: 10px !important;
    }
    
    /* SOL: LOGO */
    .logo {
        order: 1 !important;
        flex-shrink: 0 !important;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    /* ORTA: MENÜ */
    .main-menu,
    ul.main-menu,
    #nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 3px !important;
        order: 2 !important;
        flex: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        background: transparent !important;
        transform: none !important;
        transition: none !important;
        clip: auto !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
    
    .menu-item,
    .main-menu .menu-item,
    .main-menu > li {
        list-style: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .menu-link,
    .main-menu .menu-link,
    .main-menu a {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 8px 8px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #fff !important;
        background: transparent !important;
        border: none !important;
        text-decoration: none !important;
        position: relative !important;
        white-space: nowrap !important;
    }
    
    .menu-link::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 2px !important;
        background: #00c2ff !important;
        transition: width 0.3s ease !important;
    }
    
    .menu-link:hover,
    .menu-link.active {
        color: #00c2ff !important;
    }
    
    .menu-link:hover::after,
    .menu-link.active::after {
        width: 80% !important;
    }
    
    /* SAĞ: TELEFON */
    .navbar-right {
        display: flex !important;
        align-items: center !important;
        order: 3 !important;
        flex-shrink: 0 !important;
    }
    .navbar-phone {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }
    .navbar-phone .phone-icon-wrapper {
        width: 30px !important;
        height: 30px !important;
        background: #00c2ff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        font-size: 0.75rem !important;
    }
    .navbar-phone .phone-details {
        display: flex !important;
    }
    .navbar-phone .phone-label {
        display: none !important;
    }
    .navbar-phone .phone-number {
        font-size: 12px !important;
        color: #fff !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }
    
    .mobile-menu-toggle,
    .menu-grid-btn {
        display: none !important;
    }
    
    body {
        padding-top: 80px;
    }
    
    /* Hero Mobil */
    .hero-section {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Stats Bar Mobil */
    .stats-bar {
        padding: 30px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Section Başlıkları Mobil */
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-desc {
        font-size: 0.95rem;
    }
    
    /* Services Mobil */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* About Mobil */
    .about-section {
        padding: 50px 0 !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .about-features {
        padding-left: 25px;
    }
    
    .feature-item {
        padding: 18px 20px !important;
        margin-bottom: 10px !important;
    }
    
    .feature-item:first-child {
        margin-top: 0 !important;
    }
    
    .about-image {
        order: -1;
    }
    
    /* Process Section Mobil */
    .process-section-v3 {
        padding: 50px 0 !important;
    }
    
    /* Features Mobil */
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* References Mobil */
    .references-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .reference-card {
        padding: 15px;
    }
    
    .reference-card img {
        height: 50px;
    }
    
    /* Marquee Mobil */
    .marquee-container {
        padding: 15px 0;
    }
    
    .marquee-content {
        animation-duration: 20s;
    }
    
    .marquee-item {
        padding: 0 20px;
        font-size: 0.9rem;
    }
    
    /* Blog Mobil */
    .blog-layout-new {
        grid-template-columns: 1fr !important;
    }
    
    .blog-side-new {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .blog-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .blog-img-wrapper {
        height: 200px;
    }
    
    .blog-info-new {
        padding: 20px;
    }
    
    .blog-info-new h3 {
        font-size: 1.2rem;
    }
    
    .blog-card-img {
        height: 140px;
    }
    
    .blog-card-info {
        padding: 15px;
    }
    
    .blog-card-info h4 {
        font-size: 0.95rem;
    }
    
    .blog-card-info p {
        display: none;
    }
    
    /* Footer Mobil */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    /* Contact Form Mobil */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    /* Certificates Mobil */
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .cert-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cert-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* Header Daha Küçük */
    .logo-img {
        height: 45px !important;
    }
    
    /* Hero Daha Küçük */
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    /* Stats Daha Küçük */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .stat-number {
        font-size: 1.6rem !important;
    }
    
    /* Section Başlıkları */
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* Blog Daha Küçük */
    .blog-side-new {
        grid-template-columns: 1fr;
    }
    
    .blog-grid-new {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .blog-mini-img {
        height: 120px;
    }
    
    .blog-mini-info {
        padding: 12px;
    }
    
    .blog-mini-info h5 {
        font-size: 0.85rem;
    }
    
    /* References */
    .references-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Certificates */
    .certificates-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .cert-img {
        height: 350px !important;
    }
    
    /* Swiper/Slider */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    /* Hero En Küçük */
    .hero-title {
        font-size: 1.4rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Stats En Küçük */
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.3rem !important;
    }
    
    /* Blog En Küçük */
    .blog-grid-new {
        grid-template-columns: 1fr !important;
    }
    
    .blog-img-wrapper {
        height: 180px;
    }
    
    /* References En Küçük */
    .references-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }
    
    .reference-card {
        padding: 12px;
    }
    
    .reference-card img {
        height: 40px;
    }
    
    /* Certificates En Küçük */
    .certificates-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer En Küçük */
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Mobil Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scroll to Top Mobil */
.scroll-top {
    right: 15px !important;
    bottom: 15px !important;
    width: 45px !important;
    height: 45px !important;
}

/* ========== EK MOBİL DÜZELTMELER ========== */

/* Adım Kartları (Konteyner Seçimi, Teklif, Teslimat) Mobil */
@media (max-width: 768px) {
    .steps-grid, .process-grid, .how-it-works-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .step-card, .process-card {
        padding: 25px 20px !important;
        min-height: auto !important;
    }
    
    .step-card h3, .process-card h3 {
        font-size: 1.1rem !important;
    }
    
    .step-card p, .process-card p {
        font-size: 0.9rem !important;
    }
}

/* İletişim Formu Mobil */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 25px 20px !important;
    }
    
    .contact-form h3 {
        font-size: 1.3rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .contact-info h2 {
        font-size: 1.5rem !important;
    }
    
    .contact-info p {
        font-size: 0.95rem !important;
    }
    
    .contact-phone {
        font-size: 1.8rem !important;
    }
}

/* Yorum Kartları Mobil */
@media (max-width: 992px) {
    .testimonials-grid, .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .review-card, .testimonial-card {
        padding: 20px !important;
        min-width: 280px !important;
        max-width: 100% !important;
    }
    
    .review-card p, .testimonial-card p {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .review-card, .testimonial-card {
        padding: 18px 15px !important;
    }
    
    .review-stars {
        font-size: 0.9rem !important;
    }
    
    .review-card p {
        font-size: 0.85rem !important;
    }
    
    .review-card span {
        font-size: 0.8rem !important;
    }
}

/* Logo Büyütme */
@media (max-width: 992px) {
    .logo-img {
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 50px !important;
    }
}

/* Desktop'ta mobil header'ı gizle */
.site-header-mobile {
    display: none;
}

/* Mobil Düzeltmeler */
@media (max-width: 768px) {
    /* Scroll takılmasını engelle */
    html, body {
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* HEADER - Koyu Arka Plan */
    .header {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: #0d1b3e !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Top info bar gizle */
    .top-info-bar {
        display: none !important;
    }
    
    /* MAIN NAVBAR - Mobil Düzenleme */
    .main-navbar {
        background: linear-gradient(135deg, #0d1b3e 0%, #1a365d 100%) !important;
        padding: 12px 0 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    }
    
    /* Ana menüyü gizle */
    .main-menu {
        display: none !important;
    }
    
    /* Desktop navbar'ı gizle */
    .main-navbar {
        display: none !important;
    }
    
    /* ========== MOBİL HEADER - PROFESYONEL ========== */
    .site-header-mobile {
        display: block !important;
        width: 100%;
        background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 50%, #1a365d 100%);
        box-shadow: 0 4px 25px rgba(0,0,0,0.3);
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .site-header-mobile .header-inner {
        max-width: 100%;
        margin: 0 auto;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        gap: 20px;
    }
    
    .site-header-mobile .header-logo img {
        height: 45px;
        width: auto;
    }
    
    .site-header-mobile .header-nav {
        display: flex;
        gap: 18px;
        flex-wrap: nowrap;
    }
    
    .site-header-mobile .header-nav a {
        color: #ffffff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        position: relative;
        padding: 8px 0;
        white-space: nowrap;
        letter-spacing: 0.3px;
    }
    
    .site-header-mobile .header-nav a:hover,
    .site-header-mobile .header-nav a.active {
        color: #00c2ff;
    }
    
    /* Header logo görünsün */
    .navbar-wrapper .logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .navbar-wrapper .logo-img {
        height: 50px !important;
        width: auto !important;
        max-width: 150px !important;
    }
    
    /* Hero başlıkları düzelt - tıkış tıkış olmasın */
    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 15px !important;
        padding: 8px 15px !important;
    }
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }
    .hero-title .highlight {
        display: inline !important;
    }
    
    /* Hero butonları ortala */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .hero-buttons .btn {
        width: 80% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Blog açıklaması ortala */
    .blog-section-new .section-desc,
    .section-desc.centered {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Footer logo küçült ve düzelt */
    .footer-logo img {
        height: 60px !important;
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }
    .footer-col.about-col {
        text-align: center !important;
    }
    .footer-description {
        text-align: center !important;
    }
    
    /* NAVBAR MOBİL - HAMBURGER MENÜ VE TELEFON GÖRÜNSÜN */
    .navbar-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    .navbar-right {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        padding: 8px !important;
        background: rgba(192,57,43,0.2) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
    }
    .mobile-menu-toggle span {
        width: 24px !important;
        height: 3px !important;
        background: #fff !important;
        border-radius: 2px !important;
    }
    .navbar-phone {
        display: flex !important;
    }
    .navbar-phone .phone-icon-wrapper {
        width: 38px !important;
        height: 38px !important;
        background: #c0392b !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
    }
    .navbar-phone .phone-details {
        display: none !important;
    }
}
