@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #f97316;
    --accent-color: #fbbf24;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --bg-gradient-1: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --bg-gradient-2: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --bg-gradient-3: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--bg-gradient-2);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}

.btn-success i {
    margin-right: 8px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    /* Navbar yüksekliği kadar (yaklaşık 100px) üstten boşluk bırak */
    /* Yüksekliği biraz artırdım */
    min-height: 600px; 
    height: 80vh;
    padding: 0; 
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* İçerik padding'ini kaldırdım, flex center halledecek */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

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

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

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mevcut hero-content stilleri uyumlu kalsın */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

/* Animasyonlar */
.hero-slide.active .hero-title { animation: fadeInUp 0.8s 0.2s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-subtitle { animation: fadeInUp 0.8s 0.4s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-stats { animation: fadeInUp 0.8s 0.6s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-buttons { animation: fadeInUp 0.8s 0.8s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-stories { animation: fadeInUp 0.8s 0.6s forwards; opacity: 0; animation-fill-mode: forwards; }

.hero-stories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-story-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-story-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.story-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.story-info {
    text-align: left;
}

.story-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.story-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

@media (max-width: 768px) {
    .hero-stories {
        gap: 15px;
    }
    .hero-story-card {
        width: 100%;
    }
}

/* Eski hero-section stillerini override etmemiz gerekebilir, ama yukarıdaki tanımlar yeterli olmalı */

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    color: white;
    z-index: 5;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}

.hero-title span {
    color: rgba(255,255,255,0.95);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
    max-width: 90%;
}

.hero-buttons-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-white {
    background: white;
    color: var(--text-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #f8fafc;
}

/* Slide specific button colors */
.hero-slide:nth-child(1) .btn-white { color: #c2410c; }
.hero-slide:nth-child(2) .btn-white { color: #0369a1; }
.hero-slide:nth-child(3) .btn-white { color: #047857; }

.hero-mini-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.mini-stat {
    font-size: 14px;
    opacity: 0.9;
}
.mini-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-image-blob {
    width: 450px;
    height: 450px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 8px solid rgba(255,255,255,0.15);
    animation: blob-float 8s ease-in-out infinite alternate;
}

.hero-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes blob-float {
    0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: translateY(0); }
    100% { border-radius: 58% 42% 30% 70% / 55% 55% 45% 45%; transform: translateY(-15px); }
}

.hero-stories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-story-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-story-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.story-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.story-info {
    text-align: left;
}

.story-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.story-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* Animations */
.hero-slide.active .hero-title { animation: fadeInUp 0.8s 0.2s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-subtitle { animation: fadeInUp 0.8s 0.4s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-buttons-group { animation: fadeInUp 0.8s 0.6s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-mini-stats { animation: fadeInUp 0.8s 0.8s forwards; opacity: 0; animation-fill-mode: forwards; }
.hero-slide.active .hero-right { animation: fadeInUp 1s 0.4s forwards; opacity: 0; animation-fill-mode: forwards; }

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

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column; 
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 40px;
    }
    .hero-left {
        text-align: center;
        max-width: 100%;
    }
    .hero-title {
        font-size: 36px;
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons-group {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-mini-stats {
        justify-content: center;
    }
    .hero-image-blob {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    .hero-story-card {
        width: 100%;
        min-width: 280px;
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: #f8fafc; /* Çok açık gri/mavi arka plan */
    padding: 80px 0;
}

.features-section::before {
    display: none; /* Eski efekti kaldır */
}

.features-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0;
}

.section-title .highlight-text {
    color: #e11d48; /* Kırmızımsı vurgu rengi */
    font-weight: 900;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: transparent;
    padding: 15px;
    border-radius: 12px;
    text-align: left;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: transparent;
}

.feature-card::before {
    display: none;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #fff1f2; /* Pastel kırmızı/pembe arka plan */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 0; /* Sağ tarafa boşluk */
    font-size: 24px;
    color: #e11d48;
    box-shadow: none;
    flex-shrink: 0;
}

.feature-card:nth-child(2n) .feature-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.feature-card:nth-child(3n) .feature-icon {
    background: #f0fdf4;
    color: #22c55e;
}

.feature-card:hover .feature-icon {
    transform: none;
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 13px;
    margin: 0;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    padding: 80px 0;
    background: white;
}

.packages-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.package-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--bg-gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    /* Default display */
    display: flex !important; 
    /* Genişlemeyi önle */
    max-width: 380px; 
    width: 100%;
    margin: 0 auto; /* Ortala */
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* FILTER HIDDEN CLASS - MOVED AFTER PACKAGE CARD TO ENSURE PRIORITY */
.package-card.filter-hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1;
}

.package-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-header {
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.package-section {
    margin-bottom: 15px;
}

.check-list li {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px; /* 6px'den 4px'e düşürüldü */
    display: flex;
    align-items: flex-start;
    line-height: 1.4; /* Satır yüksekliği azaltıldı */
}

.check-list li i {
    color: #22c55e;
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

.package-price-area {
    margin-top: auto;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1;
    margin-bottom: 8px;
}

.installment-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.package-footer-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    box-shadow: none !important; /* Gölgeleri kaldır */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Detayları Gör - Header Laciverti Outline */
.package-footer-actions .btn-primary {
    background: transparent !important;
    color: #1e293b !important; /* Header Rengi */
    border: 1px solid #1e293b !important;
}

.package-footer-actions .btn-primary:hover {
    background: #1e293b !important;
    color: white !important;
    transform: translateY(-1px);
}

/* Satın Al - Header Sarısı */
.package-footer-actions .btn-success {
    background: #fbbf24 !important; /* Header Satın Al Sarısı */
    color: #1e293b !important; /* Koyu Metin */
}

.package-footer-actions .btn-success:hover {
    background: #f59e0b !important;
    transform: translateY(-1px);
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
    background: var(--bg-white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.story-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.story-card:hover::before {
    opacity: 0.03;
}

.story-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--bg-gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.story-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.story-result {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text {
    color: var(--text-gray);
    font-style: italic;
    font-size: 15px;
}

/* ===== VIDEO SAMPLES SECTION ===== */
.videos-section {
    background: #f9fafb;
    padding: 100px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: #000;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    opacity: 0.6;
}

.video-thumbnail i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail i {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    padding-bottom: 0;
}

.video-thumbnail .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h4 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.video-card p {
    padding: 0 20px 20px;
    color: var(--text-gray);
    font-size: 14px;
}

.videos-section .btn {
    background: #1e293b; /* Direkt Koyu Lacivert */
    color: white;        /* Beyaz Yazı */
    border: 1px solid #1e293b;
    box-shadow: none;
    margin-top: 40px;
    font-weight: 600;
    padding: 12px 30px;
    transition: none; /* Animasyon yok */
}

.videos-section .btn:hover {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
    transform: none; /* Hareket yok */
    box-shadow: none;
    opacity: 1;
}

/* ===== CALCULATOR SECTION (Shared Logic) ===== */
.calculator-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* ===== CALCULATOR CARDS (Main Page) ===== */
.calc-cards-section {
    padding: 100px 0;
    background: #f8fafc;
}

.calc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.calc-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.calc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.calc-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    transition: transform 0.4s ease;
}

.calc-card:hover .calc-icon {
    transform: scale(1.1) rotate(5deg);
}

.calc-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.calc-card p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.calc-card:hover .btn-link {
    gap: 12px;
    color: var(--primary-dark);
}

/* ===== PUAN HESAPLAMA PAGE ===== */
.page-header-section {
    background: var(--bg-gradient-1);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.calculator-page-section {
    padding: 60px 0 100px;
    background: #f8fafc;
    min-height: 60vh;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto; /* Adjusted margin */
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-top: -40px; /* Overlap effect */
    position: relative;
    z-index: 10;
}

.calc-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    flex-wrap: wrap;
}


.calc-tab {
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}

.calc-tab.active, .calc-tab:hover {
    background: var(--bg-gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.calc-group {
    margin-bottom: 10px;
}

.calc-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.input-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.input-pair input {
    width: 100%;
    padding: 10px; /* 12px'den 10px'e düşürdüm */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px; /* 14px'den 13px'e düşürdüm */
    transition: all 0.3s;
    text-align: center; /* Ortala */
}

.input-pair input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calc-group.full-width {
    grid-column: 1 / -1;
}

.calc-group.full-width input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.calc-result {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: #f0fdf4;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
    animation: fadeInUp 0.5s ease;
}

.score-display {
    font-size: 56px;
    font-weight: 900;
    color: #16a34a;
    line-height: 1;
    margin: 15px 0;
}

.score-display small {
    font-size: 18px;
    color: #15803d;
    font-weight: 600;
    margin-left: 5px;
}

.alert-info-box {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-info-box i {
    color: #3b82f6;
    font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .calculator-wrapper {
        padding: 24px;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-block {
        width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a; /* Header'dan bir ton daha koyu */
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--bg-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-column p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-icons-footer {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none !important;
}

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

.footer-column h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.footer-column ul li a {
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px 0 0 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 12px 20px;
    border-radius: 0 10px 10px 0;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== HEADER & NAVBAR ===== */
/* Announcement Bar */
.announcement-bar {
    background: #64748b; /* Turuncu */
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1002;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.badge-new {
    background: white;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.announcement-text {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}
.announcement-text:hover {
    opacity: 0.9;
}

/* Info Bar */
.info-bar {
    background: #1e293b; /* Koyu Lacivert */
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1001;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.contact-info a:hover { color: white; }
.contact-info i { color: #fbbf24; font-size: 14px; }

.info-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons-header {
    display: flex;
    gap: 15px;
}
.social-icons-header a {
    color: inherit;
    font-size: 14px;
    transition: color 0.2s;
}
.social-icons-header a:hover { color: white; }

.divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

.web-app-link {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.web-app-link:hover { color: white; }

/* Main Header */
.main-header {
    background: #1e293b; /* Morumsu Lacivert */
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1); /* Logoyu beyaz yap */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s;
}

.nav-link:hover {
    opacity: 1;
    color: #fbbf24 !important; /* Sarı */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Special Buttons */
.btn-header-special {
    background: #f97316; /* Turuncu */
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.btn-header-special:hover {
    background: #ea580c;
    transform: translateY(-2px);
    color: white;
}

.badge-small {
    background: white;
    color: #f97316;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
}

.header-actions {
    display: flex;
    gap: 12px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.btn-header-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-header-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

.btn-header-primary {
    background: #fbbf24; /* Sarı */
    color: #1e293b; /* Koyu metin */
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}
.btn-header-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    color: #1e293b;
}

/* Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

@media (max-width: 1200px) {
    .nav-menu { gap: 15px; }
    .header-actions { margin-left: 10px; padding-left: 10px; }
}

@media (max-width: 992px) {
    .info-bar { display: none; }
    .announcement-bar { display: none; } /* Mobilde yer kaplamasın diye gizlenebilir veya kalabilir */
    
    .nav-menu {
        position: fixed;
        top: 74px; /* Header yüksekliği */
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: #312e81;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    
    .mobile-menu-toggle { display: flex; }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        border: none;
        padding: 0;
        margin: 0;
    }
    .btn-header-outline, .btn-header-primary, .btn-header-special {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 10px 0;
    }
}

.btn-calc-submit {
    background: #1e293b; /* Header Laciverti */
    color: white;
    margin-top: 40px; /* Daha fazla boşluk */
    padding: 15px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.3);
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-calc-submit:hover {
    transform: translateY(-3px);
    background: #0f172a; /* Daha koyu lacivert */
    box-shadow: 0 15px 30px rgba(30, 41, 59, 0.4);
    color: white;
}

/* ===== HAKKIMIZDA PAGE STYLES ===== */
.about-story-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features-list {
    margin-top: 30px;
}

.af-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.af-item i {
    color: var(--success-color);
    font-size: 20px;
}

.af-item span {
    font-weight: 600;
    color: var(--text-dark);
}

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

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-gradient-1);
    color: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.about-stats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 500;
}

.mission-vision-section {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-cta {
    padding: 80px 0;
    background: var(--bg-gradient-1);
    color: white;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .experience-badge { right: 20px; bottom: -20px; padding: 20px; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* ===== KESFET PAGE STYLES ===== */
.discover-section {
    padding: 60px 0 100px;
    background: white;
}

.discover-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 16px;
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.discover-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s;
}

.discover-tab.active, .discover-tab:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

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

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

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-benefits {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.feature-benefits h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.feature-benefits li i {
    color: var(--success-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-media {
    position: relative;
}

.feature-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ef4444; /* Youtube Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(239, 68, 68, 0.4);
}

.video-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

@media (max-width: 992px) {
    .feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .discover-tabs { width: 100%; left: 0; transform: none; justify-content: flex-start; overflow-x: auto; white-space: nowrap; display: flex; }
    .discover-tab { flex-shrink: 0; }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== VIDEOS PAGE STYLES ===== */
.videos-page-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.video-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.video-filters .filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-filters .filter-btn:hover {
    background: var(--bg-gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.video-filters .filter-btn.active {
    background: var(--bg-gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.videos-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.video-page-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.video-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.video-page-card.filter-hidden {
    display: none !important;
}

.video-page-thumbnail {
    position: relative;
    background: #000;
}

.video-page-thumbnail .video-container {
    border-radius: 0;
    box-shadow: none;
}

.video-page-content {
    padding: 24px;
}

.video-category-badge {
    display: inline-block;
    background: var(--bg-gradient-1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-page-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-page-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-meta i {
    color: var(--secondary-color);
    font-size: 14px;
}

.videos-cta-section {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.videos-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.videos-cta-content p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

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

@media (max-width: 768px) {
    .videos-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .video-filters .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .videos-cta-section {
        padding: 40px 24px;
    }
    
    .videos-cta-content h3 {
        font-size: 24px;
    }
    
    .videos-cta-buttons {
        flex-direction: column;
    }
    
    .videos-cta-buttons .btn {
        width: 100%;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.contact-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-info-card small {
    font-size: 13px;
    color: var(--text-gray);
}

.contact-form-section {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-description {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group .required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

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

.checkbox-group label a:hover {
    color: var(--primary-dark);
}

.form-messages {
    margin-bottom: 24px;
    min-height: 40px;
}

.message-label {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.message-label.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}

.message-label.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--bg-gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-section {
        padding: 30px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-section h2 {
        font-size: 26px;
    }
}
