/* ============================================
   BEYTÜŞŞEBAPLILAR — Layout (All components)
   Rehbere birebir uygun
   ============================================ */

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Section ---- */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section--green {
    background: var(--color-primary);
    color: var(--color-white);
}

.section--light {
    background: transparent;
}

.section__header {
    margin-bottom: var(--space-2xl);
}

.section__header--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    height: var(--navbar-height);
    background: var(--color-primary);
    transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
}

.navbar__logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navbar__logo-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.navbar__logo-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    color: var(--color-white);
}

.navbar__logo-sub {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.6);
}

/* Desktop menu */
.navbar__menu-desktop {
    display: none;
    align-items: center;
    gap: 2px;
}

.navbar__dlink {
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: var(--weight-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.navbar__dlink:hover,
.navbar__dlink.active {
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
}

.navbar__dlink--cta {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff !important;
    font-weight: var(--weight-bold);
}
.navbar__dlink--cta:hover {
    background: rgba(255,255,255,0.25) !important;
}
.navbar__mlink--cta {
    background: var(--color-primary);
    color: #fff !important;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: var(--weight-bold);
    margin-top: 8px;
}

/* Navbar actions */
.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Lang Minimal */
.lang-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--weight-bold);
    user-select: none;
}

.lang-minimal__btn {
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.lang-minimal__btn:hover {
    color: rgba(255,255,255,0.8);
}

.lang-minimal__btn.active {
    color: var(--color-white);
}

.lang-minimal__divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
}

/* Hamburger */
.navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: var(--z-modal);
}

.navbar__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.navbar__toggle.open span:nth-child(1), .navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2), .navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3), .navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__menu-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-primary-95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: var(--z-overlay);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
}

.navbar__menu-mobile.active, .navbar__menu-mobile.open { display: flex; }

.navbar__mlink {
    padding: var(--space-md) var(--space-2xl);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    text-decoration: none;
    text-align: center;
    transition: color var(--transition-fast);
}

.navbar__mlink:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--navbar-height) + var(--space-3xl)) var(--container-padding) var(--space-5xl);
    background: var(--color-primary);
    /* Subtle geometric pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    position: relative;
}

.hero__badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-lg);
}

.hero__title em {
    font-style: italic;
    color: rgba(255,255,255,0.75);
    font-weight: var(--weight-normal);
}

.hero__desc {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: 0 auto var(--space-2xl);
    line-height: var(--leading-relaxed);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Wave bottom */
.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    line-height: 1;
    white-space: nowrap;
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn--white:hover {
    background: rgba(255,255,255,0.9);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline-white {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--color-white);
}
.btn--outline-white:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.08);
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn--primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--block { width: 100%; }

.btn--lg { padding: 14px 32px; font-size: var(--text-base); }

/* =============================================
   STATS
   ============================================= */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-3xl) var(--container-padding);
}

.stat { text-align: center; }

.stat__number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
    font-style: italic;
}

.stat__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-text-muted);
    font-weight: var(--weight-medium);
}

/* =============================================
   ABOUT - Sol metin + Sağ görsel
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    background: var(--color-white);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.about-text p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

/* Tags/Badges (about section bottom) */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-full);
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 280px;
    position: relative;
}

.about-image > div,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   YÖNETİM KURULU
   ============================================= */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
    justify-items: center;
}

/* Başkan kartı - büyük */
.member-card--featured {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
}

.member-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    width: 100%;
    max-width: 280px;
}

.member-card--featured {
    border-top: 3px solid var(--color-primary);
}

.member-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.member-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
    background: var(--color-primary-20);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-card__avatar svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary-50);
}

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

.member-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    margin-bottom: 2px;
}

.member-card__role {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

/* =============================================
   PROJELER / FAALİYETLER
   ============================================= */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.project-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition-base);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.project-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
}

.project-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.project-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-primary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    transition: gap var(--transition-fast);
}

.project-card__link:hover {
    gap: 8px;
}

/* =============================================
   MODAL (Projeler)
   ============================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-primary-95);
    z-index: var(--z-modal);
    justify-content: center;
    align-items: center;
    padding: var(--space-xl);
}

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

.modal {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    padding: var(--space-2xl);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--color-white);
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--color-white);
    font-size: var(--text-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.modal__close:hover { background: rgba(255,255,255,0.2); }

.modal__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    padding-right: var(--space-2xl);
}

.modal__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.modal__item {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.modal__item-title {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.modal__item-text {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.6);
}

/* =============================================
   HABERLER
   ============================================= */
.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    transition: all var(--transition-base);
}

.news-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-mid-gray);
}

.news-item__date {
    min-width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.news-item__day {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.news-item__month {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    font-weight: var(--weight-semibold);
    margin-top: 2px;
}

.news-item__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.news-item__content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
}

/* =============================================
   BAĞIŞ
   ============================================= */
.donate-section {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    color: var(--color-white);
    margin-top: var(--space-2xl);
}

.donate-section h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.donate-section p {
    color: rgba(255,255,255,0.65);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xl);
}

.donate-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.donate-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.donate-btn.active,
.donate-btn:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

/* =============================================
   İLETİŞİM
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    background: var(--color-white);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-info-item__icon svg { width: 18px; height: 18px; }

.contact-info-item__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: 2px;
}

.contact-info-item__value {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
}

/* ---- Form ---- */
.form-group { margin-bottom: var(--space-lg); }

.form-label {
    display: block;
    font-size: 11px;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    background: var(--color-bg);
    border: 1.5px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
    outline: none;
}

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

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

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-toast);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-base);
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer__brand-text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    line-height: var(--leading-relaxed);
}

.footer__title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    font-weight: var(--weight-semibold);
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-md);
}

.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer__link {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--color-white); }

.footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.footer__copyright {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
}

.social-links { display: flex; gap: var(--space-sm); }

.social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.social-link:hover { border-color: rgba(255,255,255,0.4); color: var(--color-white); }
.social-link svg { width: 15px; height: 15px; }

/* ---- Scroll Top ---- */
.scroll-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary-dark); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---- Gallery Showcase ---- */
.gallery-showcase {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #111;
}

/* Main Slider */
.gallery-main-slider {
    position: relative;
}
.gallery-main-slide {
    position: relative;
    aspect-ratio: 16 / 8;
    cursor: pointer;
    overflow: hidden;
}
.gallery-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-out;
}
.swiper-slide-active .gallery-main-slide img {
    transform: scale(1.05);
}
.gallery-main-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 40%, transparent 70%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 28px 32px;
    opacity: 1;
    transition: all 0.4s;
}
.gallery-main-slide__caption {
    flex: 1;
}
.gallery-main-slide__caption span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: 0.02em;
}
.gallery-main-slide__zoom {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.85);
}
.gallery-main-slide:hover .gallery-main-slide__zoom {
    opacity: 1;
    transform: scale(1);
}
.gallery-main-slide__zoom:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1) !important;
}

/* Custom Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
}
.gallery-main-slider:hover .gallery-nav {
    opacity: 1;
}
.gallery-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}
.gallery-nav--prev { left: 16px; }
.gallery-nav--next { right: 16px; }

/* Progress Bar */
.gallery-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}
.gallery-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-palm));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* Thumbnail Slider */
.gallery-thumb-slider {
    padding: 12px 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}
.gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    aspect-ratio: 4 / 3;
    opacity: 0.5;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.swiper-slide-thumb-active .gallery-thumb {
    border-color: var(--color-primary);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(42,95,67,0.3);
}
.gallery-thumb:hover {
    opacity: 0.85;
}

/* ---- Gallery Lightbox ---- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.gallery-lightbox__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}
.gallery-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.2s, transform 0.2s;
}
.gallery-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}
.gallery-lightbox__close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}
.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}
.gallery-lightbox__nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}
.gallery-lightbox__nav--prev { left: 20px; }
.gallery-lightbox__nav--next { right: 20px; }
.gallery-lightbox__caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 600px;
}
.gallery-lightbox__counter {
    position: absolute;
    top: 28px;
    left: 28px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Swiper Overrides (for press slider etc.) */
.swiper-button-next, .swiper-button-prev {
    color: var(--color-primary);
    background: var(--color-white);
    width: 44px; height: 44px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    margin-top: -30px;
    transition: all var(--transition-fast);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}
.swiper-button-next::after, .swiper-button-prev::after { 
    font-size: 16px !important; 
    font-weight: 900; 
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }
.swiper-pagination-bullet-active { background: var(--color-primary); }

/* ---- Press Mentions ---- */
.press-slider { padding-bottom: 40px; }
.press-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 16px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.press-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #D1D5DB;
}
.press-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s;
}
.press-logo-card:hover img {
    filter: grayscale(0%) opacity(1);
}
.press-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6B7280;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-align: center;
    transition: color 0.3s;
}
.press-logo-card:hover .press-logo-text { color: var(--color-primary); }
