/* ================================================
   VCall AI - Kurumsal Web Sitesi Stil Dosyası
   Premium CRM & Call Center Çözümü
   ================================================ */

/* -------------------- CSS Variables -------------------- */
:root {
    /* Ana Renkler */
    --primary: #1a2744;
    /* Koyu Lacivert */
    --primary-dark: #0f1829;
    /* Daha Koyu Lacivert */
    --primary-light: #2a3f5f;
    /* Açık Lacivert */

    --secondary: #c9a962;
    /* Altın */
    --secondary-dark: #b8943d;
    /* Koyu Altın */
    --secondary-light: #d4bc7d;
    /* Açık Altın */

    --accent: #cd7f32;
    /* Bakır */
    --accent-light: #daa06d;
    /* Açık Bakır */

    /* Nötr Renkler */
    --dark: #1a1a2e;
    --gray-900: #2d2d44;
    --gray-800: #3d3d5c;
    --gray-700: #5a5a7a;
    --gray-600: #7a7a9a;
    --gray-500: #9a9ab8;
    --gray-400: #b8b8d0;
    --gray-300: #d0d0e0;
    --gray-200: #e8e8f0;
    --gray-100: #f4f4f8;
    --white: #ffffff;

    /* Durum Renkleri */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Tipografi */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.15);

    /* Geçişler */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Dark Theme Variables (for sections) */
    --bg-dark: #1a2744;
    --bg-darker: #0f1829;
    --bg-card: #2a3f5f;
    --gold-primary: #c9a962;
    --gold-secondary: #cd7f32;
    --text-muted: #9a9ab8;
    --font-display: 'Poppins', sans-serif;

    /* Gradient */
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #cd7f32 100%);
}

/* -------------------- Reset & Base -------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

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

a:hover {
    color: var(--secondary-dark);
}

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

/* -------------------- Utility Classes -------------------- */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-gold {
    color: var(--secondary) !important;
}

.text-muted {
    color: var(--gray-500) !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-light {
    background-color: var(--gray-100) !important;
}

.bg-gold-soft {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%) !important;
}

.bg-darker {
    background-color: var(--bg-darker) !important;
}

.bg-darker .text-center .overline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.bg-darker .text-center h2 {
    color: #fff;
    font-size: 2.25rem;
}

.bg-dark-section {
    background-color: var(--bg-dark) !important;
}

/* -------------------- Integration Grid (Global) -------------------- */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.integration-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.integration-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--gold-primary);
}

.integration-item span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* -------------------- Buttons -------------------- */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.3);
    color: var(--white);
}

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

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

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

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

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* -------------------- Navigation -------------------- */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 39, 68, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 45px;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-brand .brand-text span {
    color: var(--secondary);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 10px 20px !important;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* -------------------- Hero Section -------------------- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,169,98,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Hero ile aynı arka plan – Özellikler vb. bölümler için */
.hero-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,169,98,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.hero-bg .container {
    position: relative;
    z-index: 1;
}

.hero-bg .section-header h2 {
    color: var(--white);
}

.hero-bg .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

/* hero-bg içindeki feature-card: koyu arka plana uyumlu */
.hero-bg .feature-card {
    background: rgba(42, 63, 95, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-bg .feature-card:hover {
    background: rgba(42, 63, 95, 0.85);
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-bg .feature-card h4 {
    color: var(--white);
}

.hero-bg .feature-card p {
    color: rgba(255, 255, 255, 0.75);
}

.hero-bg .feature-icon {
    background: rgba(201, 169, 98, 0.15);
}

.hero-bg .feature-link {
    color: var(--secondary-light);
}

.hero-bg .feature-link:hover {
    color: var(--secondary);
}

/* hero-bg içindeki .card (Nasıl Çalışır / Başlamak Çok Kolay) */
.hero-bg .card {
    background: rgba(42, 63, 95, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.hero-bg .card:hover {
    background: rgba(42, 63, 95, 0.85);
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-bg .card h4 {
    color: var(--white);
}

.hero-bg .card .card-body p,
.hero-bg .card p {
    color: rgba(255, 255, 255, 0.75);
}

.hero-bg .card .card-body .bg-gold-soft {
    background: rgba(201, 169, 98, 0.2) !important;
    color: var(--secondary) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.hero-stat .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-mockup img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* -------------------- Section Headers -------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header .overline::before,
.section-header .overline::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* -------------------- Features Section -------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* -------------------- Product Page - Intro & Highlights -------------------- */
.product-intro {
    font-size: 1.1rem;
}

.product-highlights {
    margin-bottom: 0;
}

.product-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-highlight i {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* -------------------- Modules Section -------------------- */
.module-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.module-tab {
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.module-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.module-tab.active {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-color: transparent;
    color: var(--white);
}

.module-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.module-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.module-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.module-visual svg {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.module-visual img {
    width: 100%;
}

/* Sektorler - sector-visual (oldthema) */
.sector-visual {
    position: relative;
}

.sector-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.sector-image-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.sector-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.module-features {
    list-style: none;
}

.module-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.module-features li:last-child {
    border-bottom: none;
}

.module-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.module-features li strong {
    color: var(--primary);
    display: block;
    margin-bottom: 3px;
}

.module-features li span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* -------------------- Stats Section -------------------- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-card {
    text-align: center;
    padding: 40px;
}

.stat-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: var(--radius-full);
    background: rgba(201, 169, 98, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.stat-card .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.stat-card .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* -------------------- Testimonials -------------------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--gray-200);
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.testimonial-author-info span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.testimonial-rating {
    margin-top: 20px;
    color: var(--secondary);
}

/* -------------------- CTA Section -------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,169,98,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(201,169,98,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(201,169,98,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* -------------------- Footer -------------------- */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer .row.g-5 {
    align-items: flex-start;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-text span {
    color: var(--secondary);
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 1.1rem;
    text-align: center;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* -------------------- Page Headers -------------------- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,169,98,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
}

.page-header__inner--with-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.page-header__inner--with-visual .page-header__content {
    flex: 1;
    min-width: 280px;
}

.page-header__visual {
    flex-shrink: 0;
    max-width: 360px;
}

.page-header__visual svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .page-header__visual {
        max-width: 240px;
        margin: 0 auto;
    }
}

/* -------------------- Cards Generic -------------------- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-body {
    padding: 30px;
}

.bg-darker .card {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.bg-darker .card h5,
.bg-darker .card .card-title {
    color: #fff;
}

.bg-darker .card .text-muted {
    color: var(--text-muted);
}

.bg-darker .card .text-secondary {
    color: var(--secondary) !important;
}

.bg-darker .text-center p.text-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Hakkımızda – Vizyon & Misyon kartları */
.mission-card {
    background: rgba(42, 63, 95, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: border-color 0.2s, background 0.2s;
}

.mission-card:hover {
    background: rgba(42, 63, 95, 0.65);
    border-color: rgba(201, 169, 98, 0.25);
}

.mission-card .mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.mission-card h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* -------------------- Güvenlik sayfası -------------------- */
.security-header {
    position: relative;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.compliance-badge .badge-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.compliance-badge span {
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 576px) {
    .compliance-badges {
        gap: 20px;
    }
    .compliance-badge .badge-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
}

/* -------------------- Forms -------------------- */
.form-control,
.form-select {
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* -------------------- Contact Section -------------------- */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    color: var(--white);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: rgba(201, 169, 98, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.contact-info-item h5 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* -------------------- Animations -------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

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

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .section-padding {
        padding: 70px 0;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .navbar-collapse {
        background: var(--primary);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .hero p.lead {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 50px 0;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .module-tabs {
        flex-direction: column;
    }

    .module-tab {
        width: 100%;
        text-align: center;
    }
}

/* -------------------- Scroll to Top -------------------- */
.scroll-top {
    position: fixed;
    bottom: 88px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* -------------------- Preloader -------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 98, 0.2);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* -------------------- Pricing Cards -------------------- */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 5px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.pricing-card h4 {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
}

.pricing-features li i {
    color: var(--success);
}

.pricing-features li.disabled {
    color: var(--gray-400);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--gray-400);
}

/* -------------------- Timeline -------------------- */
.timeline {
    position: relative;
    padding-left: 30px;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-item h5 {
    margin-bottom: 10px;
}

.timeline-item p {
    margin-bottom: 0;
}

/* -------------------- Accordion -------------------- */
.accordion-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 20px 25px;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--gray-100);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a962'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray-600);
}

/* -------------------- Trust Badges -------------------- */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-500);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--gray-400);
}

.trust-badge span {
    font-weight: 500;
}

/* Trust Badges – sabit arka plan resmi (sayfa akarken görsel sabit) */
.trust-badges-section {
    position: relative;
    overflow: hidden;
    background-image: url("https://i.pinimg.com/736x/ab/79/f3/ab79f3a8cdbd6afb23b979c673751d36.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.trust-badges-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(15, 24, 41, 0.82) 0%, rgba(26, 39, 68, 0.78) 50%, rgba(42, 63, 95, 0.72) 100%);
}

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

.trust-badges-section .trust-badges {
    border-top: none;
    border-bottom: none;
}

.trust-badges-section .trust-badge {
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges-section .trust-badge i {
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .trust-badges-section {
        background-attachment: scroll;
    }
}

/* -------------------- Team Cards -------------------- */
.team-card {
    text-align: center;
    padding: 30px;
}

.team-card .avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h5 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-card .social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card .social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.team-card .social a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* -------------------- Chat Widget (Gemini AI) -------------------- */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    font-family: var(--font-body);
}

.chat-widget__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chat-widget__toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(201, 169, 98, 0.5);
}

.chat-widget__panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 520px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}

.chat-widget.is-open .chat-widget__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-widget__header {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-widget__title {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-widget__close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-widget__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-widget__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--gray-100);
}

.chat-widget__msg {
    display: flex;
    max-width: 90%;
}

.chat-widget__msg--user {
    align-self: flex-end;
}

.chat-widget__msg--user .chat-widget__bubble {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 16px 16px 4px 16px;
}

.chat-widget__msg--bot .chat-widget__bubble {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--gray-200);
    border-radius: 16px 16px 16px 4px;
}

.chat-widget__bubble {
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-widget__msg--typing .chat-widget__bubble {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
}

.chat-widget__typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-500);
    animation: chat-typing 0.6s ease-in-out infinite;
}

.chat-widget__typing-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-widget__typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes chat-typing {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.chat-widget__input-wrap {
    padding: 12px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-widget__input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-widget__input:focus {
    border-color: var(--secondary);
}

.chat-widget__send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, opacity 0.2s;
}

.chat-widget__send:hover {
    transform: scale(1.05);
}

.chat-widget__send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 480px) {
    .chat-widget { bottom: 16px; right: 16px; }
    .chat-widget__panel { width: calc(100vw - 32px); right: -8px; height: 70vh; max-height: 520px; }
}

/* -------------------- Hukuki sayfalar (Gizlilik, Kullanım Koşulları, KVKK) -------------------- */
.legal-content h5 { margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal-content h5:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; }
.legal-content a { color: var(--secondary); }
.legal-content a:hover { color: var(--secondary-dark); text-decoration: underline; }