/* ============================================
   Sigorta Rüzgarı - Ana CSS Dosyası
   ============================================ */

:root {
    --primary-color: #007e78;
    --primary-dark: #006b66;
    --primary-light: #00d084;
    --primary-teal: #007e78;
    --secondary-color: #00FFD9;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-gray: #767676;
    --border-color: #333333;
    --success-color: #25D366;
    --whatsapp-green: #2db742;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   HEADER
   ============================================ */

.main-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), var(--primary-color), transparent) 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(0, 126, 120, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 126, 120, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 126, 120, 0.5) 20%, 
        rgba(0, 255, 217, 0.8) 50%, 
        rgba(0, 126, 120, 0.5) 80%, 
        transparent 100%);
    animation: shimmer-border 3s ease-in-out infinite;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    height: 70px;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 350px;
    min-width: 180px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    position: relative;
    z-index: 1;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Footer logo stili yukarıda tanımlı */

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.main-nav > ul > li {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: block;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.main-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(0, 126, 120, 0.6);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: calc(100% - 2.5rem);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-light);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(0, 255, 217, 0.5);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    min-width: 240px;
    padding: 1rem 0;
    margin-top: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 126, 120, 0.4);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(0, 126, 120, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), var(--primary-color), transparent);
    animation: shimmer-border 2s ease-in-out infinite;
}

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

.dropdown-menu li {
    padding: 0;
    position: relative;
}

.dropdown-menu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu li:hover::before {
    opacity: 1;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 126, 120, 0.2), transparent);
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(0, 126, 120, 0.1), transparent);
    color: var(--primary-light);
    padding-left: 2rem;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 255, 217, 0.4);
}

.header-cta {
    position: relative;
}

.header-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    box-shadow: 0 6px 20px rgba(0, 126, 120, 0.5),
                0 0 0 1px rgba(0, 126, 120, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

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

.header-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 126, 120, 0.7),
                0 0 0 1px rgba(0, 255, 217, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-position: 100% 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 2s ease infinite;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 126, 120, 0.3);
}

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

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

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeInContent 1s ease-in-out 0.3s forwards;
}

.slide.active .slide-content {
    opacity: 1;
}

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

.slide-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-btn {
    background-color: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.slide-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 126, 120, 0.4);
}

/* Slider Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.3rem;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 126, 120, 0.4);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding: 5rem 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-image {
    text-align: center;
    margin-top: 1rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.hero-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ============================================
   PAGE HERO SECTION (Kurumsal, Blog vb.)
   ============================================ */

.page-hero-section {
    padding: 6rem 0 4rem;
    background-color: var(--bg-darker);
    text-align: center;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.page-content-section {
    padding: 4rem 0;
}

.page-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.page-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-align: center;
}

.page-intro p {
    margin-bottom: 1.5rem;
}

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

.page-feature-item {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.page-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 126, 120, 0.2);
}

.page-feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.page-feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   HAKKIMIZDA SAYFASI
   ============================================ */

/* Hero Section */
.hakkimizda-hero {
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hakkimizda-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.hakkimizda-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 400;
}

/* İstatistikler Bölümü */
.hakkimizda-stats-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}


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

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Ana İçerik Bölümü */
.hakkimizda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.hakkimizda-left {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hakkimizda-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hakkimizda-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hakkimizda-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
}

.overlay-content {
    color: var(--text-primary);
    text-align: center;
}

.overlay-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.75rem;
    background: rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.overlay-content h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hakkimizda-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hakkimizda-intro {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.hakkimizda-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hakkimizda-text p {
    margin-bottom: 1.5rem;
}

/* Değerlerimiz Bölümü */
.hakkimizda-values-section {
    padding: 5rem 0;
    background-color: var(--bg-card);
    margin-top: 4rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

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

.value-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.25);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

/* Hizmetlerimiz Bölümü */
.hakkimizda-services-section {
    padding: 5rem 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 217, 255, 0.25);
}

.service-content {
    flex: 1;
}

.service-content h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* CTA Bölümü */
.hakkimizda-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    margin-top: 4rem;
}

.hakkimizda-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hakkimizda-cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hakkimizda-cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.hakkimizda-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hakkımızda Responsive */
@media (max-width: 968px) {
    .hakkimizda-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hakkimizda-cta-content h2 {
        font-size: 2rem;
    }
    
    .hakkimizda-cta-buttons {
        flex-direction: column;
    }
    
    .hakkimizda-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hakkimizda-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   PRODUCT PAGES
   ============================================ */

.product-hero {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-darker);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

.product-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-content {
    padding: 4rem 0;
}

.product-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.product-features {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   BLOG
   ============================================ */

/* Blog Kategori Filtreleme */
/* Blog Layout - Sidebar ve Main Content */
.blog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.blog-sidebar-widget {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 126, 120, 0.2);
    margin-bottom: 2rem;
}

.blog-sidebar-title {
    margin: 0 0 1.25rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 126, 120, 0.2);
}

.blog-sidebar-title i {
    color: var(--primary-color);
}

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

.blog-sidebar-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(0, 126, 120, 0.05);
    border: 1px solid rgba(0, 126, 120, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.blog-sidebar-category:hover {
    background: rgba(0, 126, 120, 0.15);
    border-color: rgba(0, 126, 120, 0.4);
    transform: translateX(5px);
}

.blog-sidebar-category.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 126, 120, 0.3);
}

.blog-sidebar-category .category-name {
    flex: 1;
    font-size: 0.95rem;
}

.blog-sidebar-category .category-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.blog-sidebar-category.active .category-count {
    background: rgba(0, 0, 0, 0.2);
    color: var(--bg-darker);
}

/* Blog Main Content */
.blog-main {
    min-width: 0; /* Grid overflow için */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: contain; /* Tüm resimler karta sığsın */
    object-position: center;
    background-color: var(--bg-darker);
    padding: 1rem;
}

/* Logo için özel stil - daha fazla padding */
.blog-card-image[src*="logo.webp"],
.blog-card-image[src*="logo.svg"] {
    padding: 2rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Blog Detay Sayfası */
.blog-detail {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-meta {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-detail-excerpt {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-detail-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-tags {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border-radius: 10px;
}

.blog-detail-tags .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-dark);
    border-radius: 5px;
    margin: 0.25rem;
    font-size: 0.9rem;
}

.blog-detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   SSS (Sık Sorulan Sorular)
   ============================================ */

.faq-category-section {
    margin-bottom: 4rem;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.faq-question-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item:hover .faq-question i {
    transform: translateX(5px);
}

.faq-cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.1), rgba(0, 255, 217, 0.05));
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.faq-cta-section h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* SSS Detay Sayfası */
.faq-detail {
    max-width: 900px;
    margin: 0 auto;
}

.faq-detail-header {
    margin-bottom: 2rem;
}

.faq-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--accent-color);
}

.faq-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.faq-detail-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.faq-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-detail-content p {
    margin-bottom: 1.5rem;
}

.faq-detail-content ul,
.faq-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.faq-detail-content li {
    margin-bottom: 0.75rem;
}

.faq-detail-content h2,
.faq-detail-content h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* İlgili Sorular */
.related-faqs-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.related-faqs-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.related-faqs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-faq-item {
    background-color: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 217, 255, 0.15);
}

.related-faq-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.related-faq-link i:first-child {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.related-faq-link span {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.related-faq-link i:last-child {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.related-faq-item:hover .related-faq-link i:last-child {
    transform: translateX(3px);
}

/* SSS Detay CTA */
.faq-detail-cta {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.1), rgba(0, 255, 217, 0.05));
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.faq-detail-cta h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-detail-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.faq-detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   MİSYON & VİZYON SAYFASI
   ============================================ */

.mission-vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-section,
.vision-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.mission-icon,
.vision-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 217, 255, 0.25);
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.mission-text h3,
.vision-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.mission-list li,
.vision-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.mission-list li:last-child,
.vision-list li:last-child {
    border-bottom: none;
}

.mission-list li::before,
.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.mission-list li strong,
.vision-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   TARİHÇEMİZ SAYFASI
   ============================================ */

.history-content {
    max-width: 1000px;
    margin: 0 auto;
}

.history-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary) !important;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
    z-index: 10;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    overflow: visible;
}

.timeline-content {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.history-achievements {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.achievement-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.achievement-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   EKİBİMİZ SAYFASI
   ============================================ */

.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

.team-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.team-values {
    margin-bottom: 4rem;
}

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

.team-value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.team-value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15), rgba(0, 255, 217, 0.1));
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.25);
}

.team-value-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.team-value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.team-services {
    margin-bottom: 4rem;
}

.team-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.team-cta h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.team-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.team-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Kurumsal Sayfalar */
@media (max-width: 768px) {
    .mission-section,
    .vision-section {
        padding: 2rem 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        display: flex !important;
        color: var(--text-primary) !important;
        z-index: 10;
    }
    
    .achievements-grid,
    .team-values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-cta {
        padding: 2rem 1.5rem;
    }
    
    .team-cta-buttons {
        flex-direction: column;
    }
    
    .team-cta-buttons .btn {
        width: 100%;
    }
}

/* Responsive SSS */
@media (max-width: 768px) {
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-detail-title {
        font-size: 1.8rem;
    }
    
    .faq-detail-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-cta-section,
    .faq-detail-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta-buttons,
    .faq-detail-cta-buttons {
        flex-direction: column;
    }
    
    .faq-cta-buttons .btn,
    .faq-detail-cta-buttons .btn {
        width: 100%;
    }
    
    .related-faqs-section {
        padding: 1.5rem;
    }
    
    .related-faq-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 4rem 0 5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0.25rem;
    min-width: 30px;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-form-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(180deg, var(--bg-darker) 0%, #000000 100%);
    padding: 4rem 0 1.5rem;
    border-top: 3px solid var(--primary-color);
    margin-top: 4rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 55px;
    width: auto;
    max-width: 300px;
    min-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 126, 120, 0.3));
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.875rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 126, 120, 0.1);
    border: 2px solid rgba(0, 126, 120, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 126, 120, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 126, 120, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-content > p {
    margin: 0;
    white-space: nowrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
}

.design-credit {
    margin: 0;
    white-space: nowrap;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-legal-links span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.design-credit {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.design-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.design-credit a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s;
}

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

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s;
}

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

/* ============================================
   QUOTE MODAL - ADIM ADIM FORM
   ============================================ */

.quote-modal-content {
    max-width: 700px;
}

.quote-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
}

.progress-step.completed .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
}

.progress-step.completed .step-number::after {
    content: '✓';
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: bold;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 0.5rem;
    margin-top: -20px;
}

.progress-step.completed + .progress-line {
    background-color: var(--primary-color);
}

.form-step {
    display: none;
    animation: fadeIn 0.3s;
    min-height: 280px; /* Sabit yükseklik - tüm adımlar için aynı */
}

.form-step.active {
    display: block;
}

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

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

.submit-loading {
    display: inline-block;
}

/* Quote Form Bar (Ana Sayfa - Gösterişli) */
.quote-form-bar {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #001a18 50%, var(--bg-dark) 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 126, 120, 0.2), 0 10px 40px rgba(0, 126, 120, 0.2);
}

.quote-form-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 126, 120, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 126, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
    will-change: opacity;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.quote-form-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 126, 120, 0.05) 50%, transparent 70%);
    will-change: transform;
    animation: shimmer 10s linear infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.quote-form-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.quote-form-closed-notice {
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

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

.quote-form-title-section {
    flex: 1;
}

.quote-form-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(0, 126, 120, 0.6));
    position: relative;
    will-change: filter;
}

.quote-form-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.8;
    will-change: opacity, transform;
}

.quote-form-subtitle-bar {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.quote-form-timer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-light);
    color: var(--bg-darker);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 126, 120, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form-timer:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 126, 120, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.quote-form-timer i {
    font-size: 1.4rem;
}

.quote-form-timer i {
    font-size: 1.1rem;
}

.quote-form-bar-wrapper {
    position: relative;
    z-index: 1;
}

.quote-form-bar-content {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 126, 120, 0.05) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(0, 126, 120, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 126, 120, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 320px; /* Sabit yükseklik - tüm adımlar için aynı */
    box-sizing: border-box;
}

.quote-form-bar-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 126, 120, 0.1), transparent);
    will-change: transform;
    animation: contentShimmer 3s ease-in-out infinite;
}

@keyframes contentShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.quote-form-field-wrapper {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 1.75rem; /* Uyarı mesajları için alt boşluk */
}

/* Adım 3: Tüm alanlar tek satırda - alt satıra geçmesin */
/* Adım 3: Tüm alanlar tek satırda, butonlar altında - Adım 3 görselindeki gibi */
.form-step[data-step="3"] .quote-form-bar-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem; /* 2. adımla aynı padding */
    min-height: auto;
}

/* Adım 3: Input field wrapper'ları yatay düzende */
.form-step[data-step="3"] .quote-form-field-wrapper:not(.quote-form-actions) {
    flex: 0 1 auto !important;
    min-width: 0;
    max-width: none !important;
}

/* Adım 3: Doğum tarihi alanı - sabit genişlik */
.form-step[data-step="3"] .quote-form-field-wrapper:first-child,
.form-step[data-step="3"] .quote-form-field-wrapper:has(.date-input-group) {
    flex: 0 0 300px !important;
    min-width: 280px;
    max-width: 300px !important;
}

/* Adım 3: Telefon alanı - esnek genişlik */
.form-step[data-step="3"] .quote-form-field-wrapper:nth-child(2) {
    flex: 1 1 250px !important;
    min-width: 200px;
}

/* Adım 3: Email alanı - esnek genişlik */
.form-step[data-step="3"] .quote-form-field-wrapper:nth-child(3) {
    flex: 1 1 250px !important;
    min-width: 200px;
}

/* Adım 3: Butonlar en alta - tam genişlik */
.form-step[data-step="3"] .quote-form-actions {
    flex-basis: 100% !important;
    width: 100% !important;
    order: 999 !important;
    margin-top: 0 !important;
}

/* Date input group - tek sırada */
.form-step[data-step="3"] .date-input-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap !important; /* Alt satıra geçmesin */
}

/* Gün inputu */
.form-step[data-step="3"] .date-input-group .date-input-day {
    flex: 0 0 75px !important;
    min-width: 75px !important;
    max-width: 75px !important;
}

/* Ay inputu */
.form-step[data-step="3"] .date-input-group .date-input-month {
    flex: 0 0 75px !important;
    min-width: 75px !important;
    max-width: 75px !important;
}

/* Yıl inputu - tek sırada kalması için */
.form-step[data-step="3"] .date-input-group .date-input-year {
    flex: 0 0 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
}


.quote-form-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.quote-form-field-wrapper input,
.quote-form-field-wrapper select {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Input içeriğinin net görünmesi için */
.quote-form-field-wrapper input:not([type="number"]) {
    text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.5);
}

/* Türkçe karakter desteği için CSS uppercase kaldırıldı - JavaScript ile yapılıyor */

.quote-form-field-wrapper input[type="email"],
#home_email {
    text-transform: none !important;
}

.quote-form-field-wrapper input[type="number"] {
    text-transform: none;
    font-size: 1.1rem;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Number input okları beyaz */
.quote-form-field-wrapper input[type="number"]::-webkit-inner-spin-button,
.quote-form-field-wrapper input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.quote-form-field-wrapper input[type="number"]::-webkit-inner-spin-button:hover,
.quote-form-field-wrapper input[type="number"]::-webkit-outer-spin-button:hover {
    opacity: 0.8;
}

/* Firefox için number input okları */
.quote-form-field-wrapper input[type="number"] {
    -moz-appearance: textfield;
}

.quote-form-field-wrapper input[type="number"]::-moz-number-spin-box {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--bg-dark);
    background-image: none;
    padding-right: 3rem;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.5);
}

.select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
    transition: transform 0.3s, color 0.3s;
}

.custom-select-wrapper:focus-within .select-arrow {
    color: var(--primary-color);
    transform: translateY(-50%) rotate(180deg);
}

.custom-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 126, 120, 0.2);
}

.custom-select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
    padding: 0.75rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

/* Date Input Group */
.date-input-group {
    display: flex;
    gap: 0.75rem;
}

.date-input-group input {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 1.25rem 0.75rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.5);
}

.date-input-group .date-input-day {
    flex: 0 0 90px;
    min-width: 90px;
    max-width: 90px;
}

.date-input-group .date-input-month {
    flex: 0 0 90px;
    min-width: 90px;
    max-width: 90px;
}

.date-input-group .date-input-year {
    flex: 1;
    min-width: 130px;
    max-width: 150px; /* Yıl inputunun maksimum genişliğini sınırla */
}

/* Adım 3'te yıl inputunu daha da sınırla */
.form-step[data-step="3"] .date-input-group .date-input-year {
    max-width: 140px;
    flex: 0 1 140px; /* Sabit genişlik, taşmayı önler */
}

/* Date input okları beyaz */
.date-input-group input[type="number"]::-webkit-inner-spin-button,
.date-input-group input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    filter: brightness(0) invert(1);
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.date-input-group input[type="number"]::-webkit-inner-spin-button:hover,
.date-input-group input[type="number"]::-webkit-outer-spin-button:hover {
    opacity: 0.8;
}

.date-input-group input::placeholder {
    text-align: center;
}

.form-error {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #dc3545;
    animation: fadeIn 0.3s;
    line-height: 1.3;
    padding: 0.25rem 0;
    min-height: 1.5rem; /* Kompakt görünüm için sabit yükseklik */
}

.field-error-message {
    color: #dc3545;
    font-size: 0.75rem;
    animation: fadeIn 0.3s;
    line-height: 1.3;
    padding: 0.25rem 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 10;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Adım 4: Özel yerleşim - Profesyonel tek satır yerleşim */
/* Adım 4: Adım 3 görselindeki gibi - input alanları yatay, butonlar altında */
.form-step[data-step="4"] .quote-form-bar-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem; /* 2. adımla aynı padding */
    min-height: auto;
}

/* Adım 4: Input field wrapper'ları yatay düzende */
.form-step[data-step="4"] .quote-form-field-wrapper:not(.quote-form-actions) {
    flex: 0 1 auto !important;
    min-width: 0;
    max-width: none !important;
}

/* Adım 4: Butonlar en alta - tam genişlik */
.form-step[data-step="4"] .quote-form-actions {
    flex-basis: 100% !important;
    width: 100% !important;
    order: 999 !important;
    margin-top: 0 !important;
}

.form-step[data-step="4"] .ruhsat-wrapper {
    flex: 0 0 auto;
    max-width: none;
    margin-bottom: 0;
    order: -1; /* En sola almak için */
    display: flex;
    flex-direction: column;
}

.form-step[data-step="4"] .ruhsat-image-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-step[data-step="4"] .ruhsat-image-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
    padding-bottom: 0.5rem;
}

.form-step[data-step="4"] .ruhsat-example-image {
    width: 260px;
    height: auto;
    max-height: 190px;
    min-width: 260px;
    object-fit: contain;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s, cursor 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.form-step[data-step="4"] .ruhsat-example-image:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 126, 120, 0.4);
}

/* Adım 4: Ruhsat input ve dropdown - Aynı hizada */
.form-step[data-step="4"] .quote-form-field-wrapper:not(.ruhsat-wrapper) {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-step[data-step="4"] .quote-form-field-wrapper:not(.ruhsat-wrapper) input,
.form-step[data-step="4"] .quote-form-field-wrapper:not(.ruhsat-wrapper) .custom-select {
    width: 100%;
    max-width: 240px;
}

/* Ruhsat no örneği görseli (diğer adımlar için varsayılan) */
.ruhsat-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.ruhsat-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    flex-wrap: nowrap;
}

.ruhsat-example-image {
    width: 150px;
    height: auto;
    max-height: 100px;
    min-width: 150px;
    object-fit: contain;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s, cursor 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    order: -1; /* Sola almak için */
    cursor: pointer;
}

.ruhsat-example-image:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 126, 120, 0.4);
}

.ruhsat-input-container input {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

/* Ruhsat görseli modal */
.ruhsat-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s;
    cursor: pointer;
    overflow: auto;
}

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

.ruhsat-modal-content {
    max-width: 95%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 4px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 126, 120, 0.6), 0 0 0 1000px rgba(0, 0, 0, 0.95);
    animation: scaleIn 0.3s;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px;
    cursor: default;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ruhsat-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.ruhsat-modal-close:hover {
    background: rgba(220, 53, 69, 0.8);
    transform: rotate(90deg);
}

/* Adım 3: Mobilde doğum tarihi ve plaka alt alta */
@media (max-width: 768px) {
    .form-step[data-step="3"] .quote-form-field-wrapper {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    /* Adım 4: Mobilde düzenleme */
    .form-step[data-step="4"] .quote-form-bar-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        flex-wrap: wrap;
    }
    
    .form-step[data-step="4"] .ruhsat-wrapper {
        width: 100%;
        max-width: 100%;
        order: 0;
    }
    
    .form-step[data-step="4"] .ruhsat-image-section {
        width: 100%;
        align-items: center;
    }
    
    .form-step[data-step="4"] .ruhsat-image-label {
        text-align: center;
        width: 100%;
    }
    
    .form-step[data-step="4"] .ruhsat-example-image {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        max-height: 180px;
        margin: 0 auto;
    }
    
    .form-step[data-step="4"] .quote-form-field-wrapper:not(.ruhsat-wrapper) {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .form-step[data-step="4"] .quote-form-field-wrapper:not(.ruhsat-wrapper) input,
    .form-step[data-step="4"] .quote-form-field-wrapper:not(.ruhsat-wrapper) .custom-select {
        width: 100%;
        max-width: 100%;
    }
    
    .ruhsat-wrapper {
        max-width: 100%;
    }
    
    .ruhsat-input-container {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .ruhsat-example-image {
        width: 120px;
        max-height: 80px;
        min-width: 120px;
        order: -1;
    }
    
    .ruhsat-input-container input {
        flex: 1;
        min-width: 150px;
        max-width: none;
    }
    
    .ruhsat-modal-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .ruhsat-modal-content {
        max-width: 98%;
        max-height: 90vh;
        padding: 8px;
    }
}

.quote-form-field-wrapper input:focus,
.quote-form-field-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 126, 120, 0.2);
    transform: translateY(-2px);
}

.quote-form-field-wrapper input::placeholder,
.quote-form-field-wrapper select::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
    font-size: 1rem;
}

.quote-form-btn {
    padding: 1rem 2rem;
    white-space: nowrap;
    min-width: 140px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.quote-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 126, 120, 0.4);
}

/* Tüm adımlarda butonlar aynı yerde - ortada, alt kısımda */
.quote-form-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.quote-form-actions .quote-form-btn {
    flex: 1;
    max-width: 200px;
}


.quote-form-progress {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.progress-step-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.progress-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.progress-step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.progress-step-item.active .progress-step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(0, 126, 120, 0.2);
}

.progress-step-item.completed .progress-step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
}

.progress-step-item.completed .progress-step-number::after {
    content: '✓';
    font-size: 1.2rem;
}

.progress-step-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.progress-step-item.active .progress-step-label {
    color: var(--primary-color);
    font-weight: 700;
}

.progress-line-bar {
    flex: 1;
    height: 3px;
    background-color: var(--border-color);
    margin: 0 0.5rem;
    margin-top: -22px;
    max-width: 100px;
    transition: all 0.3s;
}

.progress-step-item.completed + .progress-line-bar {
    background-color: var(--primary-color);
}

/* Quote Modal Responsive */
@media (max-width: 768px) {
    .quote-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-step {
        flex: 0 0 calc(25% - 0.5rem);
    }
    
    .progress-line {
        display: none;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .quote-form-bar {
        padding: 2rem 0;
    }
    
    .quote-form-header-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .quote-form-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .quote-form-subtitle-bar {
        font-size: 0.95rem;
    }
    
    .quote-form-timer {
        align-self: center;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .quote-form-bar-content {
        padding: 2rem 1.5rem;
        min-height: auto; /* Mobilde otomatik yükseklik */
    }
    
    .form-step {
        min-height: auto; /* Mobilde otomatik yükseklik */
    }
    
    .date-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-input-group input {
        width: 100%;
    }
    
    .success-actions {
        width: 100%;
    }
    
    .call-button {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .quote-form-bar-content {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .quote-form-field-wrapper {
        min-width: 100%;
        max-width: 100%;
    }
    
    .quote-form-btn {
        width: 100%;
    }
    
    .quote-form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .quote-form-actions .quote-form-btn {
        max-width: 100%;
    }
    
    .progress-step-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-line-bar {
        display: none;
    }
    
    .progress-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-step-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   QUOTE PROCESSING SCREEN
   ============================================ */

.quote-processing-screen {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.processing-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.processing-spinner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    animation: spin 2s linear infinite;
}

.processing-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.3;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.processing-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.processing-title i {
    font-size: 1.3rem;
}

.processing-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.countdown-timer {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.timer-circle {
    position: relative;
    width: 150px;
    height: 150px;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 8;
}

.timer-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.processing-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.processing-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.processing-step i {
    font-size: 1.5rem;
    transition: all 0.3s;
}

.processing-step.active {
    color: var(--primary-color);
}

.processing-step.active i {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Success Screen */
.quote-success-screen {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.success-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.success-checkmark {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    animation: checkmarkScale 0.5s ease-out;
}

.success-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #28a745;
    animation: successPulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes checkmarkScale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

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

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

.success-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 126, 120, 0.4);
    transition: all 0.3s;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 126, 120, 0.6);
}

.call-button i {
    font-size: 1.3rem;
}

.success-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.success-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

/* Call Check Screen */
.call-check-screen {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.call-check-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    font-size: 3rem;
    color: var(--bg-darker);
    box-shadow: 0 8px 25px rgba(0, 126, 120, 0.3);
    animation: phonePulse 2s ease-in-out infinite;
}

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

.call-check-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.call-check-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.call-check-btn-yes,
.call-check-btn-no {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.call-check-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 126, 120, 0.4);
}

.call-check-btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.second-processing .processing-title {
    color: var(--primary-color);
}

.final-message .success-checkmark {
    background-color: rgba(0, 126, 120, 0.1);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .quote-processing-screen,
    .quote-success-screen,
    .call-check-screen {
        padding: 2rem 1rem;
    }
    
    .processing-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timer-circle {
        width: 120px;
        height: 120px;
    }
    
    .timer-text {
        font-size: 1.5rem;
    }
    
    .processing-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .call-check-buttons {
        flex-direction: column;
    }
    
    .call-check-btn-yes,
    .call-check-btn-no {
        width: 100%;
    }
    
    .call-check-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .call-check-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.1) 0%, rgba(0, 208, 132, 0.08) 50%, rgba(0, 126, 120, 0.1) 100%);
    overflow: hidden;
    position: relative;
}

.partners-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
    animation-play-state: running;
}

.partners-slide {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    padding: 0 2rem;
    overflow: visible;
}

.partner-logo {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 150px;
    max-height: 150px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transform: scale(1);
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.partner-logo:hover {
    opacity: 1;
}

/* Ortadaki logo için renkli ve büyük görünüm */
.partner-logo.highlighted {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1.05);
    z-index: 10;
    position: relative;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 126, 120, 0.3), 0 0 30px rgba(0, 208, 132, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover durumunda animasyonu durdur */
.partners-section:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 1.5rem 0;
    }
    
    .partners-slide {
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .partner-logo {
        height: 120px;
        max-height: 120px;
        padding: 0;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .partner-logo.highlighted {
        transform: scale(1.05);
        padding: 12px 16px;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .partners-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 1.5rem 0;
    }
    
    .partners-slide {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .partner-logo {
        height: 100px;
        max-height: 100px;
        padding: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .partner-logo.highlighted {
        transform: scale(1.05);
        padding: 10px 14px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .partners-track {
        animation-duration: 20s;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.cta-button {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 255, 217, 0.3);
    text-decoration: none;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 255, 217, 0.5);
    background-color: #00ffe0;
    color: var(--bg-dark);
}

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

.cta-button-phone {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
}

.cta-button-phone i {
    font-size: 1.5rem;
}

.cta-button-whatsapp {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background-color: var(--whatsapp-green);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(45, 183, 66, 0.3);
    text-decoration: none;
    border: none;
}

.cta-button-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(45, 183, 66, 0.5);
    background-color: #2db742;
    color: var(--text-primary);
}

.cta-button-whatsapp i {
    font-size: 1.5rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button,
    .cta-button-phone,
    .cta-button-whatsapp {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .cta-button,
    .cta-button-phone,
    .cta-button-whatsapp {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }
}

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

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .slider-controls {
        bottom: 15px;
        gap: 10px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-darker);
        transition: left 0.3s;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.mobile-active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav ul li a {
        display: block;
        padding: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--bg-dark);
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        border-top: 1px solid var(--border-color);
    }
    
    .dropdown-menu a {
        padding-left: 2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .logo-img {
        height: 55px;
        max-width: 250px;
    }
    
    .logo-link {
        height: 55px;
    }
    
    .main-header {
        padding: 1rem 0;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 0.15rem;
    }
    
    .main-nav a {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
    
    .header-content {
        gap: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .main-header {
        padding: 1rem 0;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .page-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-category-filter {
        padding: 1.5rem;
    }
    
    /* Blog Layout Responsive */
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        order: -1; /* Sidebar'ı üste taşı */
    }
    
    .blog-sidebar-widget {
        margin-bottom: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination-wrapper {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    min-width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.95rem;
    }
    
.pagination-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-2px);
}

.pagination-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-darker);
    cursor: default;
    font-weight: bold;
}

.pagination-prev,
.pagination-next {
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.pagination-dots {
    padding: 0 0.5rem;
    color: var(--text-secondary);
}

.pagination-info {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pagination-info p {
    margin: 0;
}

/* Pagination Responsive */
@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-link {
        min-width: 35px;
        height: 35px;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .pagination-prev,
    .pagination-next {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pagination-numbers {
        gap: 0.25rem;
    }
    
    .pagination-dots {
        display: none;
    }
    
    /* Mobilde sadece önceki/sonraki ve mevcut sayfa göster */
    .pagination-numbers .pagination-link:not(.pagination-active) {
        display: none;
    }
    
    .pagination-numbers .pagination-link.pagination-active {
        display: inline-flex;
    }
}

/* ============================================
   ÜRÜN SEÇİM KARTLARI (YENİ HIZLI TEKLİF FORMU)
   ============================================ */

.product-selection-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    min-height: auto;
}

.product-cards-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 126, 120, 0.05) 100%);
    border: 2px solid rgba(0, 126, 120, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 126, 120, 0.4);
}

.product-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15) 0%, rgba(0, 126, 120, 0.05) 100%);
    box-shadow: 0 0 30px rgba(0, 126, 120, 0.5);
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 126, 120, 0.2);
}

.product-card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-option {
    padding: 1rem 1.25rem;
    background: rgba(0, 126, 120, 0.1);
    border: 1px solid rgba(0, 126, 120, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
}

.product-option:hover {
    background: rgba(0, 126, 120, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.product-option.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 126, 120, 0.3);
}

.product-option span {
    display: block;
}

/* Adım 2 için özel stiller */
/* Adım 2: Adım 3 görselindeki gibi - input alanları yatay, butonlar altında */
.form-step[data-step="2"] .quote-form-bar-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
}

/* Adım 2: Input field wrapper'ları yatay düzende */
.form-step[data-step="2"] .quote-form-field-wrapper:not(.quote-form-actions) {
    flex: 1 1 auto !important;
    min-width: 200px;
    max-width: none !important;
}

/* Adım 2: Butonlar en alta - tam genişlik */
.form-step[data-step="2"] .quote-form-actions {
    flex-basis: 100% !important;
    width: 100% !important;
    order: 999 !important;
    margin-top: 0 !important;
}

/* Adım 2: Input field wrapper'ları yatay düzende */
.form-step[data-step="2"] .quote-form-field-wrapper:not(.quote-form-actions) {
    flex: 1 1 auto !important;
    min-width: 200px;
    max-width: none !important;
}

.form-step[data-step="2"] .quote-form-field-wrapper textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Adım 4: DASK açık adres alanı - daha büyük */
.form-step[data-step="4"] .quote-form-field-wrapper textarea {
    min-height: 140px;
    resize: vertical;
    font-size: 1.15rem;
}

.form-step[data-step="2"] .quote-form-field-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 126, 120, 0.2);
}

/* Responsive - Ürün Kartları */
@media (max-width: 768px) {
    .product-cards-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .product-selection-content {
        padding: 1.5rem;
    }
    
    .form-step[data-step="2"] .quote-form-bar-content {
        padding: 1.5rem;
    }
}

/* ============================================
   ÜRÜN SEÇİM KARTLARI (YENİ HIZLI TEKLİF FORMU)
   ============================================ */

.product-selection-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    min-height: auto;
}

.product-cards-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 126, 120, 0.05) 100%);
    border: 2px solid rgba(0, 126, 120, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 126, 120, 0.4);
}

.product-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 126, 120, 0.15) 0%, rgba(0, 126, 120, 0.05) 100%);
    box-shadow: 0 0 30px rgba(0, 126, 120, 0.5);
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 126, 120, 0.2);
}

.product-card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-option {
    padding: 1rem 1.25rem;
    background: rgba(0, 126, 120, 0.1);
    border: 1px solid rgba(0, 126, 120, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
}

.product-option:hover {
    background: rgba(0, 126, 120, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.product-option.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 126, 120, 0.3);
}

.product-option span {
    display: block;
}

/* Adım 2 için özel stiller */
/* Adım 2: Adım 3 görselindeki gibi - input alanları yatay, butonlar altında */
.form-step[data-step="2"] .quote-form-bar-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
}

/* Adım 2: Input field wrapper'ları yatay düzende */
.form-step[data-step="2"] .quote-form-field-wrapper:not(.quote-form-actions) {
    flex: 1 1 auto !important;
    min-width: 200px;
    max-width: none !important;
}

/* Adım 2: Butonlar en alta - tam genişlik */
.form-step[data-step="2"] .quote-form-actions {
    flex-basis: 100% !important;
    width: 100% !important;
    order: 999 !important;
    margin-top: 0 !important;
}

/* Adım 2: Input field wrapper'ları yatay düzende */
.form-step[data-step="2"] .quote-form-field-wrapper:not(.quote-form-actions) {
    flex: 1 1 auto !important;
    min-width: 200px;
    max-width: none !important;
}

.form-step[data-step="2"] .quote-form-field-wrapper textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Adım 4: DASK açık adres alanı - daha büyük */
.form-step[data-step="4"] .quote-form-field-wrapper textarea {
    min-height: 140px;
    resize: vertical;
    font-size: 1.15rem;
}

.form-step[data-step="2"] .quote-form-field-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 126, 120, 0.2);
}

/* Responsive - Ürün Kartları */
@media (max-width: 768px) {
    .product-cards-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .product-selection-content {
        padding: 1.5rem;
    }
    
    .form-step[data-step="2"] .quote-form-bar-content {
        padding: 1.5rem;
    }
}

/* ============================================
   ÜRÜN KARTLARI RENK GÜNCELLEMELERİ
   ============================================ */

/* Trafik Kartı - Mavi/Turkuaz Renkler */
.product-card[data-category="trafik"] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
}

.product-card[data-category="trafik"]:hover {
    transform: translateY(-5px);
    border-color: #3b82f6 !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5) !important;
}

.product-card[data-category="trafik"].selected {
    border-color: #3b82f6 !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(14, 165, 233, 0.15) 100%) !important;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6) !important;
}

.product-card[data-category="trafik"] .product-card-header i {
    color: #3b82f6 !important;
}

.product-card[data-category="trafik"] .product-card-header {
    border-bottom-color: rgba(59, 130, 246, 0.2) !important;
}

.product-card[data-category="trafik"] .product-option {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

.product-card[data-category="trafik"] .product-option:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: #3b82f6 !important;
}

.product-card[data-category="trafik"] .product-option.selected {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9) !important;
    border-color: #3b82f6 !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4) !important;
}

/* Konut Kartı - Yeşil/Turuncu Renkler */
.product-card[data-category="konut"] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(251, 146, 60, 0.1) 100%) !important;
    border: 2px solid rgba(34, 197, 94, 0.4) !important;
}

.product-card[data-category="konut"]:hover {
    transform: translateY(-5px);
    border-color: #22c55e !important;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5) !important;
}

.product-card[data-category="konut"].selected {
    border-color: #22c55e !important;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(251, 146, 60, 0.15) 100%) !important;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6) !important;
}

.product-card[data-category="konut"] .product-card-header i {
    color: #22c55e !important;
}

.product-card[data-category="konut"] .product-card-header {
    border-bottom-color: rgba(34, 197, 94, 0.2) !important;
}

.product-card[data-category="konut"] .product-option {
    background: rgba(34, 197, 94, 0.1) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.product-card[data-category="konut"] .product-option:hover {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: #22c55e !important;
}

.product-card[data-category="konut"] .product-option.selected {
    background: linear-gradient(135deg, #22c55e, #f97316) !important;
    border-color: #22c55e !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4) !important;
}

/* Sağlık Kartı - Pembe/Kırmızı Renkler */
.product-card[data-category="saglik"] {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%) !important;
    border: 2px solid rgba(236, 72, 153, 0.4) !important;
}

.product-card[data-category="saglik"]:hover {
    transform: translateY(-5px);
    border-color: #ec4899 !important;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5) !important;
}

.product-card[data-category="saglik"].selected {
    border-color: #ec4899 !important;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%) !important;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6) !important;
}

.product-card[data-category="saglik"] .product-card-header i {
    color: #ec4899 !important;
}

.product-card[data-category="saglik"] .product-card-header {
    border-bottom-color: rgba(236, 72, 153, 0.2) !important;
}

.product-card[data-category="saglik"] .product-option {
    background: rgba(236, 72, 153, 0.1) !important;
    border: 1px solid rgba(236, 72, 153, 0.3) !important;
}

.product-card[data-category="saglik"] .product-option:hover {
    background: rgba(236, 72, 153, 0.2) !important;
    border-color: #ec4899 !important;
}

.product-card[data-category="saglik"] .product-option.selected {
    background: linear-gradient(135deg, #ec4899, #ef4444) !important;
    border-color: #ec4899 !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4) !important;
}

/* Form alanları için özel stiller - Ürün kartlarının olduğu yerde */
/* Adım 2: Adım 3 görselindeki gibi */
.form-step[data-step="2"] .quote-form-bar-content.product-selection-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    align-items: flex-start !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    justify-content: flex-start !important;
    padding: 2.5rem !important;
}

/* Adım 4: Adım 3 görselindeki gibi */
/* Adım 4: Adım 3 görselindeki gibi */
.form-step[data-step="4"] .quote-form-bar-content.product-selection-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    align-items: flex-start !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    justify-content: flex-start !important;
    padding: 2.5rem !important; /* 2. adımla aynı padding */
}

/* Adım 3 için özel gap ayarı - Adım 3 görselindeki gibi */
.form-step[data-step="3"] .quote-form-bar-content.product-selection-content {
    display: flex !important;
    flex-direction: row !important; /* Input alanları yatay */
    align-items: flex-start !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important; /* Butonlar alt satıra geçebilir */
    justify-content: flex-start !important;
    padding: 2.5rem !important; /* 2. adımla aynı padding */
}

.form-step[data-step="2"] .quote-form-field-wrapper,
.form-step[data-step="4"] .quote-form-field-wrapper {
    flex: 1 !important;
    min-width: 200px !important;
    max-width: 280px !important;
}

/* Adım 3 için özel kurallar yukarıda tanımlı */
