/* ========================================
   Ayrancılar Halı Saha - Modern CSS 2025
   Glassmorphism + Green Theme
======================================== */

:root {
    --primary-green: #15803d;
    --dark-green: #166534;
    --darker-green: #14532d;
    --light-green: #22c55e;
    --accent-green: #4ade80;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #0a0a0a;
    --glass-bg: rgba(21, 128, 61, 0.08);
    --glass-border: rgba(21, 128, 61, 0.2);
    --text-dark: #111111;
    --text-gray: #374151;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --shadow-green: rgba(21, 128, 61, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}



/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

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

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(20, 83, 45, 0.95);
    backdrop-filter: blur(20px);
}

header.scrolled {
    background: rgba(20, 83, 45, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo {
    background: linear-gradient(135deg, var(--accent-green), #bbf7d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header.scrolled nav a {
    color: rgba(255, 255, 255, 0.85);
}

header.scrolled nav a:hover {
    color: var(--accent-green);
}

header.scrolled .mobile-menu span {
    background: var(--accent-green);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo strong {
    font-weight: 800;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-green);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

nav a.active {
    color: var(--accent-green);
}

nav a.active::after {
    width: 100%;
}

/* ========== HERO ========== */
#hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 50%, var(--primary-green) 100%);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-white);
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent-green), #bbf7d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .typing-text {
    border-right: 3px solid var(--accent-green);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--accent-green); }
    51%, 100% { border-color: transparent; }
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.4) 0%, rgba(34, 197, 94, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-buttons {
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--dark-green);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
    stroke: var(--dark-green);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--dark-green);
    border-color: var(--text-white);
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
}

#about {
    background: var(--bg-white);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(21,128,61,0.05)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#about > * {
    position: relative;
    z-index: 1;
}

#services {
    background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 100%);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#services .section-title h2 {
    color: var(--text-white);
}

#services .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

#services .service-card {
    background: radial-gradient(circle at center, #00bf63 0%, #005d30 100%);
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#services .service-card h3 {
    color: var(--text-white);
}

#services .service-card p {
    color: rgba(255, 255, 255, 0.75);
}

#services .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

#contact {
    background: var(--bg-white);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(21,128,61,0.05)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#contact > * {
    position: relative;
    z-index: 1;
}

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

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT ========== */
#about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 30px;
    text-align: center;
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

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

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-green);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== GALLERY ========== */
#gallery {
    background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 100%);
    position: relative;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#gallery > * {
    position: relative;
    z-index: 1;
}

#gallery .section-title h2 {
    color: var(--text-white);
}

#gallery .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========== CONTACT ========== */
#contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: white;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item h4 {
    color: var(--text-dark);
}

.contact-item p, .contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-green);
}

/* Contact WhatsApp Button */
#contact .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
}

#contact .btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--darker-green));
}

#contact .btn-primary svg {
    fill: white;
    stroke: none;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
footer {
    background: var(--darker-green);
    padding: 60px 0 0;
    border-top: none;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand .footer-logo span {
    font-weight: 400;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-green);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p svg {
    color: #ffffff;
    flex-shrink: 0;
}

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

.footer-contact p a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-bottom p a {
    color: var(--accent-green);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom p a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(37, 211, 102, 0.6); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    #about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    #contact .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #00bf63;
    background: rgba(0, 191, 99, 0.15);
    border: 2px solid #00bf63;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #00bf63;
    color: white;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        padding: 8px 12px;
        font-size: 1.2rem;
        display: flex !important;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 0.95rem;
        padding: 6px 15px;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 70%;
    }
}

/* ========== REVIEWS ========== */
#reviews {
    background: var(--bg-white);
    position: relative;
}

#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(21,128,61,0.05)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#reviews > * {
    position: relative;
    z-index: 1;
}

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

.review-card {
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-green);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.reviews-cta {
    text-align: center;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00bf63 0%, #005d30 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 191, 99, 0.3);
}

.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 191, 99, 0.4);
}

.btn-google .google-logo {
    flex-shrink: 0;
}

.btn-google .arrow {
    font-size: 1.3rem;
    margin-left: 5px;
}

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

/* ========== SOCIAL LINKS ========== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links a[aria-label="YouTube"]:hover {
    background: #FF0000;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}


/* ========== MATCH REPLAY SECTION ========== */
#match-replay {
    background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 100%);
    position: relative;
}

#match-replay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#match-replay > * {
    position: relative;
    z-index: 1;
}

.match-replay-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.match-replay-image {
    position: relative;
}

.match-replay-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
}

.match-replay-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.match-replay-content > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.match-replay-steps {
    list-style: none;
    counter-reset: step;
    margin-bottom: 25px;
}

.match-replay-steps > li {
    counter-increment: step;
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.match-replay-steps > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: white;
    color: var(--darker-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.match-replay-steps > li a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.match-replay-steps > li a:hover {
    opacity: 0.8;
}

.match-replay-steps > li ul {
    margin-top: 10px;
    margin-left: 0;
    list-style: none;
}

.match-replay-steps > li ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.match-replay-steps > li ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: white;
}

.match-replay-content .btn-primary {
    background: var(--bg-white);
    color: var(--dark-green);
    margin-top: 10px;
}

.match-replay-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.match-replay-content .btn-primary svg {
    stroke: var(--dark-green);
}

@media (max-width: 992px) {
    .match-replay-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .match-replay-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .match-replay-steps > li {
        text-align: left;
    }
    
    .match-replay-content .btn-primary {
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .match-replay-image {
        max-width: 280px;
    }
}


/* ========== PROMO VIDEO SECTION ========== */
#promo-video {
    background: var(--bg-white);
    position: relative;
}

#promo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(21,128,61,0.05)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#promo-video > * {
    position: relative;
    z-index: 1;
}

.promo-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: end;
}

.promo-video-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.promo-video-content > p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.promo-features {
    list-style: none;
    margin-bottom: 30px;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1rem;
}

.promo-features .feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4);
    background: #cc0000;
}

.promo-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-green);
}

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

@media (max-width: 992px) {
    .promo-video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .promo-video-frame {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }
    
    .promo-features li {
        justify-content: center;
    }
    
    .btn-youtube {
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .promo-video-frame {
        max-width: 250px;
    }
    
    .promo-features li {
        text-align: left;
        justify-content: flex-start;
    }
}


/* ========== LINEUP BUILDER SECTION ========== */
#lineup-builder {
    background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 100%);
    position: relative;
}

#lineup-builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#lineup-builder > * {
    position: relative;
    z-index: 1;
}

#lineup-builder .section-title h2 {
    color: var(--text-white);
}

#lineup-builder .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.lineup-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 40px;
    align-items: stretch;
}

.lineup-field-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-name-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.team-name-input {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.team-name-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.team-name-input:focus {
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.2);
}

.lineup-promo {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.lineup-promo img {
    width: auto;
    max-width: 350px;
    height: 100%;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.lineup-controls {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-group {
    margin-bottom: 20px;
}

.control-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.control-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

.control-group select option {
    background: var(--darker-green);
    color: white;
}

.color-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.player-input-group {
    display: flex;
    gap: 10px;
}

.player-input-group input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
}

.player-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-add-player {
    padding: 12px 20px;
    background: var(--accent-green);
    color: var(--darker-green);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-player:hover {
    background: white;
}

.player-list {
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.player-list-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
}

.lineup-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.player-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: var(--darker-green);
    padding: 8px 12px;
    border-radius: 20px;
    margin: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: grab;
    transition: all 0.3s ease;
}

.player-chip:active {
    cursor: grabbing;
}

.player-chip:hover {
    transform: scale(1.05);
}

.player-chip .remove-player {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--darker-green);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}

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

.btn-lineup {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    font-size: 0.95rem;
}

.btn-clear {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-clear:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-download {
    background: white;
    color: var(--darker-green);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.lineup-field {
    aspect-ratio: 3/4;
    max-height: 600px;
    background: linear-gradient(to bottom, 
        #2d8a3e 0%, #2d8a3e 8%,
        #34a049 8%, #34a049 16%,
        #2d8a3e 16%, #2d8a3e 24%,
        #34a049 24%, #34a049 32%,
        #2d8a3e 32%, #2d8a3e 40%,
        #34a049 40%, #34a049 48%,
        #2d8a3e 48%, #2d8a3e 56%,
        #34a049 56%, #34a049 64%,
        #2d8a3e 64%, #2d8a3e 72%,
        #34a049 72%, #34a049 80%,
        #2d8a3e 80%, #2d8a3e 88%,
        #34a049 88%, #34a049 100%
    );
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
}

/* Futsal - Mavi Sert Zemin */
.lineup-field.futsal {
    background: linear-gradient(to bottom, 
        #1565c0 0%, #1565c0 8%,
        #1976d2 8%, #1976d2 16%,
        #1565c0 16%, #1565c0 24%,
        #1976d2 24%, #1976d2 32%,
        #1565c0 32%, #1565c0 40%,
        #1976d2 40%, #1976d2 48%,
        #1565c0 48%, #1565c0 56%,
        #1976d2 56%, #1976d2 64%,
        #1565c0 64%, #1565c0 72%,
        #1976d2 72%, #1976d2 80%,
        #1565c0 80%, #1565c0 88%,
        #1976d2 88%, #1976d2 100%
    );
    border-color: #ffeb3b;
}

/* Beton - Gri Taş Desenli Zemin */
.lineup-field.concrete {
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 48%,
            rgba(0, 0, 0, 0.1) 48%,
            rgba(0, 0, 0, 0.1) 52%,
            transparent 52%,
            transparent 100%
        ),
        repeating-linear-gradient(
            0deg,
            #6b6b6b 0%,
            #7a7a7a 25%,
            #6b6b6b 25%,
            #5c5c5c 50%,
            #6b6b6b 50%,
            #7a7a7a 75%,
            #6b6b6b 75%,
            #5c5c5c 100%
        );
    background-size: 100% 100%, 50px 50px;
    border-color: #ffd700;
}

.lineup-field.concrete .center-line,
.lineup-field.concrete .center-circle,
.lineup-field.concrete .penalty-area,
.lineup-field.concrete .goal-area {
    border-color: rgba(255, 255, 255, 0.9);
    background: transparent;
}

.lineup-field.concrete .center-line {
    background: rgba(255, 255, 255, 0.9);
}

/* Dark Mode - Gece Modu */
.lineup-field.dark {
    background: linear-gradient(to bottom, 
        #1a1a2e 0%, #1a1a2e 8%,
        #16213e 8%, #16213e 16%,
        #1a1a2e 16%, #1a1a2e 24%,
        #16213e 24%, #16213e 32%,
        #1a1a2e 32%, #1a1a2e 40%,
        #16213e 40%, #16213e 48%,
        #1a1a2e 48%, #1a1a2e 56%,
        #16213e 56%, #16213e 64%,
        #1a1a2e 64%, #1a1a2e 72%,
        #16213e 72%, #16213e 80%,
        #1a1a2e 80%, #1a1a2e 88%,
        #16213e 88%, #16213e 100%
    );
    border-color: #00ff88;
}

.lineup-field.dark .center-line,
.lineup-field.dark .center-circle,
.lineup-field.dark .penalty-area,
.lineup-field.dark .goal-area {
    border-color: rgba(0, 255, 136, 0.6);
    background: transparent;
}

.lineup-field.dark .center-line {
    background: rgba(0, 255, 136, 0.6);
}

.lineup-field.futsal .center-line,
.lineup-field.futsal .center-circle,
.lineup-field.futsal .penalty-area,
.lineup-field.futsal .goal-area {
    border-color: rgba(255, 235, 59, 0.8);
    background: transparent;
}

.lineup-field.futsal .center-line {
    background: rgba(255, 235, 59, 0.8);
}

.lineup-field::after {
    content: 'Uyan Yazılım';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.lineup-field::before {
    content: 'Ayrancılar Halı Saha';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.field-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.penalty-area {
    position: absolute;
    left: 20%;
    right: 20%;
    height: 18%;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.penalty-area.top {
    top: 0;
    border-top: none;
}

.penalty-area.bottom {
    bottom: 0;
    border-bottom: none;
}

.goal-area {
    position: absolute;
    left: 35%;
    right: 35%;
    height: 8%;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.goal-area.top {
    top: 0;
    border-top: none;
}

.goal-area.bottom {
    bottom: 0;
    border-bottom: none;
}

.formation-positions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.position-slot {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.position-slot .player-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: #e53935;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.position-slot .player-marker.white-jersey {
    border-color: #000000;
}

.position-slot .player-name {
    margin-top: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: text;
    outline: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.position-slot .player-name:focus {
    border-color: var(--accent-green);
    background: rgba(0, 0, 0, 0.9);
}

.position-slot .player-name:empty::before {
    content: 'İsim';
    color: rgba(255, 255, 255, 0.4);
}

.position-slot:hover .player-marker {
    transform: scale(1.1);
}

.position-slot.dragging {
    cursor: grabbing;
    z-index: 100;
}

.position-slot.dragging .player-marker {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.position-slot {
    cursor: grab;
}

.position-slot.empty .player-marker {
    background: rgba(255, 255, 255, 0.3);
    border-style: dashed;
}

.position-slot.dragover .player-marker {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Captain Badge */
.captain-badge {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* Player Popup */
.player-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.player-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.player-popup {
    background: white;
    border-radius: 16px;
    padding: 25px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.player-popup-overlay.active .player-popup {
    transform: scale(1);
}

.player-popup h3 {
    color: var(--darker-green);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.player-popup-field {
    margin-bottom: 15px;
}

.player-popup-field label {
    display: block;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.player-popup-field input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.player-popup-field input:focus {
    border-color: var(--primary-green);
}

.captain-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #FFF9E6;
    border: 2px solid #FFD700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.captain-toggle:hover {
    background: #FFF3CC;
}

.captain-toggle.active {
    background: #FFD700;
}

.captain-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.captain-toggle-badge {
    background: #FFD700;
    color: #000;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.captain-toggle.active .captain-toggle-badge {
    background: #000;
    color: #FFD700;
}

.player-popup-actions {
    display: flex;
    gap: 10px;
}

.player-popup-actions button {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-popup-cancel {
    background: #f3f4f6;
    color: #374151;
}

.btn-popup-cancel:hover {
    background: #e5e7eb;
}

.btn-popup-save {
    background: var(--primary-green);
    color: white;
}

.btn-popup-save:hover {
    background: var(--dark-green);
}

@media (max-width: 1200px) {
    .lineup-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 25px;
    }
    
    .lineup-promo {
        display: none;
    }
}

@media (max-width: 992px) {
    .lineup-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lineup-field {
        max-height: 500px;
    }
    
    .lineup-promo {
        display: none;
    }
}

@media (max-width: 576px) {
    .lineup-controls {
        padding: 20px;
    }
    
    .lineup-field {
        max-height: 450px;
    }
    
    .position-slot {
        width: 50px;
        height: 50px;
    }
    
    .position-slot .player-marker {
        width: 38px;
        height: 38px;
        font-size: 0.7rem;
    }
    
    .position-slot .player-name {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
    
    .center-circle {
        width: 60px;
        height: 60px;
    }
}


/* Custom Toast Notification */
.custom-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
    max-width: 400px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.custom-toast.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.custom-toast-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e53935, #c62828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.custom-toast-message {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.custom-toast-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-toast-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.custom-toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-toast-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Free Formation Label */
.free-formation-label {
    padding: 12px 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.free-formation-label:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
}


/* ========== BOŞ SAATLER SECTION ========== */
#bos-saatler {
    background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 100%);
    position: relative;
}

#bos-saatler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 0 L100 100'/%3E%3Cpath d='M100 0 L0 100'/%3E%3Cpath d='M50 0 L50 100'/%3E%3Cpath d='M0 50 L100 50'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

#bos-saatler > * {
    position: relative;
    z-index: 1;
}

#bos-saatler .section-title h2 {
    color: var(--text-white);
}

#bos-saatler .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.bos-saatler-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.bos-saatler-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bos-gun-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.bos-gun-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.bos-gun-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bos-gun-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bos-gun-info h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.bos-gun-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.bos-saatler-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bos-saat-item {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.bos-saat-item:hover {
    background: rgba(74, 222, 128, 0.25);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.bos-saat-item .saat {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
}

.bos-saat-item .fiyat {
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 4px;
}

.bos-saatler-empty {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bos-saatler-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.bos-saatler-empty p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.bos-saatler-empty .btn {
    margin-top: 20px;
}

.loading-state {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== REZERVASYON MODAL ========== */
.rezervasyon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rezervasyon-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.95), rgba(22, 101, 52, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.rezervasyon-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-content h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.selected-slot {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-white);
    font-weight: 500;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.12);
}

.modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

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

.form-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-result.success {
    display: block;
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.form-result.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

@media (max-width: 576px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .bos-saat-item {
        min-width: 80px;
        padding: 10px 15px;
    }
    
    .bos-gun-header {
        flex-direction: column;
        text-align: center;
    }
}
