:root {
    --primary: #c9a76d;
    --secondary: #1a1a1a;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --bg: #0f0f0f;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(10, 10, 10, 0.75);
    --card-bg: rgba(255, 255, 255, 0.05);
    /* Dark card background */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-color: rgba(201, 167, 109, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
body.light-theme {
    --primary: #DA4848;
    /* Coral Red */
    --secondary: #76D2DB;
    /* Light Cyan */
    --text: #36064D;
    /* Deep Purple */
    --text-muted: rgba(54, 6, 77, 0.7);
    /* Deep Purple Muted */
    --bg: #F7F6E5;
    /* Light Cream */
    --glass: rgba(54, 6, 77, 0.05);
    /* Transparent Deep Purple */
    --glass-bg: rgba(247, 246, 229, 0.85);
    /* Cream Glass */
    --card-bg: #ffffff;
    /* White card background */
    --card-shadow: 0 10px 40px rgba(54, 6, 77, 0.1);
    /* Soft purple shadow */
    --border-color: rgba(54, 6, 77, 0.1);
}

/* Hero — gündüz temasında tam ekran fotoğraf; üzerinde ek renk perdesi yok */
/* Light-theme campaign overrides */
body.light-theme .campaign-banner {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

body.light-theme .campaign-banner .campaign-title {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.light-theme .btn-campaign {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

body.light-theme .btn-campaign:hover {
    background: #333;
    color: #fff;
}

body.light-theme .hero-overlay {
    background: transparent;
}

body.light-theme .hero-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(54, 6, 77, 0.12);
    backdrop-filter: blur(14px);
}

body.light-theme .hero-content h1 {
    color: var(--text);
}

body.light-theme .hero-content p {
    color: var(--text-muted);
}

body.light-theme .hero-btns .btn-secondary {
    color: var(--text);
    border-color: rgba(54, 6, 77, 0.35);
}

body.light-theme .hero-btns .btn-secondary:hover {
    background: rgba(54, 6, 77, 0.07);
    border-color: rgba(54, 6, 77, 0.55);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

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

section {
    padding: 100px 0;
}

h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text);
    position: relative;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

nav .site-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    min-width: 0;
    line-height: 0;
    padding: 0;
    border-radius: 10px;
    transition: var(--transition);
}

nav .site-logo-image {
    display: block;
    width: auto;
    height: 58px;
    max-width: 100%;
    object-fit: contain;
}

nav .site-logo-image--light {
    display: none;
}

body.light-theme nav .site-logo-image--dark {
    display: none;
}

body.light-theme nav .site-logo-image--light {
    display: block;
}

@media (max-width: 992px) {
    nav .site-logo-image {
        height: 50px;
    }
}

@media (max-width: 576px) {
    nav .site-logo-image {
        height: 42px;
    }
}

nav .site-logo-link:hover {
    opacity: 0.92;
}

nav .site-logo-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.footer-phones {
    display: inline-block;
    line-height: 1.55;
}

.footer-phones a {
    color: inherit;
    text-decoration: none;
}

.footer-phones a:hover {
    color: var(--primary);
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

/* Campaign Banner Core */
.campaign-banner {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    margin-top: var(--header-h, 85px);
    color: white;
    padding: 0;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.5s ease forwards;
    height: 50px;
}

/* Themes */
.theme-red-orange {
    background: linear-gradient(90deg, #ff4444, #ff8800);
}

.theme-blue-cyan {
    background: linear-gradient(90deg, #0052D4, #4364F7, #6FB1FC);
}

.theme-green-teal {
    background: linear-gradient(90deg, #11998e, #38ef7d);
}

.theme-gold-dark {
    background: linear-gradient(90deg, #333333, #c9a76d);
}

.theme-purple-pink {
    background: linear-gradient(90deg, #8E2DE2, #4A00E0);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.pulse {
    animation: pulseIcon 1.5s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        color: #fff;
    }

    100% {
        transform: scale(1);
    }
}

button.btn-campaign {
    border: none;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
    line-height: inherit;
}

.btn-campaign {
    background: white;
    color: #ff4444;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-campaign:hover {
    background: #1a1a1a;
    color: white;
}

.btn-whatsapp-small {
    display: inline-block;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-small:hover {
    background: #1ebd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Campaign Banner Slider */
.campaign-slider {
    position: relative;
    width: 65%;
    height: 100%;
    overflow: hidden;
}

.campaign-slide {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.campaign-slide-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.campaign-title {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Hero */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(201, 167, 109, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(201, 167, 109, 0.2);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(201, 167, 109, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(201, 167, 109, 0.5);
    }

    100% {
        box-shadow: 0 0 10px rgba(201, 167, 109, 0.2);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #ffffff;
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 167, 109, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Features Grid (inside About) */
.features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 167, 109, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(201, 167, 109, 0.5);
    box-shadow: 0 25px 45px rgba(201, 167, 109, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

/* Horizontal Scroll System */
.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 30px;
    padding: 10px 0 25px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--glass);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Kursiyer stilleri kaldırıldı */

footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border-color);
    padding: 48px 0 16px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr 1fr;
    gap: 22px;
}

.footer-map h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
}

.footer-map h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-link:hover .map-embed-wrapper iframe {
    filter: brightness(1.1);
}

.map-overlay-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.map-link:hover .map-overlay-hint {
    opacity: 1;
}

.map-link {
    text-decoration: none;
    display: block;
}

.footer-brand .footer-logo {
    margin-bottom: 16px;
    line-height: 0;
}

.footer-brand .footer-logo-image {
    display: block;
    width: auto;
    max-width: min(100%, 260px);
    height: 52px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-links h3,
.footer-classes h3,
.footer-contact h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-classes h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links ul,
.footer-classes ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a,
.footer-classes ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
}

.footer-links ul li a:hover,
.footer-classes ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-item span,
.contact-item a {
    color: #999;
    text-decoration: none;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(201, 167, 109, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 167, 109, 0.5);
}

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

    .footer-map {
        grid-column: span 2;
    }

    .map-embed-wrapper {
        height: 200px;
    }
}

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

    .footer-map {
        grid-column: span 1;
    }
}

/* Video Section */
.video-card {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
}

.video-container {
    position: relative;
    padding-bottom: 177%;
    /* Vertical (Shorts için) */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
}

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

/* About Section */
.about-section {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 167, 109, 0.04) 0%, transparent 60%);
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-reasons {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.about-reasons li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.about-reasons li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-right {
    position: relative;
}

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

.stat-item {
    background: var(--card-bg);
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 167, 109, 0.4);
    box-shadow: 0 15px 30px rgba(201, 167, 109, 0.1);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    opacity: 0.8;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(201, 167, 109, 0.4);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 14px;
}

.social-links a {
    color: var(--text);
    font-size: 1.5rem;
    background: var(--glass);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/*
 * Footer her zaman koyu zemin (#0a0a0a). Gündüz temasında --text mor olduğu için
 * .social-links ikonları burada kayboluyordu; footer içinde sabit yüksek kontrast.
 */
footer .social-links a {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

footer .social-links a:hover {
    color: #1a1a1a;
    background: var(--primary);
    border-color: transparent;
    transform: translateY(-4px);
}

/* License Categories Section */
.license-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.license-cat-card {
    width: 350px;
    max-width: 100%;
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.license-cat-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(201, 167, 109, 0.15);
}

.cat-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.license-cat-card:hover .cat-icon {
    transform: scale(1.1);
}

.license-cat-card h3 {
    font-size: 1.6rem; /* Biraz küçülttük ki sığsın */
    margin-bottom: 15px;
    word-break: break-word; /* Uzun kelimeleri bölsün */
}

.license-cat-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1; /* Alt kısmın daima tabana oturmasını sağlar */
}

.btn-detail {
    display: inline-block;
    padding: 10px 25px;
    background: var(--glass);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.license-cat-card:hover .btn-detail {
    background: var(--primary);
    color: var(--secondary);
}

/* License Modal */
.license-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.l-modal-content {
    background: var(--bg);
    margin: 5% auto;
    padding: 50px;
    border: 1px solid var(--border-color);
    width: 80%;
    max-width: 900px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.l-close {
    color: var(--text-muted);
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

button.l-close,
button.c-modal-close {
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

/* Kampanyalar modal (ehliyet modalı ile aynı tema değişkenleri) */
.campaigns-modal {
    z-index: 10002;
}

.campaigns-modal .l-modal-content.c-modal-surface {
    max-width: 600px;
    width: 92%;
    margin: 4% auto 5%;
    padding: 2.35rem 2.1rem 1.9rem;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-color);
}

.c-modal-surface {
    max-width: 560px;
}

.c-modal-header {
    text-align: center;
    padding: 0 0.5rem 0.25rem;
    margin: 0 auto 1.4rem;
    max-width: 32rem;
}

.c-modal-title {
    display: inline-block;
    color: var(--primary);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    margin: 0 auto 0.7rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.55rem;
}

/* Genel bölüm h2::after kuralı (kısa orta çizgi) bu başlığa uygulanmasın */
h2.c-modal-title::after {
    display: none;
    content: none;
}

.c-modal-lead {
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-align: center;
    max-width: 25rem;
}

.c-modal-list {
    max-height: min(54vh, 440px);
    overflow-y: auto;
    padding: 0.2rem 6px 0.35rem 2px;
    margin: 0;
    scrollbar-gutter: stable;
}

.c-modal-list::-webkit-scrollbar {
    width: 8px;
}

.c-modal-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 8px;
}

.campaign-modal-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.25rem 1.35rem 1.4rem 1.45rem;
    margin-bottom: 0.9rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.campaign-modal-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary);
    border-radius: 18px 0 0 18px;
}

.campaign-modal-card:hover {
    border-color: rgba(201, 167, 109, 0.4);
    box-shadow: var(--card-shadow), 0 0 0 1px rgba(201, 167, 109, 0.12);
}

body.light-theme .campaign-modal-card:hover {
    border-color: rgba(54, 6, 77, 0.22);
    box-shadow: var(--card-shadow);
}

.campaign-modal-card.theme-red-orange::before {
    background: linear-gradient(180deg, #ff4444 0%, #ff8800 100%);
}

.campaign-modal-card.theme-blue-cyan::before {
    background: linear-gradient(180deg, #0052D4 0%, #6FB1FC 100%);
}

.campaign-modal-card.theme-green-teal::before {
    background: linear-gradient(180deg, #11998e 0%, #38ef7d 100%);
}

.campaign-modal-card.theme-gold-dark::before {
    background: linear-gradient(180deg, #333 0%, #c9a76d 100%);
}

.campaign-modal-card.theme-purple-pink::before {
    background: linear-gradient(180deg, #8E2DE2 0%, #4A00E0 100%);
}

.campaign-modal-card__title {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.35;
    padding-left: 0.15rem;
}

.campaign-modal-card__title i {
    color: var(--primary);
    flex-shrink: 0;
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: var(--glass);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.campaign-modal-card__body {
    color: var(--text);
    opacity: 0.88;
    font-size: 1.02rem;
    line-height: 1.75;
    letter-spacing: 0.015em;
    padding-left: 0.15rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.light-theme .campaign-modal-card__body {
    color: var(--text);
    opacity: 0.9;
}

.c-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 10px;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
    justify-content: center;
    align-items: center;
}

.c-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 1.4rem;
    min-height: 2.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.22);
    transition: var(--transition);
}

.c-modal-cta:hover {
    background: #1ebd5a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.c-modal-cta--ghost {
    background: var(--glass);
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.c-modal-cta--ghost:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-1px);
}

body.light-theme .c-modal-cta--ghost {
    color: var(--text);
    border-color: rgba(54, 6, 77, 0.35);
}

body.light-theme .c-modal-cta--ghost:hover {
    background: rgba(54, 6, 77, 0.08);
    color: var(--text);
    border-color: rgba(54, 6, 77, 0.5);
}

@media (max-width: 576px) {
    .c-modal-surface {
        width: 94%;
    }

    .campaigns-modal .l-modal-content.c-modal-surface {
        padding: 1.75rem 1.1rem 1.5rem;
        margin: 5% auto 6%;
    }

    .c-modal-header {
        padding: 0 0.15rem 0.25rem;
    }

    .c-modal-title {
        font-size: 1.2rem;
    }

    .c-modal-lead {
        font-size: 0.92rem;
    }

    .campaign-modal-card {
        padding: 1.1rem 1rem 1.2rem 1.1rem;
    }

    .campaign-modal-card__body {
        font-size: 0.98rem;
    }

    .c-modal-footer {
        flex-direction: column;
    }

    .c-modal-cta,
    .c-modal-cta--ghost {
        width: 100%;
    }
}

.l-close:hover {
    color: var(--primary);
}

/* Ehliyet detay modalı: mobilde dokunma alanı (× hedefi) */
#licenseModal .l-close {
    z-index: 2;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    top: 12px;
    right: 12px;
}

/* Modal Content Styling */
.modal-article h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.modal-article h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.modal-article p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.modal-article ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-article li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.modal-article strong {
    color: var(--text);
}

@media (max-width: 992px) {
    .license-categories {
        flex-direction: column;
        align-items: center;
    }

    .license-cat-card {
        width: 100%;
        max-width: 400px;
    }

    .l-modal-content {
        width: 95%;
        padding: 30px;
    }
}

/* Docs Section */
.doc-card {
    flex: 0 0 auto;
    width: 220px;
    scroll-snap-align: start;
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
}

.doc-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(201, 167, 109, 0.2);
}

.doc-card i {
    font-size: 3.5rem;
    color: #ff4444;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 68, 68, 0.4));
    transition: var(--transition);
}

.doc-card:hover i {
    transform: scale(1.1);
}

.doc-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.doc-card small {
    color: var(--text-muted);
}

/* Harici ders / sınav linki (PDF kartından ayırt etmek için) */
.doc-card.doc-card--outlink i {
    color: var(--primary);
    filter: drop-shadow(0 0 12px rgba(201, 167, 109, 0.35));
}

/* Müşteri yorumları (ana sayfa — iki sütun) */
.reviews-section {
    padding: 90px 0;
    border-top: 1px solid var(--border-color);
}

.reviews-section .reviews-kicker {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.reviews-section .reviews-main-title {
    margin-bottom: 16px;
}

.reviews-lead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.reviews-flash {
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
}

.reviews-flash--ok {
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: #86efac;
}

.reviews-flash--err {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 36px;
    align-items: start;
    margin-top: 8px;
}

.reviews-list-column {
    min-width: 0;
}

.reviews-list-scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: min(70vh, 720px);
    overflow-y: auto;
    padding-right: 6px;
}

.review-list-empty {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 28px 24px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 20px 20px 20px 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.review-card--row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.review-card:hover {
    border-color: rgba(201, 167, 109, 0.4);
}

.review-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 167, 109, 0.15);
    border: 1px solid rgba(201, 167, 109, 0.35);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card-body {
    flex: 1;
    min-width: 0;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.review-stars {
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-size: 0.88rem;
}

.review-star-empty {
    opacity: 0.35;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

.review-author {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.review-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.reviews-form-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 26px 24px 28px;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 96px;
}

.reviews-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-form-title i {
    color: var(--primary);
    font-size: 1rem;
}

.reviews-form-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.reviews-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 6px;
}

.reviews-label .req {
    color: var(--primary);
}

.reviews-input,
.reviews-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

body.light-theme .reviews-input,
body.light-theme .reviews-textarea {
    background: rgba(255, 255, 255, 0.9);
}

.reviews-input:focus,
.reviews-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(201, 167, 109, 0.2);
}

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

.reviews-char-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: -4px;
    margin-bottom: 8px;
}

.star-rating-input {
    display: flex;
    gap: 6px;
    margin: 4px 0 14px;
}

.star-rating-btn {
    background: none;
    border: none;
    padding: 4px 2px;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.45rem;
    line-height: 1;
    opacity: 0.85;
    transition: var(--transition);
}

.star-rating-btn:hover,
.star-rating-btn:focus-visible {
    opacity: 1;
    transform: scale(1.08);
    outline: none;
}

.star-rating-btn.is-chosen i {
    font-weight: 900;
}

.reviews-submit {
    margin-top: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

    .reviews-form-panel {
        position: static;
        order: -1;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

.whatsapp-float img {
    width: 25px;
    margin-right: 10px;
}

.whatsapp-float span {
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */

/* --- Hamburger button (hidden on desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

/* --- Hero buttons wrap --- */
.hero-btns {
    flex-wrap: wrap;
}

/* ========== 992px (tablet landscape) ========== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-reasons {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .campaign-slider {
        width: 100%;
        /* Yükseklik %100 + position:absolute slaytlar, flex sütununda 0px çökme yapıyordu; metin kayboluyordu */
        height: auto;
        min-height: 46px;
        flex-shrink: 0;
    }

    .campaign-banner .container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        height: auto !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    .campaign-banner {
        height: auto;
        min-height: 0;
        padding: 10px 0;
    }

    .btn-campaign {
        position: static;
        margin-top: 0;
        align-self: center;
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    h2 {
        font-size: 2.4rem;
        margin-bottom: 35px;
    }

    section {
        padding: 70px 0;
    }

    .hero-content {
        padding: 36px 28px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
}

/* ========== 768px (tablet portrait) ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Mobilde kampanya butonunu gizle; satirin tamami tiklanabilir olsun */
    .campaign-banner {
        min-height: 50px;
        height: 50px;
        padding: 0;
    }

    .campaign-banner .container {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        height: 50px !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    .campaign-slider {
        width: 100%;
        min-height: 0;
        height: 100%;
    }

    .campaign-slide-content {
        cursor: pointer;
    }

    .btn-campaign {
        display: none;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        padding: 90px 0 30px;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        display: flex;
    }

    nav ul.nav-open {
        transform: translateX(0);
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 16px 30px;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-backdrop.is-visible {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .slider-btn.prev {
        left: 4px;
    }

    .slider-btn.next {
        right: 4px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    section {
        padding: 60px 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .lightbox-thumbnails {
        margin-top: 20px;
        max-width: 95%;
    }

    .thumb-item {
        width: 55px;
        height: 42px;
    }

    .gallery-item {
        width: 240px;
    }

    .video-card {
        width: 260px;
    }

    .album-card {
        width: 260px;
    }
}

/* ========== 576px (phone) ========== */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    section {
        padding: 40px 0;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 40px;
    }

    .hero-content {
        padding: 24px 16px;
        margin: 0 8px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-btns {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 16px;
        letter-spacing: 1px;
    }

    .feature-item {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .reviews-form-panel {
        padding: 20px 16px 24px;
    }

    .campaign-title {
        font-size: 0.85rem;
        white-space: normal;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.3;
        max-height: 2.6em;
        overflow: hidden;
    }

    .campaign-slider {
        min-height: 56px;
    }

    nav ul {
        width: 100%;
    }

    .whatsapp-float {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }

    .gallery-item {
        width: 200px;
    }

    .video-card {
        width: 220px;
    }

    .album-card {
        width: 220px;
        padding: 10px;
    }

    .lightbox-caption {
        font-size: 1rem;
    }

    .lightbox-counter {
        font-size: 0.9rem;
    }

    footer {
        padding: 36px 0 12px;
    }

    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* Elite Album & Lightbox System */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.album-card {
    flex: 0 0 auto;
    width: 300px;
    max-width: 300px;
    background: var(--glass);
    border-radius: 20px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass);
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .album-card { width: 260px; max-width: 260px; }
}

@media (max-width: 576px) {
    .album-card { width: 220px; max-width: 220px; padding: 10px; }
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(201, 167, 109, 0.2);
    border-color: var(--primary);
}

.album-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(201, 167, 109, 0.3);
}

.album-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.album-card:hover .album-img-wrapper img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.album-card h3 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
}

/* Premium Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    display: flex !important;
    animation: lbFadeIn 0.4s ease forwards;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lightbox-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: var(--secondary);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--primary);
}

.lightbox-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.lightbox-counter {
    margin-top: 10px;
    color: var(--primary);
    font-size: 1.1rem;
}

.lightbox-thumbnails {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    max-width: 90%;
}

.thumb-item {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--primary);
    transform: scale(1.1);
}

.thumb-item:hover {
    opacity: 0.8;
}