/* ============================================
   LIPSTICK NIGHT CLUB - MAIN STYLESHEET
   Dark Theme | Neon Accents | Performance First
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --color-bg: #0a0a0f;
    --color-bg-alt: #12121a;
    --color-bg-card: #1a1a2e;
    --color-bg-elevated: #16213e;
    --color-text: #e8e8f0;
    --color-text-muted: #a0a0b8;
    --color-text-dim: #6b6b80;
    --color-neon-pink: #ff2d75;
    --color-neon-purple: #b829dd;
    --color-neon-blue: #00d4ff;
    --color-neon-green: #39ff14;
    --color-gradient: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-purple));
    --color-gradient-alt: linear-gradient(135deg, var(--color-neon-purple), var(--color-neon-blue));
    --color-whatsapp: #25d366;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 45, 117, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(255, 45, 117, 0.3);
    --shadow-neon-purple: 0 0 20px rgba(184, 41, 221, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --header-height: 72px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-neon-pink);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-neon-purple);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* === SECTION === */
.section {
    padding: 80px 0;
}

.section__header {
    margin-bottom: 48px;
}

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

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-neon-pink);
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section__footer {
    text-align: center;
    margin-top: 40px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn--neon {
    background: var(--color-gradient);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

.btn--neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 45, 117, 0.5);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border-color: var(--color-neon-pink);
    color: var(--color-neon-pink);
}

.btn--outline:hover {
    background: rgba(255, 45, 117, 0.1);
    transform: translateY(-2px);
    color: var(--color-neon-pink);
}

.btn--whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
}

.btn--whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    color: #fff;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* === NAVBAR === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar__brand {
    flex-shrink: 0;
}

.navbar__brand img,
.navbar__brand .custom-logo {
    max-height: 48px;
    width: auto;
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.logo-lipstick {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.logo-nightclub {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.navbar__menu {
    display: flex;
    align-items: center;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__list li a {
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    padding: 10px 16px;
    display: block;
    white-space: nowrap;
}

.navbar__list li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width var(--transition);
}

.navbar__list li a:hover::after,
.navbar__list li.current-menu-item a::after {
    width: 60%;
}

.navbar__list li a:hover {
    color: var(--color-neon-pink);
}

.navbar__list li.current-menu-item a {
    color: var(--color-neon-pink);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    cursor: pointer;
    background: none;
    border: none;
}

.navbar__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
    border-radius: 2px;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.5) 50%,
        rgba(10, 10, 15, 0.9) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero__title {
    margin-bottom: 24px;
}

.hero__title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero__title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--color-text-muted);
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--color-text-muted);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.about-brief__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-brief__text.rich-content {
    font-size: 1.05rem;
}

.about-brief__features {
    margin-bottom: 32px;
}

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

.about-brief__features li svg {
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.about-brief__visual {
    position: relative;
}

.about-brief__visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-brief__glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 41, 221, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

/* === SERVICES === */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: block;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-decoration: none;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.service-card__icon {
    margin-bottom: 16px;
    color: var(--color-neon-pink);
}

.service-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-neon-pink);
}

/* === EVENTS === */
.events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.event-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.event-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.event-card:hover .event-card__image img {
    transform: scale(1.05);
}

.event-card__date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--color-neon-pink);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}

.event-card__day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-neon-pink);
}

.event-card__month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.event-card__content {
    padding: 20px;
}

.event-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-card__title a {
    color: #fff;
}

.event-card__title a:hover {
    color: var(--color-neon-pink);
}

.event-card__time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.event-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    line-height: 1.5;
}

.events__placeholder {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-bg-card);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
}

/* === GALLERY === */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item--placeholder {
    background: var(--color-bg-card);
    border: 1px dashed var(--color-border);
}

/* === WHATSAPP CATALOG CTA === */
.whatsapp-cta {
    background: var(--color-bg-alt);
}

.whatsapp-cta__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.whatsapp-cta__grid--right,
.whatsapp-cta__grid--left {
    grid-template-columns: 1fr 1fr;
}

.whatsapp-cta__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.whatsapp-cta__content {
    margin-bottom: 0;
}

.whatsapp-cta__benefits {
    margin-top: 20px;
    margin-bottom: 0;
    list-style: none;
}

.whatsapp-cta__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: var(--color-text);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.whatsapp-cta__benefits li:last-child {
    border-bottom: none;
}

.whatsapp-cta__benefits li svg {
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.whatsapp-cta__btn-wrap {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.whatsapp-cta__note {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.whatsapp-cta__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.whatsapp-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.5s ease;
}

.whatsapp-cta__media:hover .whatsapp-cta__image {
    transform: scale(1.03);
}

/* === RICH CONTENT (shared for admin rich text editor output) === */
.rich-content {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
    text-align-last: left;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.rich-content > *:first-child {
    margin-top: 0;
}

.rich-content > *:last-child {
    margin-bottom: 0;
}

.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rich-content h2 { font-size: 1.4rem; }
.rich-content h3 { font-size: 1.2rem; }
.rich-content h4 { font-size: 1.05rem; }

.rich-content p {
    margin-bottom: 12px;
}

.rich-content ul,
.rich-content ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.rich-content li {
    margin-bottom: 6px;
}

.rich-content a {
    color: var(--color-neon-pink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.rich-content a:hover {
    color: var(--color-neon-purple);
}

.rich-content strong,
.rich-content b {
    color: #fff;
    font-weight: 600;
}

.rich-content em,
.rich-content i {
    font-style: italic;
}

.rich-content blockquote {
    border-left: 3px solid var(--color-neon-pink);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 12px 0;
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.rich-content th,
.rich-content td {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.rich-content th {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ intro area */
.faq__intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

/* === BLUR READ MORE === */
.blur-readmore {
    padding-top: 0;
    padding-bottom: 32px;
}

/* Footer ile aynı genişlik – varsayılan .container (--container-max) kullanılır */

.blur-readmore__wrapper {
    width: 100%;
    max-width: 100%;
}

.blur-readmore__inner {
    position: relative;
    overflow: hidden;
    /* 3 visible lines: 0.95rem font × 1.8 line-height × 3 ≈ 5.1rem */
    max-height: 5.4rem;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.blur-readmore__content {
    padding-bottom: 0;
    text-align: justify;
    text-align-last: left;
}

.blur-readmore__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* covers the bottom ~2 lines */
    height: 3.8rem;
    /* rgba avoids the grey-ghost artefact that 'transparent' causes on dark backgrounds */
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0) 0%, #0a0a0f 85%);
    pointer-events: none;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.blur-readmore__wrapper.is-open .blur-readmore__fade {
    opacity: 0;
    pointer-events: none;
}

/* Centered circle arrow button */
.blur-readmore__actions {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.blur-readmore__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 45, 117, 0.45);
    background: rgba(255, 45, 117, 0.06);
    color: var(--color-neon-pink);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.blur-readmore__toggle:hover {
    background: rgba(255, 45, 117, 0.18);
    border-color: var(--color-neon-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 45, 117, 0.25);
}

.blur-readmore__icon {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.blur-readmore__wrapper.is-open .blur-readmore__icon {
    transform: rotate(180deg);
}

/* === BLOG CARDS === */
.blog-latest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.blog-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-card__content {
    padding: 20px;
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.blog-card__cat {
    background: rgba(255, 45, 117, 0.1);
    color: var(--color-neon-pink);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.blog-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card__title a {
    color: #fff;
}

.blog-card__title a:hover {
    color: var(--color-neon-pink);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-neon-pink);
}

/* === PAGE HEADER === */
.page-header {
    padding: 100px 0 40px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.page-header__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header__desc {
    color: var(--color-text-muted);
    margin-top: 12px;
    font-size: 1.05rem;
    max-width: 600px;
}

.page-header--pricing {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(255, 45, 117, 0.05) 100%);
}

.page-header--transfer {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.page-header--location {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.page-header--vip {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(255, 45, 117, 0.08) 100%);
    border-bottom-color: rgba(255, 45, 117, 0.2);
}

.page-header--catalog {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.page-header--gallery {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.page-header--contact {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.page-header--about {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(139, 92, 246, 0.08) 100%);
}

/* === BREADCRUMB === */
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.breadcrumb li {
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.breadcrumb li a {
    color: var(--color-text-muted);
}

.breadcrumb li a:hover {
    color: var(--color-neon-pink);
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: var(--color-text-dim);
}

/* === CONTENT LAYOUT === */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.content-layout__main {
    min-width: 0;
    overflow: hidden;
}

/* İçerik içindeki görseller asla taşmasın – masaüstü & mobil */
.content-layout__main img {
    max-width: 100%;
    height: auto;
}

.content-layout__main figure {
    max-width: 100%;
    overflow: hidden;
}

.content-layout__main iframe,
.content-layout__main video,
.content-layout__main embed,
.content-layout__main object {
    max-width: 100%;
}

.content-layout__main h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
    color: #fff;
}

.content-layout__main h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.content-layout__main p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.content-layout__main ul,
.content-layout__main ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-layout__main ul li,
.content-layout__main ol li {
    margin-bottom: 8px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.content-layout__main ul li {
    list-style: disc;
}

.content-layout__main ol li {
    list-style: decimal;
}

/* === SIDEBAR === */
.sidebar-pages {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-widget__title {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    color: #fff;
}

.sidebar-widget__links li {
    margin-bottom: 8px;
}

.sidebar-widget__links li a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.sidebar-widget__links li a:hover {
    background: rgba(255, 45, 117, 0.1);
    color: var(--color-neon-pink);
    padding-left: 16px;
}

.sidebar-widget--cta {
    background: linear-gradient(135deg, rgba(255, 45, 117, 0.1), rgba(184, 41, 221, 0.1));
    border-color: var(--color-border-hover);
}

.sidebar-widget--cta p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.sidebar-widget--cta .btn {
    margin-bottom: 8px;
}

/* === BLOG ARCHIVE === */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-grid__posts {
    display: grid;
    gap: 24px;
}

.blog-grid__pagination {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 32px;
}

.blog-grid__pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.blog-grid__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.blog-grid__pagination .page-numbers.current,
.blog-grid__pagination .page-numbers:hover {
    background: var(--color-gradient);
    color: #fff;
    border-color: transparent;
}

/* === SINGLE POST === */
.single-post__featured {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.single-post__featured img {
    width: 100%;
    height: auto;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.post-tags {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.post-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 45, 117, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    margin: 4px;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.post-navigation a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.post-navigation a:hover {
    color: var(--color-neon-pink);
}

.post-navigation__next {
    text-align: right;
}

/* === POST STATS BAR === */
.post-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.post-stats__item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-stats__item svg {
    color: var(--color-neon-pink);
    flex-shrink: 0;
}

.post-stats__sep {
    color: var(--color-border);
    padding: 0 2px;
}

/* === POST SHARE BUTTONS === */
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.post-share__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-dim);
    white-space: nowrap;
}

.post-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Icon-only circular share buttons */
.post-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    flex-shrink: 0;
}

.post-share__btn:hover {
    transform: translateY(-3px) scale(1.08);
    filter: brightness(1.15);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.post-share__btn--facebook {
    background: #1877f2;
    color: #fff;
}

.post-share__btn--x {
    background: #0f0f0f;
    color: #fff;
    border: 1px solid #333;
}

.post-share__btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.post-share__btn--linkedin {
    background: #0a66c2;
    color: #fff;
}

.post-share__btn--reddit {
    background: #ff4500;
    color: #fff;
}

.post-share__btn--copy {
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.post-share__btn--copy.is-copied {
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
    background: rgba(57, 255, 20, 0.08);
}

/* === FOOTER === */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.footer__social-link:hover {
    border-color: var(--color-neon-pink);
    color: var(--color-neon-pink);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links li a:hover {
    color: var(--color-neon-pink);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer__contact li svg {
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--color-neon-pink);
}

.footer__contact li a {
    color: var(--color-text-muted);
}

.footer__contact li a:hover {
    color: var(--color-neon-pink);
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copyright {
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.footer__seo-text {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* === 404 PAGE === */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.error-404__content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-404__title {
    font-size: 8rem;
    font-weight: 800;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-404__subtitle {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-404__desc {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

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

    .events__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .content-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .section {
        padding: 60px 0;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-alt);
        padding: 80px 24px 24px;
        transition: right var(--transition);
        z-index: 1000;
        border-left: 1px solid var(--color-border);
        display: block;
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .navbar__list li {
        width: 100%;
    }

    .navbar__list li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1rem;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__title-main {
        font-size: 2.2rem;
    }

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

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

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

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-cta__grid--right,
    .whatsapp-cta__grid--left {
        grid-template-columns: 1fr;
    }

    .whatsapp-cta__media {
        aspect-ratio: 16 / 9;
        max-height: 320px;
    }

    .blog-latest__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title-main {
        font-size: 1.8rem;
    }

    .whatsapp-cta__btn-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }


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

/* === ANIMATIONS (CSS only, performance-friendly) === */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .event-card,
    .blog-card,
    .gallery__item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
}

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

/* === CONTACT PAGE === */
.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-page__info h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page__desc {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-detail__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 117, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-neon-pink);
    flex-shrink: 0;
}

.contact-detail__icon--whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
}

.contact-detail h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #fff;
}

.contact-detail a,
.contact-detail p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-page__hours {
    margin-top: 32px;
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.contact-page__hours h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.contact-page__hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.contact-page__map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-page__map-wrap iframe {
    display: block;
    filter: brightness(0.8) contrast(1.1) saturate(0.8);
}

.contact-page__map-placeholder {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-dim);
    text-align: center;
    padding: 24px;
}

/* === EVENT COUNTDOWN === */
.event-countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-neon-pink);
    line-height: 1.2;
}

.countdown__label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown__expired {
    color: var(--color-neon-green);
    font-weight: 600;
}

/* === INNER PAGE === */
.inner-page__featured {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.inner-page__featured img {
    width: 100%;
    height: auto;
}

.inner-page__content h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.inner-page__content h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.inner-page__content p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* === RELATED LINKS === */
.inner-page__related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.inner-page__related h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-top: none;
    padding-top: 0;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.related-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.related-link-card:hover {
    border-color: var(--color-border-hover);
    background: rgba(255, 45, 117, 0.05);
}

.related-link-card__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.related-link-card:hover .related-link-card__title {
    color: var(--color-neon-pink);
}

.related-link-card svg {
    color: var(--color-neon-pink);
}

/* === EVENT META === */
.event-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.event-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.event-meta__item svg {
    color: var(--color-neon-pink);
}

/* === EVENT CTA === */
.event-cta {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 45, 117, 0.08), rgba(184, 41, 221, 0.08));
    border: 1px solid var(--color-border-hover);
    border-radius: var(--radius-md);
}

.event-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.event-cta p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.event-cta__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === EVENT PRICE INFO === */
.event-price-info {
    margin-top: 32px;
    padding: 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.event-price-info h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.event-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-neon-pink);
}

/* === SINGLE EVENT === */
.single-event__featured {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.single-event__featured img {
    width: 100%;
    height: auto;
}

/* === SEARCH FORM === */
.search-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 20px auto;
}

.search-form__input {
    flex: 1;
    padding: 12px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.9rem;
}

.search-form__input:focus {
    outline: none;
    border-color: var(--color-neon-pink);
}

.search-form__submit {
    padding: 12px 16px;
    background: var(--color-gradient);
    border-radius: var(--radius-sm);
    color: #fff;
    display: flex;
    align-items: center;
}

/* === COMMENTS === */
.comments-area {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.comments-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.comment-list {
    margin-bottom: 32px;
}

.comment-list li {
    list-style: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    margin-bottom: 12px;
}

.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: var(--color-neon-pink);
}

/* === ABOUT FEATURES === */
.about-features {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

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

.about-feature {
    padding: 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.about-feature:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.about-feature__icon {
    color: var(--color-neon-pink);
    margin-bottom: 16px;
}

.about-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

/* === GALLERY PAGE === */
.gallery-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-page__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-page__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-page__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-page__item:hover img {
    transform: scale(1.05);
}

.gallery-page__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-page__item:hover::after {
    opacity: 1;
}

.gallery-page__count {
    text-align: center;
    padding: 24px 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.gallery-page__empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-muted);
}

.gallery-page__empty svg {
    color: var(--color-border);
    margin-bottom: 16px;
}

.gallery-page__empty p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.gallery-page__empty-hint {
    font-size: 0.85rem;
    opacity: 0.6;
}

.gallery-page__content {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.gallery-page__content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

/* === FAQ SECTION === */
.faq {
    background: var(--color-bg-alt);
}

.faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item.active {
    border-color: var(--color-neon-pink);
    box-shadow: 0 0 20px rgba(255, 45, 117, 0.08);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--color-neon-pink);
}

.faq__icon {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform var(--transition), color var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
    color: var(--color-neon-pink);
}

.faq__answer {
    padding: 0 24px 20px;
    overflow: hidden;
}

.faq__answer[hidden] {
    display: none;
}

.faq__answer p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    padding-top: 4px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .faq__question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq__answer {
        padding: 0 20px 16px;
    }
}

/* === FONT FACE === */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter-var.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+011E-011F, U+0130-0131, U+015E-015F, U+00C7, U+00E7, U+00D6, U+00F6, U+00DC, U+00FC;
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 768px) {
    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .related-links {
        grid-template-columns: 1fr;
    }

    .event-countdown {
        flex-wrap: wrap;
    }

    .countdown__item {
        min-width: 60px;
    }

    .countdown__number {
        font-size: 1.5rem;
    }

    .event-cta__buttons {
        flex-direction: column;
    }
}

/* === PRICING PAGE === */
.pricing-page__intro {
    margin-bottom: 40px;
}

.pricing-page__hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.pricing-page__hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pricing-page__content {
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.pricing-page__content h2,
.pricing-page__content h3 {
    color: #fff;
    margin-top: 32px;
}

.pricing-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--color-neon-pink);
    box-shadow: 0 0 30px rgba(255, 45, 117, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-neon);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card__header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pricing-card__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pricing-card__body li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pricing-card__body li:last-child {
    border-bottom: none;
}

/* === TRANSFER PAGE === */
.transfer-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.transfer-page__content {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.transfer-page__content h2,
.transfer-page__content h3 {
    color: #fff;
    margin-top: 24px;
}

.transfer-page__visual img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.transfer-types {
    margin-bottom: 48px;
}

.transfer-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.transfer-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.transfer-card:hover {
    border-color: var(--color-neon-pink);
    transform: translateY(-4px);
}

.transfer-card__icon {
    color: var(--color-neon-pink);
    margin-bottom: 16px;
}

.transfer-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.transfer-cta {
    text-align: center;
    padding: 48px 0;
}

/* === LOCATION PAGE === */
.location-page__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid var(--color-border);
}

.location-page__map iframe {
    display: block;
}

.location-page__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.location-page__content {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.location-page__content h2,
.location-page__content h3 {
    color: #fff;
    margin-top: 24px;
}

.location-info-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
}

.location-info-card h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-info-card h3 svg {
    color: var(--color-neon-pink);
}

.location-info-card p,
.location-info-card a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.location-info-card a:hover {
    color: var(--color-neon-pink);
}

.location-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
}

.location-hours li:last-child {
    border-bottom: none;
}

/* === VIP PAGE === */
.vip-page__hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
}

.vip-page__hero img {
    width: 100%;
    height: auto;
    display: block;
}

.vip-page__hero-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
}

.vip-badge {
    background: var(--gradient-neon);
    color: #fff;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.vip-page__content {
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.vip-page__content h2,
.vip-page__content h3 {
    color: #fff;
    margin-top: 32px;
}

.vip-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 64px;
}

.vip-feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
}

.vip-feature-card:hover {
    border-color: var(--color-neon-pink);
    transform: translateY(-4px);
}

.vip-feature-card__number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.vip-feature-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.vip-feature-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.vip-cta {
    text-align: center;
    padding: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.vip-cta h2 {
    color: #fff;
    margin-bottom: 12px;
}

.vip-cta p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.vip-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CATALOG PAGE === */
.catalog-page__hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.catalog-page__hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.catalog-page__content {
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.catalog-page__content h2,
.catalog-page__content h3 {
    color: #fff;
    margin-top: 32px;
}

.catalog-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.catalog-step {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.catalog-step:hover {
    border-color: var(--color-neon-pink);
}

.catalog-step__number {
    width: 48px;
    height: 48px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.catalog-step h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.catalog-step p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.catalog-cta {
    text-align: center;
    padding: 32px 0;
}

/* === SECTION TITLE SMALL === */
.section__title--sm {
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
}

/* === BUTTON VARIANTS === */
.btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--color-neon-pink);
    color: var(--color-neon-pink);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    text-align: center;
}

.btn--outline:hover {
    background: var(--color-neon-pink);
    color: #fff;
}

/* === INNER PAGES RESPONSIVE === */
@media (max-width: 768px) {
    .pricing-packages__grid {
        grid-template-columns: 1fr;
    }

    .transfer-page__grid {
        grid-template-columns: 1fr;
    }

    .transfer-types__grid {
        grid-template-columns: 1fr;
    }

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

    .vip-features__grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-steps__grid {
        grid-template-columns: 1fr;
    }

    .vip-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .vip-features__grid {
        grid-template-columns: 1fr;
    }
}

/* === PRINT === */
@media print {
    .site-header,
    .whatsapp-float,
    .navbar__toggle,
    .hero__scroll-indicator {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
