/* ============================================================
   See All Page — Dedicated Styles
   ============================================================ */

/* Sticky Header */
.see-all-header {
    background: linear-gradient(135deg, #FF9800, #FF6D00);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(255, 109, 0, 0.25);
}

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.back-btn:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.35);
}

.see-all-page-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-spacer {
    width: 38px;
}

/* Filter Chips */
.filter-chips-wrapper {
    background: white;
    padding: 12px 0;
    position: sticky;
    top: 66px;
    z-index: 99;
    border-bottom: 1px solid #f0f0f0;
}

.filter-chips-scroll {
    display: flex;
    overflow-x: auto;
    padding: 0 16px;
    gap: 8px;
}

.filter-chip {
    border: 1.5px solid #e0e0e0;
    background: white;
    color: var(--text-muted);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.filter-chip:active {
    transform: scale(0.95);
}

.filter-chip.active {
    background: linear-gradient(135deg, #FF9800, #FF6D00);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 109, 0, 0.3);
}

/* Search Bar Wrapper */
.search-bar-wrapper {
    background: white;
    padding: 12px 16px;
    position: sticky;
    top: 66px;
    z-index: 99;
    border-bottom: 1px solid #f0f0f0;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 8px 14px;
    gap: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.search-input-container:focus-within {
    border-color: #FF9800;
    background: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}

.search-icon {
    color: var(--text-muted);
    font-size: 22px;
}

#temple-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
}

#temple-search-input::placeholder {
    color: #9e9e9e;
}

.clear-search-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
}

.clear-search-btn:hover {
    background: #e0e0e0;
}

/* Main Content Area */
.see-all-content {
    padding: 16px 20px;
    padding-bottom: 40px;
    min-height: calc(100vh - 66px);
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 16px;
    animation: fadeInUp 0.5s ease;
}

/* Darshan grid: 2 columns mobile, more on desktop */
.content-grid.darshan-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
    .content-grid.darshan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .content-grid.darshan-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .content-grid.darshan-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* News grid: 1 column mobile, 2 on desktop */
.content-grid.news-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .content-grid.news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Temples grid: 1 column mobile, 2 or 3 on desktop */
.content-grid.temples-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .content-grid.temples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .content-grid.temples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading Skeleton Grid */
.loading-grid {
    display: grid;
    gap: 16px;
}

.loading-grid.darshan-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
    .loading-grid.darshan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .loading-grid.darshan-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .loading-grid.darshan-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.loading-grid.news-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .loading-grid.news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.loading-grid.temples-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .loading-grid.temples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .loading-grid.temples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.skeleton-card-lg {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skeleton-img-lg {
    height: 140px;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

/* Temple Skeleton */
.skeleton-temple-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.skeleton-img-temple {
    height: 180px;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

.skeleton-temple-body {
    padding: 12px 16px 14px;
}

/* News Skeleton */
.skeleton-news-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
}

.skeleton-img-news-full {
    width: 120px;
    min-height: 110px;
    border-radius: 0;
    margin-bottom: 0;
}

.skeleton-news-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skeleton-text-sm {
    height: 12px;
}

/* ============================================================
   Darshan Grid Card
   ============================================================ */
.darshan-grid-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.darshan-grid-card:active {
    transform: scale(0.97);
}

.darshan-grid-card .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.darshan-grid-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.darshan-grid-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.darshan-grid-card .video-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.darshan-grid-card .video-indicator span {
    font-size: 18px;
}

.darshan-grid-card .card-date-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.darshan-grid-card .card-body {
    padding: 10px 12px 12px;
}

.darshan-grid-card .card-body h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.darshan-grid-card .card-body .card-location {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--text-muted);
}

.darshan-grid-card .card-body .card-location span {
    font-size: 13px;
    color: var(--primary);
}

.darshan-grid-card .card-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.darshan-grid-card .card-stats .stat {
    display: flex;
    align-items: center;
    gap: 3px;
}

.darshan-grid-card .card-stats .stat span {
    font-size: 14px;
}

.darshan-grid-card .card-stats .stat.likes span {
    color: #e91e63;
}

.darshan-grid-card .card-stats .stat.comments span {
    color: #2196f3;
}

/* ============================================================
   News Full Card (Vertical List)
   ============================================================ */
.news-full-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.news-full-card:active {
    transform: scale(0.98);
}

.news-full-card .news-full-img {
    width: 120px;
    min-height: 110px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-full-card .news-full-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.news-full-card .news-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FFF3E0;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.news-full-card .news-full-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.news-full-card .news-full-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.news-full-card .news-full-meta span {
    font-size: 14px;
}

/* ============================================================
   Temple Card (Explore Temples)
   ============================================================ */
.temple-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.temple-card:active {
    transform: scale(0.98);
}

.temple-card .temple-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.temple-card .temple-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.temple-card:hover .temple-img-wrapper img {
    transform: scale(1.05);
}

.temple-card .temple-img-wrapper .temple-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.temple-card .temple-img-wrapper .temple-name-overlay {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    color: white;
}

.temple-card .temple-img-wrapper .temple-name-overlay h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.temple-card .temple-img-wrapper .temple-name-overlay p {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 3px;
}

.temple-card .temple-img-wrapper .temple-name-overlay p span {
    font-size: 14px;
}

.temple-card .temple-body {
    padding: 12px 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.temple-card .temple-body .temple-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.temple-card .temple-body .temple-info-row span {
    font-size: 18px;
    color: var(--primary);
}

.temple-card .temple-body .visit-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #FF9800, #FF6D00);
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 109, 0, 0.3);
}

.temple-card .temple-body .visit-btn:active {
    transform: scale(0.95);
}

.temple-card .temple-body .visit-btn span {
    font-size: 16px;
}

/* Temple body — updated layout for detail section + navigate */
.temple-card .temple-body {
    padding: 12px 16px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.temple-card .temple-detail-section {
    flex: 1;
    min-width: 0;
}

/* About text in temple card */
.temple-card .temple-about {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 6px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.temple-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}

.temple-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: #E65100;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* Shuffle / Refresh Button */
.temple-refresh-wrapper {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 0 8px;
}

.temple-refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF9800, #FF6D00);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 109, 0, 0.35);
}

.temple-refresh-btn:hover {
    box-shadow: 0 6px 24px rgba(255, 109, 0, 0.45);
    transform: translateY(-2px);
}

.temple-refresh-btn:active {
    transform: scale(0.96);
}

.temple-refresh-btn span {
    font-size: 20px;
}

.temple-count-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   Empty State
   ============================================================ */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for grid items */
.content-grid>* {
    animation: fadeInUp 0.45s ease both;
}

.content-grid>*:nth-child(1) {
    animation-delay: 0.05s;
}

.content-grid>*:nth-child(2) {
    animation-delay: 0.1s;
}

.content-grid>*:nth-child(3) {
    animation-delay: 0.15s;
}

.content-grid>*:nth-child(4) {
    animation-delay: 0.2s;
}

.content-grid>*:nth-child(5) {
    animation-delay: 0.25s;
}

.content-grid>*:nth-child(6) {
    animation-delay: 0.3s;
}

.content-grid>*:nth-child(7) {
    animation-delay: 0.35s;
}

.content-grid>*:nth-child(8) {
    animation-delay: 0.4s;
}

.content-grid>*:nth-child(9) {
    animation-delay: 0.45s;
}

.content-grid>*:nth-child(10) {
    animation-delay: 0.5s;
}

.content-grid>*:nth-child(n+11) {
    animation-delay: 0.55s;
}

/* ============================================================
   Temple Detail Dialog
   ============================================================ */
.temple-detail-dialog {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.temple-dialog-content-inner {
    padding: 0;
    /* Override padding, we'll pad the inner sections */
    overflow-y: auto;
    flex: 1;
}

.temple-dialog-hero {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.temple-dialog-body {
    padding: 20px;
}

.temple-dialog-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.temple-dialog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.temple-dialog-meta>div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.temple-dialog-meta .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.temple-section {
    margin-bottom: 24px;
}

.temple-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.temple-section h4 .material-symbols-outlined {
    color: var(--primary);
    font-size: 20px;
}

.temple-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Timings */
.temple-timing-list {
    display: grid;
    gap: 10px;
}

.temple-timing-item {
    background: #f9f9f9;
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.temple-timing-info {
    display: flex;
    flex-direction: column;
}

.temple-timing-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.temple-timing-special {
    font-size: 11px;
    color: var(--text-muted);
}

.temple-timing-hours {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Festivals / Things to Do */
.temple-pill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.temple-pill-item {
    background: #FFF8E1;
    border: 1px solid #FFE0B2;
    padding: 12px;
    border-radius: 12px;
}

.temple-pill-title {
    font-size: 14px;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 4px;
}

.temple-pill-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.temple-dialog-loader {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.temple-dialog-loader .material-symbols-outlined {
    font-size: 32px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================================
   New Premium Temple Detail Styles
   ============================================================ */

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8f8f8;
    padding: 12px 8px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.amenity-item:active {
    transform: scale(0.95);
}

.amenity-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.amenity-icon span {
    font-size: 20px;
    color: var(--primary);
}

.amenity-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Accommodation Cards */
.accommodation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accommodation-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 14px;
}

.acc-icon {
    width: 44px;
    height: 44px;
    background: #E3F2FD;
    color: #1976D2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acc-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.acc-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Horizontal Scroll for Attractions */
.attractions-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 0 12px;
    scroll-snap-type: x mandatory;
}

.attraction-card {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 14px;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.attr-type {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.attr-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.attr-details {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dress Code Box */
.dress-code-box {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-left: 4px solid #FF9800;
    padding: 14px;
    border-radius: 8px;
    margin-top: 10px;
}

.dress-code-item {
    margin-bottom: 12px;
}

.dress-code-item:last-child {
    margin-bottom: 0;
}

.dress-cat {
    font-size: 13px;
    font-weight: 700;
    color: #E65100;
    display: block;
    margin-bottom: 4px;
}

.dress-req {
    font-size: 13px;
    color: #5D4037;
    line-height: 1.4;
}

/* Scripture Mention */
.scripture-item {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
}

.scripture-item::before {
    content: 'format_quote';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    color: #eee;
    pointer-events: none;
}

.scripture-title {
    font-weight: 700;
    color: #8B4513;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.scripture-text {
    font-size: 13px;
    color: #5D4037;
    line-height: 1.5;
    font-style: italic;
}

/* Getting There */
.getting-there-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.transport-card {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 12px;
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.transport-header span {
    font-size: 18px;
}

.transport-header h5 {
    font-size: 13px;
    font-weight: 700;
}

.transport-details {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Non-permissible items */
.prohibited-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prohibited-item {
    background: #FFEBEE;
    color: #C62828;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.prohibited-item span {
    font-size: 14px;
}

/* Architecture Features */
.arch-feature-list {
    list-style: none;
    padding: 0;
}

.arch-feature-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.arch-feature-item::before {
    content: 'check_circle';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #4CAF50;
}

.info-banner {
    background: #E8F5E9;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.info-banner span {
    color: #2E7D32;
    font-size: 20px;
}

.info-banner p {
    font-size: 12px;
    color: #1B5E20;
    margin: 0;
    line-height: 1.4;
}

/* Festivals Premium Cards */
.festival-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.festival-item-card {
    background: #FFFDE7;
    border: 1px solid #FFF59D;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fest-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fest-name {
    font-size: 15px;
    font-weight: 700;
    color: #F57F17;
}

.fest-time {
    font-size: 11px;
    font-weight: 600;
    background: #FBC02D;
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
}

.fest-desc {
    font-size: 13px;
    color: #5D4037;
    line-height: 1.4;
}

/* Contacts */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card {
    background: #E8F5E9;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #C8E6C9;
}

.contact-name {
    font-size: 14px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 2px;
    display: block;
}

.contact-role {
    font-size: 11px;
    color: #4CAF50;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #388E3C;
    text-decoration: none;
    font-weight: 500;
}

.contact-link-item span {
    font-size: 18px;
}

/* Social Presence */
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-btn:active {
    transform: scale(0.9);
}

.social-btn.fb { 
    background-image: url('assets/facebook_icon.png'); 
    background-size: cover;
    background-position: center;
}
.social-btn.ig { 
    background-image: url('assets/instagram_icon.png'); 
    background-size: cover;
    background-position: center;
}
.social-btn.yt { background: #FF0000; }
.social-btn.tw { background: #1DA1F2; }
.social-btn.web { background: #424242; }

/* Reviews */
.review-carousel-wrapper {
    position: relative;
    margin: 0 -4px;
}

.review-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 4px 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.review-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.review-nav.prev { left: -8px; }
.review-nav.next { right: -8px; }

.review-nav span {
    font-size: 20px;
}

.review-item-card {
    min-width: 260px;
    max-width: 260px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.review-user {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.review-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

.rating-badge {
    background: #4CAF50;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-badge span {
    font-size: 14px;
}

.meta-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

.meta-id {
    font-size: 10px;
    color: #bbb;
    letter-spacing: 0.5px;
}

.meta-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}