/* PAPYON DANS - SECTIONS CSS - Auto-generated */
/* Mon Feb 16 09:27:01 +03 2026 */


/* === HERO === */
/* ===================================
   MODERN HERO SECTION STYLES
   =================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 5% 80px;
}

/* DarkVeil arka plan — koyu fallback */
.hero-modern {
    background: #000;
}

/* hero-container içerik z-index */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge i {
    color: #FFD700;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

/* Başlık */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.0;
    color: white;
    margin: 0;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text-animated {
    display: block;
    background: linear-gradient(
        90deg,
        #60a5fa 0%,
        #3b82f6 25%,
        #60a5fa 50%,
        #3b82f6 75%,
        #60a5fa 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-position: 30% center; /* Statik — gradient-shift animasyonu kaldırıldı (background-position animasyonu text GPU texture'ını her frame yeniden yüklüyordu) */
}

/* gradient-shift @keyframes kaldırıldı — performans optimizasyonu */

/* Alt Başlık */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #60a5fa;
    font-weight: 700;
}

/* Özellik Pilleri - Modern */
.hero-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.feature-pill-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-pill-modern:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.feature-pill-modern i {
    color: #60a5fa;
    font-size: 1.2rem;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
}

.cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-height: 70px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.cta-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: 3px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    border-color: white;
}

.cta-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    min-height: auto;
    padding: 14px 28px;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.cta-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-height: auto;
    padding: 14px 28px;
}

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

.cta-btn i {
    font-size: 1.4rem;
}

/* Pulse Animation - GPU Accelerated */
.pulse-animation {
    animation: pulse-glow 2s infinite;
    will-change: transform;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1) translateZ(0);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.02) translateZ(0);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: #10B981;
    font-size: 1rem;
}

/* Scroll Indicator - Modern Mouse */
.scroll-indicator-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 26px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.arrow-down {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrow-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: arrow-bounce 1.5s infinite;
}

.arrow-down span:nth-child(2) {
    animation-delay: 0.15s;
}

.arrow-down span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrow-bounce {
    0%, 100% { opacity: 0; transform: rotate(45deg) translateY(-5px); }
    50% { opacity: 1; transform: rotate(45deg) translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-features-modern {
        flex-direction: column;
        max-width: 300px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-indicator-modern {
        display: none;
    }
}

/* ===================================
   BLUR TEXT — Hero Başlık Animasyonu
   =================================== */
.blur-text-hero .blur-char {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(8px);
    animation: blurCharIn 0.6s ease forwards;
    white-space: pre;
}

@keyframes blurCharIn {
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* gradient span içindeki karakterler — giriş animasyonu korundu, gradient-shift kaldırıldı */
.blur-text-hero .gradient-text-animated .blur-char {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg,#60a5fa 0%,#3b82f6 50%,#60a5fa 100%);
    background-size: 200% auto;
    background-position: 30% center;
    -webkit-background-clip: text;
    background-clip: text;
    animation: blurCharIn 0.6s ease forwards; /* gradient-shift kaldırıldı */
}

/* ===================================
   SHINY TEXT — CTA Buton Parıltı
   =================================== */
.shiny-btn {
    position: relative;
    overflow: hidden;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* left sabit — transform ile hareket ettiriliyor (layout trigger yok) */
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 80%
    );
    animation: shineSwipe 2.8s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes shineSwipe {
    /* left yerine transform:translateX — compositor-only, layout tetiklemez */
    0%   { transform: translateX(-160%); }
    40%  { transform: translateX(230%); }
    100% { transform: translateX(230%); }
}

/* === CLASSES === */
/* ===================================
   CLASSES SECTION - SIMPLE DESIGN
   =================================== */

.classes-simple-section {
    padding: 60px 5% 80px 5%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%);
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-modern .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-description strong {
    color: #60a5fa;
    font-weight: 700;
}

/* Simple Grid - 3 Columns */
.classes-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Class Item */
.class-simple-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.class-simple-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Icon */
.class-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.class-icon i {
    color: white;
    font-size: 1.5rem;
}

/* Content */
.class-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.class-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.class-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Link */
.class-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
}

.class-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* CTA Button */
.classes-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.cta-button i {
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .classes-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .classes-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .class-simple-item {
        padding: 20px;
    }

    .class-icon {
        width: 45px;
        height: 45px;
    }

    .class-icon i {
        font-size: 1.3rem;
    }

    .class-title {
        font-size: 1.1rem;
    }

    .class-desc {
        font-size: 0.85rem;
    }
}

/* === SCHEDULE === */
/* ===================================
   SCHEDULE SECTION - MODERN
   =================================== */

.schedule-modern-section {
    padding: 80px 5% 100px 5%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%);
    position: relative;
    min-height: 800px; /* CLS optimization: Reserve space */
    contain: layout style paint; /* CLS optimization: Isolate rendering */
}

.schedule-modern-section::before {
    display: none;
}

/* Day Tabs */
.day-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.day-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-tab:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(96, 165, 250, 0.5);
    color: white;
    transform: translateY(-3px);
}

.day-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.day-tab i {
    font-size: 1.1rem;
}

/* Schedule Content */
.schedule-content {
    position: relative;
    min-height: 400px; /* CLS optimization: Reserve space for dynamic content */
    will-change: contents; /* CLS optimization: GPU acceleration */
}

.schedule-day {
    display: none;
    animation: fadeInSchedule 0.5s ease;
}

.schedule-day.active {
    display: block;
}

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

/* Timeline */
.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: start;
}

/* Time */
.schedule-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 15px;
    padding: 15px;
    position: sticky;
    top: 100px;
}

.schedule-time i {
    color: #60a5fa;
    font-size: 1.5rem;
}

.schedule-time span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.3;
}

/* Schedule Card */
.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.schedule-card:hover {
    transform: translateX(10px);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
}

.card-header-schedule {
    background: rgba(59, 130, 246, 0.1);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.class-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.class-level {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body-schedule {
    padding: 25px;
}

.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.info-item i {
    color: #60a5fa;
    font-size: 1.1rem;
    width: 20px;
}

/* Schedule Button */
.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.schedule-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.schedule-btn i {
    font-size: 1.3rem;
}

/* No Classes */
.no-classes {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.no-classes i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.no-classes h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.no-classes p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

/* Info Box */
.schedule-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.info-box-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box-item:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(59, 130, 246, 0.05);
}

.info-box-item i {
    font-size: 2.5rem;
    color: #60a5fa;
}

.info-box-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}

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

/* Responsive */
@media (max-width: 768px) {
    .day-tabs {
        gap: 10px;
    }

    .day-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .day-tab span {
        display: inline !important;
        font-size: 0.85rem;
    }

    .day-tab i {
        font-size: 1rem;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .schedule-time {
        position: static;
        flex-direction: row;
        justify-content: center;
    }

    .schedule-info {
        grid-template-columns: 1fr;
    }

    .info-box-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .day-tab {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .day-tab span {
        font-size: 0.75rem;
    }

    .day-tab i {
        font-size: 0.9rem;
    }
}

/* === ABOUT === */
/* ===================================
   MODERN ABOUT SECTION
   =================================== */

.about-modern {
    padding: 100px 5% 0px 5%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.about-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Visual Column */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.about-main-image {
    width: 100%;
    height: 1050px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Görsel üzerine hafif gradient overlay */
.about-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-overlay-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(59, 130, 246, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

.about-overlay-badge i {
    font-size: 2.5rem;
}

.about-overlay-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-overlay-badge span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mini Stats */
.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.mini-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mini-stat-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.mini-stat-card i {
    color: #60a5fa;
    font-size: 2rem;
    margin-bottom: 10px;
}

.mini-stat-card strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
}

.mini-stat-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Content Column */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-story h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-story h3 i {
    color: #ef4444;
}

.about-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.about-story strong {
    color: #60a5fa;
    font-weight: 700;
}

/* About Boxes */
.about-box {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.box-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.vision-box .box-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.mission-box .box-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.box-content h4 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 10px 0;
}

.box-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Values */
.about-values h3, .about-values h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-values h3 i, .about-values h4 i {
    color: #fbbf24;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.value-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 2px;
}

.value-item span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-primary-modern, .btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-outline-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .about-modern {
        padding: 60px 20px;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .about-mini-stats {
        grid-template-columns: 1fr;
    }

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

    .btn-primary-modern, .btn-outline-modern {
        width: 100%;
        justify-content: center;
    }
}

/* === FAQ === */
/* ===================================
   FAQ SECTION - MODERN
   =================================== */

.faq-modern-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
    min-height: 900px; /* CLS optimization: Reserve space */
    contain: layout style paint; /* CLS optimization: Isolate rendering */
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    will-change: contents; /* CLS optimization: GPU acceleration */
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.faq-item.active {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(96, 165, 250, 0.5);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-question span {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-question i {
    color: #60a5fa;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #3b82f6;
}

.faq-question:hover span {
    color: #60a5fa;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease, opacity 0.3s ease;
    padding: 0 25px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
    opacity: 1;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.faq-cta-content i {
    font-size: 3.5rem;
    color: #60a5fa;
    margin-bottom: 20px;
}

.faq-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.faq-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.faq-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.faq-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.faq-phone {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

.faq-btn i {
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .faq-cta {
        padding: 35px 25px;
    }

    .faq-cta-content h3 {
        font-size: 1.5rem;
    }

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

    .faq-btn {
        width: 100%;
        justify-content: center;
    }
}

/* === MAP === */
/* ===================================
   MAP SECTION
   =================================== */

.map-section {
    padding: 80px 0 0 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 39, 0.95) 100%);
}

.map-section .container {
    padding: 0 5% 40px 5%;
}

.map-container {
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.map-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1) contrast(1.1);
}

/* Konum Bilgisi Kartları */
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: #60a5fa;
    flex-shrink: 0;
}

.info-card h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-card a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #3b82f6;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    color: #60a5fa !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.directions-link:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: #60a5fa;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 5%;
    }

    .map-container iframe {
        height: 350px;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }

    .info-card i {
        font-size: 2rem;
    }
}

/* === FOOTER === */
/* ===================================
   MODERN FOOTER
   =================================== */

.footer-modern {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Footer Top */
.footer-top {
    padding: 80px 5% 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    margin-bottom: 0;
}

/* Logo & About */
.footer-logo h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Footer Title */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
    border-radius: 3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.9rem;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: #60a5fa;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #60a5fa;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 5%;
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright strong {
    color: #60a5fa;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #60a5fa;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

.developer-credit {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.developer-credit i {
    color: #60a5fa;
    margin-right: 5px;
}

.developer-credit .developer-link {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.developer-credit .developer-link strong {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.developer-credit .developer-link:hover strong {
    color: #25D366;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.developer-credit .developer-link::after {
    content: ' 💬';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.developer-credit .developer-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        right: 20px;
        bottom: 90px;
    }
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%);
    padding: 100px 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info .author-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.author-info .author-name strong {
    font-weight: 600;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Google Reviews Badge */
.google-reviews {
    text-align: center;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.google-badge i.fab {
    font-size: 2.5rem;
    color: #4285F4;
}

.badge-content {
    text-align: left;
}

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

.rating-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
}

.rating-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars-small {
    color: #FFD700;
    font-size: 1rem;
}

.review-count {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

.btn-google-reviews {
    background: #4285F4;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-google-reviews:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

/* Carousel */
.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-carousel {
    display: flex !important;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
    margin-bottom: 24px;
}

.testimonials-carousel.dragging {
    cursor: grabbing;
    transition: none;
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.carousel-prev, .carousel-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

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

.carousel-dot.active {
    background: #3b82f6;
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-carousel .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel .testimonial-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }

    .google-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px 30px;
    }

    .badge-content {
        text-align: center;
    }

    .btn-google-reviews {
        width: 100%;
        text-align: center;
    }
}
