/*
Theme Name: Patendersleri Dark - Born to Skate
Theme URI: https://patendersleri.com
Author: Patendersleri.com
Author URI: https://patendersleri.com
Description: Karanlık tema - Profesyonel paten dersleri için modern ve dinamik tasarım
Version: 2.0 Dark Edition
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: patendersleri
*/

:root {
    /* Ana Renkler - Karanlık Tema */
    --primary-color: #5409DA;      /* Mor */
    --secondary-color: #4E71FF;    /* Mavi */
    --accent-color: #66FF00;       /* Neon Yeşil */
    
    /* Arkaplan Renkleri */
    --bg-dark: #0A0A0A;           /* Ana arkaplan - çok koyu siyah */
    --bg-dark-secondary: #151515; /* İkincil arkaplan */
    --bg-dark-card: #1A1A1A;      /* Kartlar için */
    --bg-dark-hover: #252525;     /* Hover durumu */
    
    /* Metin Renkleri */
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-dark-gray: #808080;
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, #5409DA 0%, #4E71FF 100%);
    --gradient-accent: linear-gradient(135deg, #4E71FF 0%, #66FF00 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #151515 100%);
    
    /* Glow Efektleri */
    --glow-purple: 0 0 20px rgba(84, 9, 218, 0.5);
    --glow-blue: 0 0 20px rgba(78, 113, 255, 0.5);
    --glow-green: 0 0 20px rgba(102, 255, 0, 0.5);
    
    /* Border & Shadow */
    --border-color: #2A2A2A;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(84, 9, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 113, 255, 0.1) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: var(--glow-blue);
}

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

/* Header - Karanlık Tema */
.site-header {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#main-content {
    padding-top: 90px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(var(--glow-purple));
}

.site-title {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.site-tagline {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-shadow: var(--glow-green);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 10001;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* WordPress ve eklenti menü butonlarını gizle */
.menu-toggle,
.wp-menu-toggle,
.menu-btn,
.nav-toggle,
.navbar-toggle,
.toggle-menu,
#menu-toggle,
button.menu-toggle,
.mobile-nav-toggle,
[class*="menu-toggle"]:not(.mobile-menu-toggle),
[class*="nav-toggle"],
.responsive-menu-toggle,
.hamburger-menu:not(.mobile-menu-toggle),
.mobile-menu-button:not(.mobile-menu-toggle) {
    display: none !important;
}

/* Navigation - Neon Style */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-navigation a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.main-navigation a:hover::before,
.main-navigation .current-menu-item a::before {
    opacity: 1;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: var(--glow-purple);
}

/* Tablet Navigation - 992px ve altı */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 280px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #0a0a0a !important;
        border-left: 1px solid #333 !important;
        padding: 100px 1.5rem 2rem !important;
        transition: right 0.3s ease !important;
        z-index: 10000 !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5) !important;
        display: block !important;
        overflow-y: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .main-navigation.active {
        right: 0 !important;
    }
    
    .main-navigation ul {
        flex-direction: column !important;
        gap: 0.75rem !important;
        display: flex !important;
    }
    
    .main-navigation li {
        width: 100% !important;
        display: block !important;
    }
    
    .main-navigation a {
        display: block !important;
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
        border: 1px solid #333 !important;
        background: #1a1a1a !important;
        text-align: center !important;
        color: #fff !important;
    }
    
    .main-navigation a::before {
        display: none !important;
    }
    
    .main-navigation a:hover {
        background: #5409DA !important;
        border-color: #5409DA !important;
        box-shadow: none !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    
    .site-tagline {
        display: none !important;
    }
    
    .site-logo img {
        height: 50px !important;
    }
    
    #main-content {
        padding-top: 80px;
    }
}

/* Mobile Navigation - 576px ve altı */
@media (max-width: 576px) {
    .site-logo img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    #main-content {
        padding-top: 70px;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.menu-open .menu-overlay {
    display: block;
    opacity: 1;
}

/* Hero Section - Karanlık & Neon */
.hero-section {
    background: var(--gradient-dark);
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(84, 9, 218, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(78, 113, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* Buttons - Neon Style */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: var(--glow-purple);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(84, 9, 218, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-green);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--bg-dark-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--bg-dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card), var(--glow-purple);
    background-color: var(--bg-dark-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(var(--glow-blue));
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

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

.blog-card {
    background-color: var(--bg-dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-card), var(--glow-blue);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-meta {
    color: var(--text-dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.booking-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 3rem;
    background-color: var(--bg-dark-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background-color: var(--bg-dark-secondary);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(84, 9, 218, 0.2), var(--glow-purple);
    background-color: var(--bg-dark);
}

.form-control::placeholder {
    color: var(--text-dark-gray);
}

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

select.form-control {
    cursor: pointer;
}

/* Location Map Link */
.location-map-link {
    margin-top: 0.5rem;
}

.location-map-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(102, 255, 0, 0.1);
    border: 1px solid rgba(102, 255, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-map-link a:hover {
    background: rgba(102, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(102, 255, 0, 0.2);
}

/* Location Map Preview Card */
.location-map-preview {
    margin-top: 1rem;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.map-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 60%; /* 3:5 en-boy oranı (5/3 = 1.66, 100/1.66 = 60%) */
    background: #1a1a1a;
}

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

.map-open-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 255, 0, 0.1) 0%, rgba(102, 255, 0, 0.05) 100%);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.map-open-button:hover {
    background: linear-gradient(135deg, rgba(102, 255, 0, 0.2) 0%, rgba(102, 255, 0, 0.1) 100%);
    color: #fff;
}

/* Ekipman Kiralama - Geçici olarak gizli */
.rental-section {
    display: none !important;
}

/* Footer - Karanlık */
.site-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-widget h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-dark-gray);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.time-slot {
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--bg-dark-secondary);
    color: var(--text-light);
}

.time-slot:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-dark-hover);
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

.time-slot.available {
    background: linear-gradient(135deg, rgba(102, 255, 0, 0.1) 0%, rgba(78, 113, 255, 0.1) 100%);
    border-color: var(--accent-color);
}

.time-slot.available:hover {
    box-shadow: var(--glow-green);
}

.time-slot.booked {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
}

/* Scrollbar - Karanlık */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ========================================
   Modern Ana Sayfa Stilleri
   ======================================== */

/* Hero Section - Modern */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(84, 9, 218, 0.2) 0%, rgba(78, 113, 255, 0.2) 100%);
    border: 1px solid var(--primary-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-purple);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-light) 70%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    height: 500px;
}

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

.floating-card {
    position: absolute;
    background: var(--bg-dark-card);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card), var(--glow-purple);
    animation: float 3s ease-in-out infinite;
}

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

.floating-card-2 {
    top: 40%;
    right: 0;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.floating-card .card-icon {
    font-size: 2rem;
}

.floating-card .card-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
}

.hero-skater {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

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

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Rezervasyon Seçim Kartları */
.booking-choice-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.booking-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.booking-choice-card {
    background: var(--bg-dark-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.booking-choice-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), var(--glow-purple);
}

.choice-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--glow-purple);
}

.choice-badge-discount {
    background: linear-gradient(135deg, #ff6b00 0%, #ff0080 100%);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.choice-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(var(--glow-blue));
}

.booking-choice-card h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.booking-choice-card > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.choice-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.choice-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

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

.btn-block {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.booking-info-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(102, 255, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-content strong {
    color: var(--accent-color);
}

/* Responsive - Ana Sayfa */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .booking-choice-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* ============================================
   FRONT PAGE - ANA SAYFA STİLLERİ
============================================ */

/* Hero Başlık */
.hero-title-section {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.hero-title-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero-title-section p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Features Grid - Daha Dar */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   ANA SAYFA REZERVASYON KARTI
============================================ */
.booking-home-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.booking-home-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Tab Butonları - Rezervasyon Sayfası Stili */
.booking-tabs-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-tab-home {
    background: var(--bg-dark-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
}

.booking-tab-home:hover {
    border-color: var(--primary-color);
}

.booking-tab-home.active {
    border-color: var(--accent-color);
    background: var(--bg-dark-hover);
    box-shadow: 0 0 15px rgba(102, 255, 0, 0.2);
}

.booking-tab-home .tab-icon {
    font-size: 1.75rem;
}

.booking-tab-home .tab-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.booking-tab-home .tab-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--gradient-primary);
    border-radius: 50px;
}

.booking-tab-home .tab-badge.orange {
    background: linear-gradient(135deg, #5409DA, #4E71FF);
}

/* Tarih Bölümü */
.booking-date-home {
    margin-bottom: 1.5rem;
}

.booking-date-home label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* Kompakt Takvim */
#calendar-container-home {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}

#calendar-container-home .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

#calendar-container-home .calendar-month {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

#calendar-container-home .calendar-nav {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#calendar-container-home .calendar-nav:hover {
    border-color: var(--accent-color);
}

#calendar-container-home .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

#calendar-container-home .calendar-weekday {
    text-align: center;
    font-size: 0.7rem;
    color: var(--accent-color);
    padding: 0.3rem 0;
    font-weight: 600;
}

#calendar-container-home .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

#calendar-container-home .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-dark-card);
    color: var(--text-gray);
    border: 1px solid transparent;
}

#calendar-container-home .calendar-day.available {
    color: var(--text-light);
    border-color: var(--border-color);
}

#calendar-container-home .calendar-day.available:hover {
    border-color: var(--accent-color);
    background: var(--bg-dark-hover);
}

#calendar-container-home .calendar-day.selected {
    background: var(--accent-color);
    color: var(--bg-dark);
    font-weight: bold;
    border-color: var(--accent-color);
}

#calendar-container-home .calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#calendar-container-home .calendar-day.empty {
    background: transparent;
    cursor: default;
}

/* Devam Butonu */
#continue-booking-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

#continue-booking-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   BLOG SECTION
============================================ */
.blog-section {
    padding: 4rem 0;
    background: var(--bg-dark-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.blog-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1rem;
}

.blog-card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.blog-card-content h3 a {
    color: var(--text-light);
}

.blog-card-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.read-more {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* ============================================
   SSS SECTION
============================================ */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    width: 25px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-bottom: 1rem;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-dark-secondary);
    text-align: center;
}

.cta-section .container {
    max-width: 960px;
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.cta-section p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* ============================================
   SECTION HEADER
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

/* ============================================
   MOBİL UYUMLULUK
============================================ */
@media (max-width: 768px) {
    .hero-title-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-title-section,
    .features-grid,
    .booking-home-card,
    .blog-grid,
    .faq-container,
    .section-header,
    .cta-section .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .booking-home-card {
        padding: 1.25rem;
    }
    
    .booking-tabs-home {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Mobil Menü */
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-section h1 {
        font-size: 1.25rem;
    }
    
    .booking-home-card {
        padding: 1rem;
    }
    
    #calendar-container-home {
        padding: 0.75rem;
    }
    
    #calendar-container-home .calendar-day {
        font-size: 0.7rem;
    }
}

/* Saat Placeholder */
.time-slot-placeholder {
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: var(--bg-dark-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
    display: inline-block;
}

.time-slots-grid {
    min-height: auto;
}

/* ============================================
   FOOTER - SOSYAL MEDYA
============================================ */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(84, 9, 218, 0.4);
}

/* ============================================
   İLETİŞİM POPUP MODAL
============================================ */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-content {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.contact-modal-close:hover {
    color: var(--accent-color);
}

.contact-modal-content h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-modal-content > p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-form-popup .form-group {
    margin-bottom: 1rem;
}

.contact-form-popup input,
.contact-form-popup textarea {
    width: 100%;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form-popup input:focus,
.contact-form-popup textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-popup input::placeholder,
.contact-form-popup textarea::placeholder {
    color: var(--text-dark-gray);
}

.contact-form-popup textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .contact-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-widget ul {
        padding-left: 0;
    }
}

/* ============================================
   FORM VALIDATION STİLLERİ
============================================ */
.form-control.error,
input.error,
textarea.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}

.form-control.success,
input.success {
    border-color: var(--accent-color) !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* ============================================
   KİRALAMA SEÇENEKLERİ
============================================ */
.rental-section {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rental-item {
    margin-bottom: 1.25rem;
}

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

.rental-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-dark-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rental-checkbox:hover {
    border-color: var(--primary-color);
}

.rental-checkbox.checked {
    border-color: var(--accent-color);
    background: rgba(102, 255, 0, 0.05);
}

/* Custom Toggle Switch */
.rental-checkbox input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--bg-dark-secondary);
    border: 2px solid var(--border-color);
    border-radius: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rental-checkbox input[type="checkbox"]:checked + .toggle-switch {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.rental-checkbox input[type="checkbox"]:checked + .toggle-switch::after {
    left: 26px;
    background: var(--bg-dark);
}

.rental-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 0.5rem;
}

.rental-label strong {
    color: var(--text-light);
    font-size: 0.95rem;
}

.rental-price {
    background: var(--accent-color);
    color: var(--bg-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.rental-info {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin: 0.5rem 0 0 0;
    padding-left: 4.25rem;
}

.rental-details {
    background: rgba(102, 255, 0, 0.03);
    border: 1px solid rgba(102, 255, 0, 0.15);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
}

.rental-details .form-group {
    margin-bottom: 0;
}

.rental-details .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.rental-details .form-control {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.rental-total {
    background: linear-gradient(135deg, rgba(102, 255, 0, 0.1), rgba(84, 9, 218, 0.1));
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.rental-total-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.rental-total-inner strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.rental-note {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin: 0.4rem 0 0 0;
    text-align: right;
}

/* Tab Badge Special */
.tab-badge-special {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: #fff;
}

/* Footer KVKK Link */
.footer-kvkk-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.footer-kvkk-link:hover {
    color: var(--accent-color);
}

/* Eklenti menü butonlarını gizle - Starter Templates vb. */
.ast-mobile-menu-trigger,
.ast-button-wrap,
.ast-mobile-menu-buttons,
.menu-toggle-wrap,
.ast-header-break-point .ast-mobile-menu-buttons,
.ast-header-break-point .menu-toggle,
#ast-mobile-header,
.ast-mobile-header-wrap,
.astra-mobile-menu-buttons,
[data-section="section-header-mobile-trigger"],
.site-header .menu-toggle,
.site-header .ast-button-wrap,
.site-header button:not(.mobile-menu-toggle):not(.btn):not(.kvkk-popup-close):not(.contact-modal-close) {
    display: none !important;
}

/* Sadece bizim hamburger menümüz görünsün */
@media (max-width: 992px) {
    .site-header .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (min-width: 993px) {
    .site-header .mobile-menu-toggle {
        display: none !important;
    }
}

/* ============================================
   TESTIMONIALS SECTION - PREMIUM DESIGN
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 50%, var(--bg-dark) 100%);
}

.testimonials-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(102, 255, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

.testimonials-section .section-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(102, 255, 0, 0.5);
    font-weight: 600;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========== KAYAN YORUMLAR WRAPPER ========== */
.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollTestimonials 50s linear infinite;
    width: max-content;
    padding: 1.5rem 0;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== YORUM KARTLARI - SADE & MODERN ========== */
.testimonial-card {
    flex: 0 0 280px;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #333;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Avatar */
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 1rem;
}

/* Stars */
.testimonial-stars {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-stars .star {
    font-size: 1.4rem;
    color: #333;
}

.testimonial-stars .star.filled {
    color: #FFD700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

.testimonial-name {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 5.5em;
}

.testimonial-date {
    font-size: 0.7rem;
    color: #555;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-cta-fixed {
        flex: 0 0 auto;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 260px;
        padding: 1.5rem;
    }
    
    .testimonial-cta-fixed {
        padding: 1.5rem;
    }
    
    .testimonials-track {
        animation-duration: 40s;
    }
}

/* ============================================
   TESTIMONIAL MODAL - PREMIUM DESIGN
   ============================================ */
#testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.testimonial-modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(102, 255, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Modal üst glow çizgisi */
.testimonial-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 0 0 10px 10px;
}

.testimonial-modal-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(102, 255, 0, 0.03) 0%, transparent 100%);
}

.testimonial-modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-modal-header h2::before {
    content: '⭐';
    font-size: 1.25rem;
}

.testimonial-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-modal-close:hover {
    background: rgba(255, 77, 77, 0.1);
    border-color: rgba(255, 77, 77, 0.3);
    color: #ff4d4d;
    transform: rotate(90deg);
}

.testimonial-modal-body {
    padding: 2rem;
}

/* Star Rating Input */
.star-rating-label {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.star-rating-input {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-direction: row-reverse;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 2.75rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    transform: scale(1.15);
}

/* Form Groups */
.testimonial-form-group {
    margin-bottom: 1.5rem;
}

.testimonial-form-group label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.testimonial-form-group .optional {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
}

.testimonial-form-group input[type="text"],
.testimonial-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.testimonial-form-group input[type="text"]:focus,
.testimonial-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(102, 255, 0, 0.03);
    box-shadow: 0 0 20px rgba(102, 255, 0, 0.1);
}

.testimonial-form-group input[type="text"]::placeholder,
.testimonial-form-group textarea::placeholder {
    color: #555;
}

.testimonial-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: #555;
    margin-top: 0.25rem;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #777;
    font-size: 0.95rem;
}

.file-upload-label:hover {
    border-color: var(--accent-color);
    background: rgba(102, 255, 0, 0.03);
    color: var(--accent-color);
}

.file-upload-label svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.file-upload-label:hover svg {
    transform: scale(1.1);
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-preview {
    margin-top: 1rem;
    display: none;
    text-align: center;
}

.file-preview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 12px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(102, 255, 0, 0.2);
}

/* KVKK Checkbox */
.testimonial-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.75rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-kvkk input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.testimonial-kvkk span {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
}

.testimonial-kvkk a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonial-kvkk a:hover {
    text-shadow: 0 0 10px rgba(102, 255, 0, 0.5);
}

/* Submit Button */
.testimonial-modal-body .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 14px;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-modal-body .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.testimonial-modal-body .btn:hover::before {
    left: 100%;
}

#testimonial-message {
    margin-top: 1.25rem;
    text-align: center;
    display: none;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 12px;
    animation: fadeInUp 0.3s ease;
}

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

/* Yorum - statik ortalı mod (az yorum için) */
.testimonials-static {
    display: flex;
    justify-content: center;
}

.testimonials-track-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.testimonials-track-static .testimonial-card {
    flex: 0 0 auto;
}

