* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #305772;
    --secondary-color: #e76d16;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --border-color: #e2e8f0;
    --text-dark: #1a202c;
    --text-light: #718096;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* ========== ANIMASYONLAR ========== */

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== HEADER ========== */

header {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
    animation: slideInLeft 0.8s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 200px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.logo-text {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

nav a:hover::after {
    width: 100%;
}

nav svg {
    width: 18px;
    height: 18px;
}

.toggle-btn {
    display: none;
}

/* ========== PAGE HERO SECTION ========== */

.page-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    padding: 60px 40px;
    margin-top: 0;
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content h1 {
    color: var(--text-dark);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-hero-content p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-benefits li {
    color: var(--text-dark);
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 14px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.page-hero-form {
    background: white;
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 380px;
}

.page-hero-form h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 109, 22, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(48, 87, 114, 0.2);
    margin-top: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 87, 114, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* ========== PRICES SECTION ========== */

.prices-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.prices-container {
    width: 100%;
}

.prices-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    border-radius: 8px;
}

.tab-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 109, 22, 0.3);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.price-table {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    max-width: 100%;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.price-table thead {
    background: #f8f8f8;
}

.price-table th {
    padding: 16px 14px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
}

.price-table th:first-child {
    text-align: center;
}

.price-table td {
    padding: 14px 14px;
    text-align: center;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.price-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.price-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.price-table tbody tr:hover {
    background: rgba(48, 87, 114, 0.05);
    transition: background-color 0.2s ease;
}

/* Kasko Fiyatları Tablosu - 5 Sütun */
.price-table-fiyat table {
    table-layout: auto;
}

.price-table-fiyat th,
.price-table-fiyat td {
    padding: 14px 12px;
    font-size: 13px;
}

/* Kasko Hasarsızlık İndirimleri Tablosu - 3 Sütun */
.price-table-indirim table {
    table-layout: fixed;
}

.price-table-indirim th {
    padding: 16px 14px;
    word-wrap: break-word;
    white-space: normal;
}

.price-table-indirim th:first-child {
    width: 12%;
}

.price-table-indirim th:nth-child(2) {
    width: 18%;
}

.price-table-indirim th:nth-child(3) {
    width: 70%;
}

.price-table-indirim td {
    padding: 14px 14px;
    word-wrap: break-word;
    white-space: normal;
}

.price-table-indirim td:first-child {
    width: 12%;
    text-align: center;
}

.price-table-indirim td:nth-child(2) {
    width: 18%;
    text-align: center;
}

.price-table-indirim td:nth-child(3) {
    width: 70%;
    text-align: left;
    line-height: 1.6;
}

.price-note {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.price-note p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.price-note p:last-child {
    margin-bottom: 0;
}

.price-note strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ========== INFO SECTION ========== */

.info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.info-container {
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    animation: floatIn 1.2s ease;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.info-card p:last-of-type {
    margin-bottom: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
}

.info-card li {
    color: var(--text-dark);
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.info-card li:last-child {
    margin-bottom: 0;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

/* ========== PARTNERS SECTION ========== */

.partners-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.partners-container {
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    animation: floatIn 1.2s ease;
}

.partner-logo {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* ========== HERO SECTION ========== */

.hero {
    width: 100%;
    padding: 80px 40px;
    text-align: center;
    animation: floatIn 1s ease;
    background: linear-gradient(135deg, rgba(48, 87, 114, 0.80) 0%, rgba(118, 75, 162, 0.80) 100%), url('../images/trafik.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    color: #e76d16;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: slideInDown 1s ease 0.2s both;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
}

.hero h1 span {
    color: #e76d16;
    display: inline;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 0;
    animation: slideInUp 1s ease 0.4s both;
    max-width: 650px;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}

/* ========== INSURANCE SECTION ========== */

.insurance-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    animation: floatIn 1s ease;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 60px;
    animation: fadeIn 1.2s ease;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    animation: floatIn 1.2s ease;
}

.insurance-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    animation: rotateIn 0.8s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 0;
}

.insurance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.insurance-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.insurance-card:hover::before {
    top: 50%;
    right: 50%;
}

.insurance-card:hover::after {
    transform: scaleX(1);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    animation: pulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.insurance-card:hover .card-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.card-icon svg {
    width: 36px;
    height: 36px;
}

.card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.insurance-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.insurance-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-features {
    text-align: left;
    margin-bottom: 24px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.card-features li {
    list-style: none;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.card-features li:hover {
    color: var(--text-dark);
    transform: translateX(3px);
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.card-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.card-btn:active {
    transform: translateY(-1px);
}

.card-btn:hover::before {
    left: 100%;
}

/* ========== FEATURES SECTION ========== */

.features-section {
    background: linear-gradient(135deg, #305772 0%, #2d3748 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
}

.features-container {
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: floatIn 1.2s ease;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    top: 50%;
    right: 50%;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(48, 87, 114, 0.15));
}

.feature-card:hover .feature-image {
    transform: scale(1.12);
}

.feature-card h4 {
    color: #1a202c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ========== CTA SECTION ========== */

.cta-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px;
    animation: floatIn 1.4s ease;
}

.cta-box {
    background: white;
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 18px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    color: var(--text-dark);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-box p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 500;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.cta-btn:active {
    transform: translateY(-2px);
}

.cta-btn:hover::before {
    left: 100%;
}

/* ========== TESTIMONIALS SECTION ========== */

.testimonials-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.testimonials-container {
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: floatIn 1.2s ease;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(48, 87, 114, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.testimonial-card:hover::before {
    top: 50%;
    right: 50%;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */

footer {
    background: linear-gradient(135deg, #305772 0%, #234555 100%);
    color: #ffffff;
    padding: 60px 40px 30px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========== RESPONSIVE ========== */
/* Tüm mobile responsive kuralları mobile.css dosyasında tanımlanmıştır */

/* ========== UTILITY ========== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}

.active {
    color: var(--primary-color);
}

/* Input Error State */
.form-group input.input-error,
.form-group select.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Ripple Efekti */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Smooth Transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: ease;
    transition-duration: 150ms;
}

button, a {
    transition-property: all;
    transition-duration: 300ms;
}


/* ========== İSTATİSTİKLER BÖLÜMÜ ========== */

.stats-section {
    background: linear-gradient(135deg, #305772 0%, #2d3748 100%);
    padding: 80px 40px;
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-section .section-title {
    color: white;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

/* ========== PARTNER LOGOLARı CAROUSEL ========== */

.partners-section {
    padding: 80px 40px;
    background-color: white;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-section .section-title {
    margin-bottom: 60px;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, white 0%, transparent 15%, transparent 85%, white 100%);
    padding: 20px 0;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    padding: 0 40px;
}

.carousel-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 100px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    opacity: 0.7;
}

.carousel-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel:hover .carousel-track {
    animation-play-state: paused;
}

/* ========== WhatsApp SABIT BUTON ========== */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .stats-section {
        padding: 60px 20px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .partners-carousel {
        padding: 15px 0;
    }

    .carousel-track {
        gap: 30px;
        padding: 0 20px;
    }

    .carousel-item {
        min-width: 120px;
        height: 80px;
    }

    .carousel-item img {
        max-height: 60px;
    }
}
