/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #FFA500;
    --dark-bg: #000000;
    --light-bg-dark-overlay: rgba(26, 26, 26, 0.6);
    --gold-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --bg-gradient: linear-gradient(to right, #bb8702 0%, #3e331c 50%, var(--dark-bg) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Yeniden Kullanılabilir Sınıflar */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFFF00 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-shadow {
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.cta-shadow:hover {
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.4);
}

/* Genel Odak Stilleri */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dil Seçimi */
.language-toggle {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 10;
}

.language-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 4px;
}

.language-container i {
    color: var(--primary-color);
    margin-left: 8px;
    font-size: 16px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 215, 0, 0.2);
}

/* Ana Bölüm (Hero) */
.hero-section {
    position: relative;
    padding: 80px 0;
    background: var(--bg-gradient);
    color: var(--primary-color);
    overflow: hidden;
}

.container-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container-custom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* İçerik ve Başlık */
.hero-content {
    flex: 1;
    max-width: 500px;
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buton */
.hero-cta {
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    margin-top: 30px;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(255, 165, 0, 0.4);
}

/* Video Bölümü için Düzeltmeler */
.hero-video-container {
    flex: 1;
    max-width: 800px;
    width: 100%;
    margin-top: 40px;
    order: 1;
}

@media (min-width: 768px) {
    .hero-video-container {
        margin-left: 40px;
        margin-top: 0;
        order: 2;
    }
}

.hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Mesaj kutularının ana stili */
#message-container {
    max-width: 700px; /* Form konteynerinizle aynı genişlikte */
    margin: 1.5rem auto 0;
}

.message-box {
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Başarı mesajı için özel stiller */
.message-box.success {
    background-color: rgba(144, 238, 144, 0.2);
    color: #a3e635;
    border-color: #a3e635;
    opacity: 1;
    transform: translateY(0);
}

/* Hata mesajı için özel stiller */
.message-box.error {
    background-color: rgba(255, 105, 97, 0.2);
    color: #ff6961;
    border-color: #ff6961;
    opacity: 1;
    transform: translateY(0);
}
/* Diğer Bölümler */
/* İstatistikler Bölümü */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 60px;
    padding: 20px;
    background-color: rgba(51, 51, 51, 0.7);
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

/* Logo Ticker Section */
.logo-ticker-section {
    padding: 2rem 0;
    background-color: #a7a7a7;
    overflow: hidden;
    position: relative;
}

.logo-ticker-container {
    width: 100%;
    white-space: nowrap;
}

.logo-ticker-track {
    display: inline-block;
    animation: scrollLogos 150s linear infinite;
}

.ticker-logo {
    height: 100px;
    width: 100px;
    margin: 0 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.ticker-logo:hover {
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Genel Section Stilleri */
section {
    padding: 96px 24px;
    background-color: var(--dark-bg);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    text-align: center;
}

p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 2rem 0;
    background: var(--bg-gradient);
}

.about-container {
    max-width: 800px;
    min-height: 50vh;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-content h2,
.about-content p {
    text-align: left;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f1f1;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services-section {
    background: var(--bg-gradient);
    padding: 80px 20px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.service-card {
    text-align: center;
    background: var(--light-bg-dark-overlay);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 40px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.15);
    background: rgba(26, 26, 26, 0.8);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-gradient);
    padding: 96px 24px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gold-gradient);
    border-radius: 12px;
    margin-bottom: 24px;
}

.section-icon i {
    font-size: 25px;
    color: var(--dark-bg);
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 768px;
    margin: 0 auto;
}

/* Carousel */
.testimonials-carousel {
    position: relative;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.25);
}

.carousel-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial-display {
    position: relative;
    margin-bottom: 48px;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-bg) 100%);
    border-radius: 24px;
    padding: 64px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-logo,
.testimonial-logo-text {
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

/* Video */
.video-section {
    order: 2;
}

.video-player {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--dark-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-controls {
    opacity: 1;
}

.play-button,
.mute-button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover,
.mute-button:hover {
    background: #FFFF00;
    transform: scale(1.1);
}

.play-button i,
.mute-button i {
    color: var(--dark-bg);
    font-size: 20px;
}

.mute-button {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
}

.mute-button i {
    color: var(--primary-color);
    font-size: 16px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-player.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-overlay {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-overlay:hover {
    background: #FFFF00;
    transform: scale(1.1);
}

.video-play-overlay i {
    color: var(--dark-bg);
    font-size: 48px;
    margin-left: 8px;
}

/* İçerik Bölümü */
.content-section {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating i {
    color: #666666;
    font-size: 15px;
}

.rating i.filled {
    color: var(--primary-color);
}

.rating-value {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 8px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
}

.customer-details {
    display: flex;
    flex-direction: column;
}

.customer-name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 4px;
}

.customer-position {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.customer-company {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.industry-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
}

/* Carousel Navigasyon */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

.carousel-nav i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Testimonial Thumbnails */
.testimonial-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.thumbnail-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.thumbnail-card:hover:not(.active) {
    opacity: 1;
    transform: scale(1.02);
}

.thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.thumbnail-info {
    text-align: left;
}

.thumbnail-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.thumbnail-company {
    color: var(--primary-color);
    font-size: 12px;
}

/* Tüm video iframe'leri için */
.video-player iframe,
.second-video iframe {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    background: #000;
}

/* CTA Buton Çerçevesi */
.cta-button-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.section-cta {
    text-align: center;
}

/* Ana bölüm ve container stilleri */
.contact-section {
    background-color: #2c292100;
    color: #f0f0f0;
    padding: 6rem 1rem;
    font-family: 'Arial', sans-serif;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #3b372e00;
    border-radius: 10px;
}

.contact-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #b0b0b0;
}

/* Form stilleri */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    background-color: #4a453e;
    color: #f0f0f0;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a0a0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    box-shadow: 0 0 0 2px #ffc107, 0 0 0 4px rgba(255, 193, 7, 0.4);
}

/* Bütçe ve Proje Türü seçenekleri için özel stiller */
.budget-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.budget-options label {
    font-size: 1rem;
    color: #ffc107;
    font-weight: 600;
}

/* Buton stilleri */
.contact-form button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-image: linear-gradient(to right, #ffc107, #ff9800);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive (Mobil Uyumlu) ayarlar */
@media (min-width: 768px) {
    .contact-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }

    .form-group-grid,
    .full-width-input {
        grid-column: 1 / -1;
    }

    .form-group-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
        width: 100%;
    }
}

/* Mesaj kutuları için genel stiller */
.message-box {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Başarı mesajı için özel stiller */
.message-box.success {
    background-color: rgba(144, 238, 144, 0.2);
    color: #a3e635;
    border-color: #a3e635;
    opacity: 1;
    transform: translateY(0);
}

/* Hata mesajı için özel stiller */
.message-box.error {
    background-color: rgba(255, 105, 97, 0.2);
    color: #ff6961;
    border-color: #ff6961;
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Buton Stili */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Icon boyutu */
.whatsapp-btn i {
    font-size: 28px;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    color: #fff;
}

.language-switch {
    text-align: center;
    margin-bottom: 15px;
}

.language-switch button {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
    background: #ffbf00;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
}

.faq-item {
    border-bottom: 1px solid #444;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
    padding: 10px 15px;
}

.kvkk-btn {
    display: inline-block;
    padding: 8px 14px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}


/* Footer Section */
.footer-section {
    max-height: 200px;
    background: var(--dark-bg);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at -40% -40%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 140% -40%, var(--secondary-color) 0%, transparent 50%);
    pointer-events: none;
}

.footer-cta {
    background: var(--gold-gradient);
    padding: 64px 24px;
    position: relative;
    z-index: 2;
}

.footer-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.footer-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 32px;
}

.footer-cta-button {
    background: var(--dark-bg);
    color: var(--primary-color);
    border: none;
    padding: 16px 48px;
    border-radius: 24px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-cta-button:hover {
    background: #1a1a1a;
    transform: scale(1.05);
}

.footer-main {
    padding: 64px 24px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo i {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-bg);
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    margin-top: 48px;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Genel Responsive Ayarlar */
@media (max-width: 1024px) {
    section {
        padding: 80px 16px;
    }

    h1,
    h2,
    h3 {
        text-align: center;
    }

    p {
        text-align: center;
    }

    /* Hero Bölümü */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-video {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-list,
    .footer-logo {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Genel Ayarlar */
    section {
        padding: 64px 16px;
    }

    .video-player,
    .second-video {
        width: 70%;
        max-width: 320px;
        margin: 0 auto;
    }

    .language-toggle {
        top: 16px;
        right: 16px;
    }

    /* Hero Bölümü */
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero-cta {
        width: 100%;
        padding: 14px 40px;
        font-size: 16px;
    }

    /* Video Bölümü için Düzeltmeler */
    .hero-video-container {
        width: 100%;
    }

    .hero-video {
        width: 85%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* İstatistikler */
    .stats-section {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        width: 90%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Diğer Bölümler */
    .about-container {
        flex-direction: column;
        gap: 32px;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-card {
        padding: 32px;
    }

    .testimonial-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-main {
        padding: 48px 16px;
    }

    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    /* Genel Ayarlar */
    section {
        padding: 48px 16px;
    }

    .video-player,
    .second-video {
        width: 80%;
        max-width: 250px;
    }

    .hero-video {
        width: 90%;
        max-width: 350px;
    }

    .language-toggle {
        top: 8px;
        right: 8px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    /* Hero Bölümü */
    .hero-section {
        gap: 32px;
    }

    .hero-cta {
        padding: 12px 32px;
        font-size: 14px;
    }

    /* İstatistikler */
    .stats-section {
        padding: 16px;
        gap: 16px;
        width: 95%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Diğer Bölümler */
    .testimonial-content {
        padding: 16px;
        gap: 24px;
    }

    .customer-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .thumbnail-card {
        aspect-ratio: 9/16;
    }

    .footer-cta {
        padding: 48px 16px;
    }
}