/*
Theme Name: Kurumsal Sohbet TemasÄ± (KSohbet)
Theme URI: https://ofs.net.tr
Author: fLayer
Author URI: https://ofs.net.tr
Description: Kurumsal sohbet siteleri iÃ§in Ã¶zel olarak tasarlanmÄ±ÅŸ modern WordPress temasÄ±
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ksohbet
Tags: chat, irc, sohbet, kurumsal, modern

Tema Sahibi: OFS.net.tr
GeliÅŸtirici: fLayer
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Hosting Sitesi Renkleri */
    --color-primary: #FF8533;
    --color-primary-light: #FF9F4D;
    --color-primary-dark: #F47920;

    --color-secondary: #2B3147;
    --color-secondary-light: #3A4060;
    --color-secondary-dark: #1E2235;

    --color-white: #FFFFFF;
    --color-light-gray: #F8F9FA;
    --color-border: #E8E9EB;
    --color-text-dark: #1A1A1A;
    --color-text-gray: #666666;
}

/* ========================================
   RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   HERO TOP SECTION - KadÄ±n GÃ¶rselli Ãœst BÃ¶lÃ¼m
   ======================================== */
.hero-top-section {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
}

.hero-top-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 0 0 260px;
}

.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-text {
    flex: 1;
}

.price-badge {
    display: inline-flex;
    flex-direction: column;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 700;
}

.price-amount {
    font-size: 22px;
    line-height: 1;
}

.price-text {
    font-size: 14px;
    font-weight: 400;
}

.hero-main-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-icons {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #FFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 16px;
    color: var(--color-secondary);
}

.feature-text span {
    font-size: 13px;
    color: var(--color-text-gray);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 133, 51, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ========================================
   CHAT ENTRY SECTION - Domain Sorgulama Benzeri
   ======================================== */
.chat-entry-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.chat-entry-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 133, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.chat-entry-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-title-white {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 40px;
}

.chat-entry-form {
    background: var(--color-white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-light-gray);
    border-radius: 8px;
    padding: 0 16px;
}

.form-input-wrapper svg {
    margin-right: 12px;
    flex-shrink: 0;
}

.form-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 0;
    font-size: 16px;
    outline: none;
}

.btn-search {
    flex-shrink: 0;
    padding: 16px 40px;
    white-space: nowrap;
}

.chat-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.chat-option:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-gray);
}

/* ========================================
   SERVICES SECTION - Hizmet KartlarÄ±
   ======================================== */
.services-section {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.section-header h2 .highlight {
    color: var(--color-primary);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-icon .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: var(--color-primary);
}

.service-card:hover .service-card-icon {
    background: var(--color-primary);
    transform: scale(1.1);
}

.service-card:hover .service-card-icon .dashicons {
    color: var(--color-white);
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card:hover .service-card-title {
    color: var(--color-primary);
}

.service-card-description {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   TESTIMONIALS SECTION - MÃ¼ÅŸteri YorumlarÄ±
   ======================================== */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-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 1200 600"><circle cx="100" cy="100" r="3" fill="%23ffffff" opacity="0.05"/><circle cx="300" cy="200" r="2" fill="%23ffffff" opacity="0.05"/><circle cx="500" cy="150" r="3" fill="%23ffffff" opacity="0.05"/></svg>');
}

.section-header-white {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header-white h2 {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header-white h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-image {
    margin-bottom: 20px;
}

.testimonial-content {
    position: relative;
}

.testimonial-name strong {
    display: block;
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.testimonial-name span {
    font-size: 14px;
    color: var(--color-border);
}

.testimonial-quote {
    font-size: 80px;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    right: 0;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-white);
    line-height: 1.8;
    margin-top: 20px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-slider-section > .container {
        flex-direction: column;
    }
    
    .chat-login-box {
        flex: 1;
        max-width: 100%;
    }
    
    .hero-top-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: 0 0 280px;
    }

    .feature-icons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .chat-options {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--color-secondary);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .section-title-white {
        font-size: 28px;
    }

    .pricing-info {
        flex-direction: column;
        gap: 20px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO SLIDER - Slider + Form Yan Yana
   ======================================== */

.hero-slider-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-slider-section > .container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hero-slider {
    flex: 1;
    position: relative;
    min-width: 0;
    padding-bottom: 56px;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

/* Slider Ä°Ã§eriÄŸi - Her Slide */
.hero-top-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-image {
    flex: 0 0 280px;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-text {
    flex: 1;
    min-width: 0;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #E8E9EB;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF8533 0%, #F47920 100%);
    width: 0;
    animation: progressBar 8s linear infinite;
}

@keyframes progressBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    left: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
    width: 100%;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E8E9EB;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: #FF9F4D;
}

.dot.active {
    background: #FF8533;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   LATEST POSTS SECTION
   ======================================== */

.latest-posts-section {
    background: var(--color-secondary);
    padding: 80px 0;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.post-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.post-card-category span {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.post-card-content {
    padding: 25px;
}

.post-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--color-text-gray);
}

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-card-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-title a:hover {
    color: var(--color-primary);
}

.post-card-excerpt {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}

.post-card-link:hover {
    gap: 12px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .latest-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION DIVIDER - Animasyonlu Turuncu Ã‡izgi
   ======================================== */

.section-divider {
    width: 100%;
    height: 3px;
    background: var(--color-light-gray);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-primary) 50%,
            transparent 100%);
    animation: dividerSlide 2s ease-in-out infinite;
}

@keyframes dividerSlide {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* AOS ile tetiklenen versiyon */
.section-divider[data-aos].aos-animate::before {
    animation: dividerSlide 2s ease-in-out infinite;
}
/* HERO GRID - Slider + Sohbet Formu Yan Yana */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* SOHBET GÄ°RÄ°Åž FORMU - SaÄŸ Tarafta */
.chat-login-box {
    flex: 0 0 320px;
    max-width: 320px;
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    align-self: flex-start;
}

.chat-login-header {
    text-align: center;
    margin-bottom: 25px;
}

.chat-login-header svg {
    margin-bottom: 12px;
    width: 45px;
    height: 45px;
}

.chat-login-header h2 {
    color: #2B3147;
    font-size: 22px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.chat-login-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.chat-login-form .form-group {
    margin-bottom: 12px;
}

.chat-login-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2B3147;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.chat-login-form input[type='text'],
.chat-login-form input[type='password'] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #fafafa;
}

.chat-login-form input:focus {
    outline: none;
    border-color: #FF8533;
    box-shadow: 0 0 0 3px rgba(255, 133, 51, 0.1);
    background: white;
}

.form-group-radio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 14px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.radio-label:hover {
    border-color: #FF8533;
    background: #fff5f0;
}

.radio-label input[type='radio'] {
    accent-color: #FF8533;
}

.radio-label span {
    color: #2B3147;
    font-size: 12px;
    font-weight: 500;
}

.chat-login-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #FF8533 0%, #F47920 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(255, 133, 51, 0.3);
}

.chat-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(255, 133, 51, 0.4);
}

.chat-quick-links {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
    color: #666;
}

.chat-quick-links a {
    color: #FF8533;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.chat-quick-links a:hover {
    color: #F47920;
    text-decoration: underline;
}

.chat-quick-links span {
    margin: 0 6px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}




/* Ã–ZELLÄ°K KARTLARI - Kalp Ä°konlu */
.feature-cards-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #2B3147 0%, #3A4060 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-icon-heart {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8533 0%, #F47920 100%);
    border-radius: 50% 50% 0 0;
    transform: rotate(45deg);
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon-heart::before,
.feature-card-icon-heart::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8533 0%, #F47920 100%);
    border-radius: 50%;
}

.feature-card-icon-heart::before {
    top: -40px;
    left: 0;
}

.feature-card-icon-heart::after {
    top: 0;
    left: -40px;
}

.feature-icon-text {
    position: relative;
    z-index: 1;
    transform: rotate(-45deg);
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFB84D;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card-description {
    font-size: 14px;
    color: white;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* KURUMSAL TANITIM BÃ–LÃœMÃœ */
.corporate-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B3147 0%, #3A4060 100%);
}

.corporate-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.corporate-intro-image {
    max-width: 400px;
    margin: 0 auto;
}

.corporate-intro-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.corporate-intro-content {
    color: white;
}

.corporate-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.corporate-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.corporate-intro-text strong {
    color: #FF8533;
    font-weight: 600;
}

.corporate-intro-text p {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .corporate-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .corporate-intro-image {
        max-width: 300px;
    }

    .corporate-intro-title {
        font-size: 26px;
    }
}

/* MOBÝL SIRALAMA - Sohbet Formu Önce */
@media (max-width: 992px) {
    .hero-slider-section > .container {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .chat-login-box {
        max-width: 100%;
        margin-bottom: 30px;
    }
}


/* HAMBURGER MENÜ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 0;
        color: var(--color-secondary);
    }
    
    .header-actions {
        margin-left: auto;
    }
}


/* HAMBURGER MENU FIX */
.mobile-menu-toggle {
    display: none; /* Varsayýlan gizli */
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 9999;
        margin-right: 15px; /* Logodan sonra boþluk */
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333 !important; /* Görünür renk */
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Header düzeni mobilde */
    .header-main > .container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    /* Logo sola, buton saða, menü ortada (gizli) */
    .header-logo {
        flex: 0 0 auto;
        margin-right: auto;
    }
    
    .header-actions {
        margin-left: 10px;
    }
    
    /* Ana menüyü gizle */
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
}


/* MENÜ ANÝMASYONU DÜZELTME */
@media (max-width: 992px) {
    .main-nav {
        display: block !important; /* Gizleme, slide olacak */
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        z-index: 1000;
        visibility: visible !important;
    }
    
    .main-nav.active {
        right: 0;
    }
}


/* MOBÝL MENÜ DÜZELTME - FINAL */
@media (max-width: 992px) {
    /* Menü Butonu Görünürlüðü */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 2000; /* En üstte olsun */
        position: relative;
    }

    /* Ana Menü Varsayýlan Gizli (Ekran Dýþý) */
    .main-nav {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%; /* Ekran dýþýna it */
        width: 300px;
        height: 100vh;
        background: #fff;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1500; /* Butonun altýnda kalsýn */
    }

    /* Menü Aktif Olunca */
    .main-nav.active {
        right: 0 !important; /* Ekrana getir */
    }
    
    /* Overlay (Ýsteðe baðlý, menü açýlýnca arkasý kararmalý) */
    body.menu-open {
        overflow: hidden;
    }
}


/* --- ACÝL MOBÝL MENÜ DÜZELTMESÝ (KESÝN ÇÖZÜM) --- */
@media (max-width: 992px) {
    /* 1. Header Düzeni - Flex ile sýrala */
    .header-main > .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    /* 2. Logo Sol Baþta */
    .header-logo {
        flex: 0 0 auto !important;
        z-index: 1002 !important;
    }

    /* 3. Hamburger Butonu Saðda (Giriþ butonunun yanýnda) */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 22px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer !important;
        z-index: 2000 !important;
        margin-left: auto !important; /* Saða yasla */
        margin-right: 15px !important;
    }

    .mobile-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: #333 !important; /* Siyah renk */
        border-radius: 4px !important;
    }

    /* 4. Ana Menü Paneli (Varsayýlan KAPALI) */
    nav.main-nav {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Ekran dýþýnda */
        width: 280px !important;
        height: 100vh !important;
        background: #ffffff !important; /* Beyaz zemin */
        padding-top: 80px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2) !important;
        z-index: 1500 !important;
        visibility: visible !important;
    }

    /* 5. Menü Açýkken */
    nav.main-nav.active {
        right: 0 !important; /* Ekrana gelsin */
    }

    /* Link Renkleri */
    nav.main-nav ul li a {
        color: #333 !important;
        font-size: 16px !important;
        border-bottom: 1px solid #eee !important;
        display: block !important;
        padding: 12px 0 !important;
    }

    /* Giriþ Butonu Gizlenmesin */
    .header-actions {
        display: block !important;
        z-index: 1001 !important;
    }
}

