/* ========================================
   PAGES.CSS — İç Sayfa Stilleri
   Haberler, Blog, Detay Sayfaları
   ======================================== */

/* Navbar solid (iç sayfalarda şeffaf olmasın) */
.navbar--solid {
    background: var(--color-primary) !important;
    position: relative;
}

/* PAGE HERO — küçük hero banner */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3d2a 100%);
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42,95,67,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,95,67,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    display: block;
}
.page-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.page-hero__desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.8rem;
    color: #9CA3AF;
}
.breadcrumb a { color: var(--color-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* NEWS / BLOG LISTING GRID */
.listing-section {
    padding: 40px 0 80px;
}
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* ARTICLE CARD */
.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.article-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.article-card__image--placeholder {
    height: 200px;
    background: linear-gradient(145deg, #2A5F43 0%, #4f772d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-card__image--placeholder svg { width: 40px; height: 40px; color: rgba(255,255,255,0.2); }
.article-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.75rem;
}
.article-card__category {
    background: #F0FDF4;
    color: #166534;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}
.article-card__category--taziye { background: #374151; color: #fff; }
.article-card__category--dugun { background: #FDE68A; color: #78350F; }
.article-card__category--duyuru { background: #DBEAFE; color: #1E40AF; }
.article-card__date { color: #9CA3AF; display: flex; align-items: center; gap: 4px; }
.article-card__date svg { width: 13px; height: 13px; }
.article-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}
.article-card__title a { color: inherit; text-decoration: none; }
.article-card__title a:hover { color: var(--color-primary); }
.article-card__excerpt {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
}
.article-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 14px;
}
.article-card__readmore svg { width: 16px; height: 16px; }
.article-card__readmore:hover { gap: 8px; }

/* CATEGORY FILTER */
.category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.category-filter__btn {
    padding: 7px 18px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #D1D5DB;
    color: #6B7280;
    background: #fff;
    transition: all 0.15s;
}
.category-filter__btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.category-filter__btn--active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* DETAIL PAGE */
.detail-section {
    padding: 0 0 80px;
}
.detail-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}
.detail-header {
    padding: 40px 0 20px;
}
.detail-header__category {
    display: inline-block;
    background: #F0FDF4;
    color: #166534;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.detail-header__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 14px;
}
.detail-header__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #6B7280;
}
.detail-header__meta svg { width: 15px; height: 15px; }
.detail-header__meta-item { display: flex; align-items: center; gap: 5px; }

.detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin: 24px 0;
}

.detail-content {
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
}
.detail-content p { margin-bottom: 1.2em; }
.detail-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 1.5em 0 0.6em;
}

/* SHARE BUTTONS */
.share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}
.share-bar__label { font-size: 0.85rem; color: #6B7280; font-weight: 500; }
.share-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform 0.15s;
}
.share-btn:hover { transform: scale(1.1); }
.share-btn svg { width: 18px; height: 18px; }
.share-btn--whatsapp { background: #25D366; color: white; }
.share-btn--twitter { background: #1DA1F2; color: white; }
.share-btn--facebook { background: #1877F2; color: white; }

/* RELATED / BACK */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 30px;
}
.back-link svg { width: 18px; height: 18px; }
.back-link:hover { gap: 10px; }

/* EMPTY STATE */
.listing-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9CA3AF;
}
.listing-empty svg { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.3; }
.listing-empty p { font-size: 1rem; }

/* NEWS GALLERY (detail page) */
.news-gallery {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}
.news-gallery__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-gallery__title svg { width: 20px; height: 20px; color: var(--color-primary); }
.news-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.news-gallery__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
}
.news-gallery__item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.news-gallery__item:hover img { transform: scale(1.05); }
.news-gallery__item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.75rem;
}
.news-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(42,95,67,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.news-gallery__overlay svg { width: 28px; height: 28px; color: #fff; }
.news-gallery__item:hover .news-gallery__overlay { opacity: 1; }

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.1); }
.lightbox__img {
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 8px;
    object-fit: contain;
}
.lightbox__caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 12px;
    text-align: center;
}

/* PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.project-card-full {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.project-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.project-card-full__visual {
    position: relative;
    height: 220px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-card-full__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-card-full__icon-fallback {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.project-card-full__icon-fallback svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
}
.project-card-full__status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.status--devam { background: linear-gradient(135deg, #10B981, #059669); }
.status--tamamlandi { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.status--planlandi { background: linear-gradient(135deg, #F59E0B, #D97706); }

.project-card-full__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.project-card-full__body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.project-card-full__body h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.project-card-full__body h2 a:hover {
    color: var(--color-primary);
}
.project-card-full__body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 24px;
    flex-grow: 1;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s;
}
.btn-read-more:hover { gap: 12px; }
.btn-read-more svg { width: 18px; height: 18px; }

/* Single Article Layout (used in proje.php) */
.single-article { padding: 40px 0 80px; }
.single-article__header { margin-bottom: 30px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #6B7280; text-decoration: none; margin-bottom: 24px; font-weight: 600; }
.back-link:hover { color: var(--color-primary); }
.back-link svg { width: 16px; height: 16px; }
.single-article__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.status-badge { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #fff; }
.status-badge--devam { background: #059669; }
.status-badge--tamamlandi { background: #1D4ED8; }
.status-badge--planlandi { background: #D97706; }
.single-article__meta .date { font-size: 0.85rem; color: #6B7280; display: inline-flex; align-items: center; gap: 6px; }
.single-article__meta .date svg { width: 15px; height: 15px; }
.single-article__title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: #111827; line-height: 1.3; }
.single-article__hero-img { margin-bottom: 30px; border-radius: 12px; overflow: hidden; }
.single-article__hero-img img { width: 100%; height: auto; display: block; max-height: 400px; object-fit: cover; }
.single-article__content .lead-text { font-size: 1.1rem; font-weight: 500; color: #1F2937; line-height: 1.7; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #E5E7EB; }
.single-article__share { display: flex; align-items: center; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 1px solid #E5E7EB; }
.single-article__share span { font-size: 0.9rem; font-weight: 600; color: #374151; display: inline-flex; align-items: center; gap: 6px; margin-right: 8px; }
.single-article__share span svg { width: 18px; height: 18px; }

/* GALLERY PAGE */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}
.gallery-toolbar__info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4B5563;
}
.gallery-toolbar__info svg { color: var(--color-primary); flex-shrink: 0; }
.gallery-toolbar__page {
    font-size: 0.8rem;
    color: #9CA3AF;
    font-weight: 600;
}

.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: #9CA3AF;
}
.gallery-empty svg { margin-bottom: 20px; opacity: 0.25; }
.gallery-empty h3 { font-size: 1.2rem; color: #374151; margin-bottom: 8px; }
.gallery-empty p { font-size: 0.9rem; }

.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.gallery-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.gallery-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-card:hover .gallery-card__img-wrap img {
    transform: scale(1.08);
}

.gallery-card__hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(42,95,67,0.7) 0%, rgba(42,95,67,0.15) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}
.gallery-card:hover .gallery-card__hover { opacity: 1; }
.gallery-card__hover svg {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 10px;
    width: 48px;
    height: 48px;
    box-sizing: content-box;
    transition: transform 0.3s;
}
.gallery-card:hover .gallery-card__hover svg { transform: scale(1.1); }

.gallery-card__caption {
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1F2937;
    border-top: 1px solid #F3F4F6;
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-primary);
    background: #fff;
    border: 1.5px solid var(--color-primary);
    transition: all 0.2s;
}
.pagination__btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42,95,67,0.2);
}
.pagination__numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pagination__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #4B5563;
    background: #fff;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}
.pagination__num:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #F0FDF4;
}
.pagination__num--active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(42,95,67,0.25);
}
.pagination__num--active:hover {
    background: var(--color-primary);
    color: #fff;
}
.pagination__dots {
    padding: 0 6px;
    color: #9CA3AF;
    font-weight: 600;
    user-select: none;
}

/* EVENTS GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.event-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.event-card__date-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    z-index: 10;
}
.event-card__date-badge .month { display: block; font-size: 0.75rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; }
.event-card__date-badge .day { display: block; font-size: 1.4rem; font-weight: 800; color: #111827; line-height: 1.1; }
.event-card__visual {
    position: relative;
    height: 200px;
    background: #F3F4F6;
}
.event-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.event-card__fallback { display: flex; align-items: center; justify-content: center; height: 100%; color: #d1d5db; }
.event-card__fallback svg { width: 48px; height: 48px; }

.event-badge { position: absolute; right: 16px; top: 16px; padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.event-badge--upcoming { background: linear-gradient(135deg, #10B981, #059669); }
.event-badge--past { background: linear-gradient(135deg, #6B7280, #4B5563); }

.event-card__body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.event-card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; line-height: 1.4; }
.event-card__title a { color: #111827; text-decoration: none; transition: color 0.2s; }
.event-card__title a:hover { color: var(--color-primary); }
.event-card__info { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: #4B5563; margin-bottom: 24px; flex-grow: 1; }
.event-card__info span { display: inline-flex; align-items: center; gap: 6px; }
.event-card__info svg { width: 16px; height: 16px; color: var(--color-primary); }
.status-badge--yaklasan { background: #059669; }
.status-badge--gecti { background: #4B5563; }

/* MEMBERSHIP FORM */
.membership-form { margin-top: 16px; }
.form-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 28px 28px 20px;
    margin-bottom: 24px;
}
.form-section--agreement { background: #FEFCE8; border-color: #FDE68A; }
.form-section__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F3F4F6;
}
.form-section__title svg { width: 20px; height: 20px; color: var(--color-primary); }
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mf-group { display: flex; flex-direction: column; gap: 6px; }
.mf-group--full { grid-column: 1 / -1; }
.mf-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.req { color: #EF4444; }
.mf-group input, .mf-group select, .mf-group textarea {
    padding: 10px 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #111827;
}
.mf-group input:focus, .mf-group select:focus, .mf-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42,95,67,0.1);
}
.agreement-box {
    border: 1px solid #FDE68A;
    border-radius: 12px;
    background: #fff;
    padding: 20px;
    margin-bottom: 16px;
}
.agreement-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; color: #92400E; }
.agreement-content {
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #4B5563;
    padding-right: 10px;
}
.agreement-content::-webkit-scrollbar { width: 5px; }
.agreement-content::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 10px; }
.agreement-content p { margin-bottom: 10px; }
.agreement-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    transition: opacity 0.3s;
}
.agreement-check input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--color-primary); }
.form-submit-area {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 32px;
}
.btn-membership-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2A5F43, #3d8b63);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(42,95,67,0.25);
}
.btn-membership-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,95,67,0.35); }
.btn-membership-submit svg { width: 20px; height: 20px; }
.form-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-note svg { width: 16px; height: 16px; color: var(--color-primary); }
.form-error-box {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-error-box svg { width: 20px; height: 20px; flex-shrink: 0; }
.membership-success {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    margin-bottom: 40px;
}
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-icon svg { width: 40px; height: 40px; color: #fff; }
.membership-success h2 { font-size: 1.5rem; color: #065F46; margin-bottom: 12px; }
.membership-success p { color: #4B5563; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-hero { padding: 80px 20px 40px; }
    .page-hero__title { font-size: 1.6rem; }
    .listing-grid { grid-template-columns: 1fr; }
    .detail-header__title { font-size: 1.5rem; }
    .detail-header__meta { flex-wrap: wrap; gap: 8px; }
    .news-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox__img { max-width: 95vw; max-height: 75vh; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-section { padding: 20px 16px 16px; }
    .events-grid { grid-template-columns: 1fr; }
    .gallery-grid-page { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
    .gallery-toolbar { flex-direction: column; gap: 8px; text-align: center; }
    .pagination { gap: 6px; }
    .pagination__btn { padding: 8px 14px; font-size: 0.8rem; }
    .pagination__num { width: 36px; height: 36px; font-size: 0.8rem; }
}

/* Social Share Circular Buttons */
.social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}
.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.social-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #fff;
}
.social-circle svg,
.social-circle i {
    width: 20px;
    height: 20px;
}
.social-fb { background: #1877F2; }
.social-x { background: #000; }
.social-wa { background: #25D366; }
.social-in { background: #0077b5; }
.social-pin { background: #E60023; }
.social-mail { background: #EA4335; }
