@font-face {
    font-family: 'Inter';
    src: url('../font/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark-brown: #3a2c1e;
    --light-brown: #4a3c2a;
    --dark-green: #214d26;
    --lake-blue: #2b6c8f;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --accent-gold: #c99c33;
    --cta-orange: #f39c12;
    --gold-accent: #c9a449;
}

::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: #52473a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #271d14;
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a449;
}

::-webkit-scrollbar-corner {
    background: #5a4c3b;
}

* {
    scrollbar-width: 20px;
    scrollbar-color: #775f48 #3a2c1e;
}

body {
    -ms-overflow-style: none;
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.nav-menu a,
.register-btn,
.icon-btn,
.facility-btn,
.view-all-btn,
.social-icon,
.puzzle-piece,
.gallery-item,
.facility-item,
.select-selected,
.select-item,
.nav-left a,
.meteor-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Top Bar Start */
.top-bar {
    background: var(--dark-brown);
    padding: 0.55rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    text-align: center;
    background: #ff6b6b;
    color: white;
    border: none;
    gap: 8px;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s, ease-in-out 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.register-btn.approved {
    background: #26551a;
}

.register-btn.pending {
    background: #f39c12;
}

.register-btn.default {
    background: #ff6b6b;
}

.top-bar .top-bar-container a {
    text-decoration: none;
}

.register-btn:hover {
    filter: brightness(1.15);
}

/* Top Bar End */

/* Custom Select Start */
.custom-select {
    position: relative;
    width: 140px;
    user-select: none;
}

.select-selected {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 2px 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.select-selected:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.select-selected.active {
    border-radius: 25px 25px 0 0;
    border-bottom-color: transparent;
}

.selected-flag {
    font-size: 1.2rem;
}

.selected-text {
    flex: 1;
    font-size: 0.9rem;
}

.select-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.select-selected.active .select-arrow {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-brown);
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 10;
}

.select-items.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-item {
    padding: 0.6rem 1rem;
    color: white;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.select-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.select-item:before {
    content: attr(data-flag);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Custom Select End */

/* Navigation Start */
.navbar {
    background: white;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: 60px;
    position: relative;
}

.meteor-container {
    position: relative;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
}

.meteor-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -20px;
    left: -40px;
    background: white;
    z-index: 1;
    border-radius: 0 0 50% 50%;
}

.logo-wrapper {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 70px;
    height: 70px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.logo {
    margin-top: 50px;
    width: 125px;
    height: 125px;
    object-fit: contain;
}

.site-title {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-left: 1rem;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.nav-left .site-title span {
    text-transform: uppercase;
}

.nav-left .site-title span:last-child {
    font-size: 0.99rem;
}

.nav-left .site-title span:first-child {
    font-size: 1.3rem;
    text-transform: uppercase;
}

.site-title span:last-child {
    font-size: 1rem;
    color: #9e8034;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger-menu.active {
    z-index: 1101;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--dark-brown);
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 900;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--dark-green);
}

/* Navigation End */

/* Stars Background Start */
.hero-section,
.facilities-section,
.articles-section,
.social-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.facilities-section::before,
.articles-section::before,
.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(7px 7px at 5% 15%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(6px 6px at 12% 45%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(8px 8px at 18% 75%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(5px 5px at 25% 90%, rgba(201, 164, 73, 0.9) 3px, transparent 4px),
        radial-gradient(9px 9px at 35% 25%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 42% 55%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(7px 7px at 48% 85%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(8px 8px at 55% 35%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 62% 65%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(9px 9px at 68% 95%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(5px 5px at 75% 10%, rgba(201, 164, 73, 0.9) 3px, transparent 4px),
        radial-gradient(7px 7px at 82% 40%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(8px 8px at 88% 70%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 95% 20%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),

        radial-gradient(5px 5px at 8% 30%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 22% 60%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 38% 80%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(7px 7px at 45% 20%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 58% 50%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 72% 75%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 85% 55%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 92% 85%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),

        radial-gradient(4px 4px at 15% 25%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 28% 48%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 33% 72%, rgba(33, 77, 38, 0.5) 3px, transparent 4px),
        radial-gradient(4px 4px at 48% 38%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 52% 62%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 63% 88%, rgba(33, 77, 38, 0.5) 3px, transparent 4px),
        radial-gradient(4px 4px at 77% 42%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 83% 68%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 97% 12%, rgba(33, 77, 38, 0.5) 3px, transparent 4px);

    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after,
.facilities-section::after,
.articles-section::after,
.social-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 10% 35%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(4px 4px at 20% 55%, rgba(255, 215, 0, 0.7) 2px, transparent 3px),
        radial-gradient(3px 3px at 30% 12%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(5px 5px at 40% 82%, rgba(255, 215, 0, 0.7) 3px, transparent 4px),
        radial-gradient(3px 3px at 50% 45%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(4px 4px at 60% 28%, rgba(255, 215, 0, 0.7) 2px, transparent 3px),
        radial-gradient(3px 3px at 70% 92%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(5px 5px at 80% 15%, rgba(255, 215, 0, 0.7) 3px, transparent 4px),
        radial-gradient(3px 3px at 90% 65%, rgba(255, 215, 0, 0.8) 2px, transparent 2px);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.facilities-section::before {
    filter: brightness(1.1);
}

.articles-section::before {
    filter: brightness(1.2);
    background-image:
        radial-gradient(8px 8px at 15% 25%, rgba(33, 77, 38, 0.7) 4px, transparent 5px),
        radial-gradient(7px 7px at 35% 55%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(6px 6px at 55% 75%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(9px 9px at 75% 35%, rgba(33, 77, 38, 0.6) 4px, transparent 5px),
        radial-gradient(7px 7px at 90% 15%, rgba(201, 164, 73, 0.8) 3px, transparent 4px);
}

.social-section::before {
    filter: brightness(1.3);
}

.hero-section>*,
.facilities-section>*,
.articles-section>*,
.social-section>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section::before,
    .facilities-section::before,
    .articles-section::before,
    .social-section::before {
        opacity: 0.8;
    }
}

/* Stars Background End */

/* Heading Section Start */
.heading-section {
    margin-top: 115px;
    position: relative;
    height: 70vh;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 140, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.active::before {
    opacity: 0.5;
    animation: burnEffect 3s infinite alternate;
}

@keyframes burnEffect {
    0% {
        opacity: 0.3;
        background: radial-gradient(circle at 30% 40%, transparent 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 140, 0, 0.1) 100%);
    }

    50% {
        opacity: 0.5;
        background: radial-gradient(circle at 70% 60%, transparent 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 100, 0, 0.15) 100%);
    }

    100% {
        opacity: 0.3;
        background: radial-gradient(circle at 40% 70%, transparent 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 120, 0, 0.1) 100%);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.heading-right-content {
    position: absolute;
    right: 10%;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 0;
    z-index: 2;
}

.unesco-logo {
    transition: opacity 0.3s;
    margin-top: 150%;
}

.unesco-logo.hidden {
    opacity: 0;
    pointer-events: none;
}

.unesco-logo img {
    height: 70px;
    width: auto;
    filter: none;
    background: white;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.unesco-logo .logo-pt-gravica {
    display: block;
    height: 70px;
    width: auto;
    background: white;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.unesco-logo .logo-container {
    display: flex;
    gap: 10px;
}

.heading-buttons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-accent);
    border: 4px solid var(--dark-brown);
    backdrop-filter: blur(50px);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.icon-btn:hover {
    transform: translateY(-5px);
    background: var(--accent-gold);
}

.icon-btn img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Heading Section End */

/* Hero Section Start */
.hero-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-title-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.hero-title-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 164, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(33, 77, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3a2c1e 0%, #c9a449 50%, #214d26 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #4a3c2a;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    padding-left: 1rem;
    border-left: 4px solid #c9a449;
}

.story-container {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-radius: 30px;
    padding: 2rem;
    border: 2px solid rgba(201, 164, 73, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.story-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(45deg,
            rgba(201, 165, 73, 0.062) 0px,
            rgba(201, 165, 73, 0.096) 2px,
            transparent 2px,
            transparent 10px);
    pointer-events: none;
}

.story-container::after {
    content: '⦿';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(201, 164, 73, 0.1);
    font-family: serif;
    transform: rotate(15deg);
}

.story-part {
    margin-bottom: 1.3rem;
    padding-bottom: 1.3rem;
    border-bottom: 2px dashed rgba(201, 164, 73, 0.3);
    position: relative;
}

.story-part:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.story-part p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2c3e50;
    text-align: justify;
}

.story-part:first-child p::first-letter {
    font-size: 3.5rem;
    font-weight: 800;
    color: #c9a449;
    float: left;
    line-height: 1;
    margin-right: 10px;
    font-family: serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.keyword-badge-gold {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--dark-brown);
    padding: 0 8px;
    border-radius: 40px;
    font-weight: 700;
    border: 2px solid var(--dark-brown);
    box-shadow: 0 4px 10px rgba(201, 164, 73, 0.4);
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.keyword-badge-gold:hover {
    box-shadow: 0 6px 14px rgba(201, 164, 73, 0.5);
}

.quote-box {
    background: linear-gradient(135deg, #f8f4e9, #ffffff);
    border-left: 6px solid #c9a449;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quote-box i {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    color: rgba(201, 164, 73, 0.2);
    transform: rotate(180deg);
}

.quote-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: #3a2c1e;
    margin-left: 1rem;
    position: relative;
    z-index: 1;
}

.hero-image-desktop {
    position: sticky;
    top: 150px;
    transform: rotate(1deg);
    transition: all 0.5s ease;
}

.hero-image-desktop:hover {
    transform: rotate(1deg) scale(1.02);
}

.hero-image-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-desktop:hover img {
    transform: scale(1.05) translateX(-3px) translateY(-3px);
}

.hero-image-desktop .hero-image-caption {
    display: none;
}

.hero-image-mobile {
    display: none;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .story-container {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .story-part p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        position: relative;
        margin: 1.5rem 0;
        width: 100%;
        transform: rotate(1deg);
        transition: all 0.5s ease;
    }

    .hero-image-mobile:hover {
        transform: rotate(1deg) scale(1.02);
    }

    .hero-image-mobile img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 20px;
        transition: transform 0.5s ease;
    }

    .hero-image-mobile:hover img {
        transform: scale(1.02);
    }

    .hero-image-mobile .hero-image-caption {
        display: block;
        text-align: center;
        margin-top: 0.75rem;
        font-size: 0.85rem;
        color: #c9a449;
        font-style: italic;
        font-weight: 500;
    }

    .story-part:first-child {
        order: 1;
    }

    .story-part:nth-child(2) {
        order: 2;
    }

    .hero-image-mobile {
        order: 3;
    }

    .story-part:last-child {
        order: 4;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .story-part p {
        font-size: 0.9rem;
    }

    .quote-box {
        padding: 1rem;
    }

    .quote-box p {
        font-size: 0.95rem;
    }

    .hero-image-mobile {
        margin: 1rem 0;
    }
}

/* Hero Section End */

/* Owner Section with CSS Texture Start */
.owner-section {
    position: relative;
    background: var(--light-brown);
    padding: 5rem 2rem;
    color: white;
    overflow: hidden;
    width: 100%;
}

.owner-texture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.116) 0%, transparent 30%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 60%, rgba(15, 10, 10, 0.13) 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0px, rgba(15, 10, 10, 0.08) 3px, transparent 3px, transparent 8px),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 4px, transparent 4px, transparent 10px);
    pointer-events: none;
    z-index: 0;
}

.owner-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    width: 100%;
}

.owner-image img {
    width: 100%;
    border-right: 6px solid rgba(0, 0, 0, 0.25);
    border-bottom: 6px solid rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.owner-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #ffd966, #c9a449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #c9a449;
    padding-left: 1.5rem;
}

.owner-story {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .owner-content h2 {
        font-size: 2rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .owner-content h2 {
        font-size: 1.8rem;
    }
}

/* Owner Section with CSS Texture End */

/* Facilities Section Start */
.facilities-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Slide Right to Left, Presentation Like */
/* .facilities-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.facilities-image.fade-out {
    animation: slideOutToLeft 0.3s ease-in-out forwards;
}

.facilities-image.fade-in {
    animation: slideInFromRight 0.3s ease-in-out forwards;
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.facilities-image:hover img {
    transform: scale(1.02);
} */

/* Zoom In/Out Smooth */
/* .facilities-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.facilities-image.fade-out {
    animation: zoomOut 0.6s ease-in-out forwards;
}

.facilities-image.fade-in {
    animation: zoomIn 0.6s ease-in-out forwards;
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.7);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.facilities-image:hover img {
    transform: scale(1.02);
} */

/* Slide and Fade Effect */
.facilities-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.facilities-image.fade-out {
    animation: slideFadeOut 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.facilities-image.fade-in {
    animation: slideFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideFadeOut {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    30% {
        opacity: 0.8;
        transform: translateX(-5%) scale(0.95);
    }

    100% {
        opacity: 0;
        transform: translateX(-20%) scale(0.9);
    }
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(20%) scale(0.9);
    }

    70% {
        opacity: 0.9;
        transform: translateX(-2%) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.facilities-image:hover img {
    transform: scale(1.02);
}

.facilities-content h2 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
    text-align: left;
}

.facilities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-item {
    margin: 0;
    padding: 0;
    border: none;
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateX(10px);
}

.facility-btn {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #ece8e8;
    border-radius: 12px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    user-select: none;
    height: 100px;
}

@media (max-width: 768px) {
    .facilities-image {
        height: 300px;
    }

    .facilities-list {
        gap: 0.45rem;
    }

    .facility-item:hover {
        transform: none;
    }

    .facility-btn {
        border: 2px solid var(--dark-brown);
        font-size: 0.92rem;
        padding: 0.5rem 0.75rem;
        box-shadow: none;
        line-height: 1.25rem;
    }
}

.facility-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.facility-item:hover .facility-btn::before {
    left: 100%;
}

.facility-item.active .facility-btn {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--light-brown) 100%);
    color: white;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 8px 15px rgba(58, 44, 30, 0.3);
}

.facility-item.active .facility-btn strong {
    color: var(--gold-accent);
}

.facility-item:not(.active):hover .facility-btn {
    border: 2px solid var(--dark-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f0 100%);
    box-shadow: 0 8px 15px rgba(45, 90, 59, 0.15);
}

.facility-btn strong {
    color: var(--dark-green);
    transition: color 0.3s ease;
}

.facility-item.active .facility-btn strong {
    color: var(--gold-accent);
}

.facilities-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--gold-accent) 50%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.facilities-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--dark-green));
    border-radius: 3px;
}

@media (max-width: 768px) {
    .facilities-content h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .facilities-content h2 {
        font-size: 1.55rem;
        text-align: center;
    }
}

/* Facilities Section End */

/* Map Section Start */
.map-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.map-interactive-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.map-puzzle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: 1;
    perspective: 1000px;
}

.puzzle-piece {
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform-origin: center;
}

.piece-1 {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #8b7355 100%);
}

.piece-2 {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #e6b422 100%);
}

.piece-3 {
    background: linear-gradient(135deg, var(--dark-green) 0%, #3d7a4b 100%);
}

.piece-4 {
    background: linear-gradient(135deg, var(--lake-blue) 0%, #3498db 100%);
}

.puzzle-piece:hover {
    transform: translate(var(--hover-x, 0), var(--hover-y, 0)) scale(1.01);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.puzzle-piece.active {
    transform: translate(var(--active-x, 0), var(--active-y, 0)) scale(1.03);
    z-index: 20;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.piece-1.active {
    --active-x: -15px;
    --active-y: -15px;
}

.piece-2.active {
    --active-x: 15px;
    --active-y: -15px;
}

.piece-3.active {
    --active-x: -15px;
    --active-y: 15px;
}

.piece-4.active {
    --active-x: 15px;
    --active-y: 15px;
}

.piece-1:hover {
    --hover-x: -10px;
    --hover-y: -10px;
}

.piece-2:hover {
    --hover-x: 10px;
    --hover-y: -10px;
}

.piece-3:hover {
    --hover-x: -10px;
    --hover-y: 10px;
}

.piece-4:hover {
    --hover-x: 10px;
    --hover-y: 10px;
}

@media (max-width: 768px) {
    .puzzle-piece.active {
        transform: translate(var(--active-x, 0), var(--active-y, 0)) scale(1.01);
    }

    .piece-1.active {
        --active-x: -8px;
        --active-y: -8px;
    }

    .piece-2.active {
        --active-x: 8px;
        --active-y: -8px;
    }

    .piece-3.active {
        --active-x: -8px;
        --active-y: 8px;
    }

    .piece-4.active {
        --active-x: 8px;
        --active-y: 8px;
    }

    .piece-1:hover {
        --hover-x: -8px;
        --hover-y: -8px;
    }

    .piece-2:hover {
        --hover-x: 8px;
        --hover-y: -8px;
    }

    .piece-3:hover {
        --hover-x: -8px;
        --hover-y: 8px;
    }

    .piece-4:hover {
        --hover-x: 8px;
        --hover-y: 8px;
    }
}

.piece-content {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border-left: 18px solid transparent;
}

.map-info[data-region-active="visitor"] {
    border-left-color: var(--dark-brown);
    background: linear-gradient(to right, white, #fff8f0);
}

.map-info[data-region-active="tower"] {
    border-left-color: var(--gold-accent);
    background: linear-gradient(to right, white, #fff9e6);
}

.map-info[data-region-active="sampan"] {
    border-left-color: var(--dark-green);
    background: linear-gradient(to right, white, #f0f7f0);
}

.map-info[data-region-active="cenozoic"] {
    border-left-color: var(--lake-blue);
    background: linear-gradient(to right, white, #f0f8ff);
}

.region-info {
    animation: slideInInfo 0.5s ease;
}

@keyframes slideInInfo {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Map Section End */

/* Simple Centered Section Titles Start */
.map-section .section-title,
.articles-section .section-title,
.gallery-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 0.5rem auto;
    color: var(--dark-brown);
    padding-bottom: 0;
    border-bottom: 3px solid var(--gold-accent);
    width: fit-content;
    max-width: 90%;
}

.articles-section .section-title,
.gallery-section .section-title {
    margin: 0 auto 2.5rem auto;
}

.map-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin: 0 auto 3rem auto;
    max-width: 700px;
    width: 90%;
}

.footer h3,
.footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: start;
    color: white;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-accent);
    width: fit-content;
    max-width: 90%;
}

.footer-grid {
    text-align: start;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-contact p {
    gap: 0.5rem;
    margin-bottom: 3px;
}

@media (max-width: 768px) {

    .map-section .section-title,
    .articles-section .section-title,
    .gallery-section .section-title {
        font-size: 2rem;
    }

    .social-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {

    .map-section .section-title,
    .articles-section .section-title,
    .gallery-section .section-title {
        font-size: 1.8rem;
    }

    .social-card h3 {
        font-size: 1.5rem;
    }

    .footer h3,
    .footer h4 {
        font-size: 1.3rem;
    }
}

/* Simple Centered Section Titles End */

/* Articles Section Start */
.articles-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.featured-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-article .article-content {
    padding: 2rem;
}

.featured-article h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small-article {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.small-article:hover {
    transform: translateX(10px);
    background: var(--light-brown);
    color: white;
    border-right: 10px solid #2c2117;
}

.small-article h4 {
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.9rem;
    color: #999;
}

.small-article:hover .date {
    color: rgba(255, 255, 255, 0.8);
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    background: var(--light-brown);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, ease-in-out 0.3s;
}

.view-all-btn:hover {
    background: var(--dark-brown);
}

/* Articles Section End */

/* Gallery Section Start */
.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 164, 73, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(201, 164, 73, 0.03), transparent);
    pointer-events: none;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: 3px solid var(--dark-brown);
    border-radius: 10px;
}

.gallery-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.08);
    filter: brightness(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg,
            rgba(30, 25, 20, 0.75) 0%,
            rgba(45, 35, 25, 0.80) 50%,
            rgba(35, 30, 22, 0.85) 100%);
    color: #f5e6d3;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 2;
    border-top: 2px solid var(--gold-accent);
    transform: translateY(0);
    transition: background 0.2s ease;
}

.gallery-item:hover .gallery-caption {
    background: linear-gradient(90deg,
            rgba(25, 20, 16, 0.80) 0%,
            rgba(38, 30, 22, 0.85) 50%,
            rgba(30, 25, 19, 0.90) 100%);
    color: #ffe6c7;
    padding: 10px 12px;
}

.gallery-image-container.image-error {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-image-container.image-error::after {
    content: '📷';
    font-size: 2rem;
    opacity: 0.5;
    color: #999;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-caption {
        font-size: 0.75rem;
        padding: 8px 10px;
    }

    .gallery-item:hover .gallery-caption {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-caption {
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .gallery-item:hover .gallery-caption {
        padding: 8px 10px;
    }
}

/* Gallery Section End */

/* Social Section Start */
.social-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.social-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.social-card h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.social-card h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--dark-green));
    border-radius: 3px;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.social-list-item:hover {
    transform: translateY(-2px);
    border-color: currentColor;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.social-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.social-list-item.instagram .social-icon-container {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-list-item.instagram:hover {
    background: linear-gradient(135deg, #fdf2f8, #fff);
    border-color: #d62976;
}

.social-list-item.facebook .social-icon-container {
    background: #1877f2;
}

.social-list-item.facebook:hover {
    background: #e8f0fe;
    border-color: #1877f2;
}

.social-list-item.tiktok .social-icon-container {
    background: #000000;
}

.social-list-item.tiktok:hover {
    background: #f2f2f2;
    border-color: #000000;
}

.social-list-item.whatsapp .social-icon-container {
    background: #25D366;
}

.social-list-item.whatsapp:hover {
    background: #e0f2e5;
    border-color: #25D366;
}

.social-username {
    flex: 1;
    min-width: 0;
}

.social-platform {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2px;
}

.social-handle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-arrow {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
    flex-shrink: 0;
}

.social-list-item:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
    color: currentColor;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    width: 100%;
}

.iphone-x {
    position: relative;
    height: 650px;
    width: 320px;
    background: #111;
    border: 5px solid #3D3D3D;
    border-radius: 50px;
    box-shadow:
        inset 0 0 3px 0 rgba(0, 0, 0, 0.2),
        0 0 0 1px #999,
        0 30px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.iphone-x:hover {
    transform: scale(0.87);
}

.iphone-x .buttons .silent,
.iphone-x .buttons .vol-up,
.iphone-x .buttons .vol-down,
.iphone-x .buttons .sleep {
    background: #111;
    position: absolute;
    border-radius: 2px 0 0 2px;
}

.iphone-x .buttons .silent {
    height: 40px;
    width: 3px;
    top: 80px;
    left: -8px;
}

.iphone-x .buttons .vol-up,
.iphone-x .buttons .vol-down {
    left: -8px;
    height: 60px;
    width: 4px;
}

.iphone-x .buttons .vol-up {
    top: 140px;
}

.iphone-x .buttons .vol-down {
    top: 210px;
}

.iphone-x .buttons .sleep {
    left: auto;
    right: -8px;
    top: 150px;
    height: 100px;
    width: 4px;
    border-radius: 0 2px 2px 0;
}

.iphone-x .top {
    position: absolute;
    top: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 4;
    filter: url('#goo');
}

.iphone-x .top .black-bar {
    position: absolute;
    height: 1px;
    width: 70%;
    padding-top: 2px;
    background: #111;
}

.iphone-x .top .iphone-top {
    position: relative;
    height: 30px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    background: #111;
    z-index: 2;
}

.iphone-x .components {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.iphone-x .components .speaker {
    height: 6px;
    width: 70px;
    border-radius: 6px;
    border-bottom: 1px solid #333;
    background: #222;
    z-index: 100;
}

.iphone-x .components .camera {
    position: relative;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border-bottom: 1px solid #444;
    background: radial-gradient(black, #333);
    opacity: 0.5;
    z-index: 4;
}

.iphone-x .components .camera .shine-left {
    position: absolute;
    height: 10px;
    width: 10px;
    margin: 2px;
    border-left: 4px solid dodgerblue;
    border-right: transparent;
    background: black;
    border-radius: 50%;
    filter: blur(1.8px);
}

.iphone-x .components .camera .shine-left:before {
    content: '';
    position: absolute;
    right: 0px;
    height: 8px;
    width: 8px;
    border-right: 2px solid white;
    border-radius: 4px;
}

.iphone-x .top-bar,
.iphone-x .bottom-bar {
    position: absolute;
    left: -5px;
    height: 15px;
    width: 320px;
    border-left: 5px solid #111;
    border-right: 5px solid #111;
}

.iphone-x .top-bar {
    top: 65px;
}

.iphone-x .bottom-bar {
    bottom: 65px;
}

.iphone-x .screen {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid rgba(0, 0, 0, 0.9);
    border-radius: 40px;
    overflow: hidden;
    background: white;
}

.iphone-x .instagram-feed {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 0 5px;
    box-sizing: border-box;
}

.iphone-x .instagram-feed::-webkit-scrollbar {
    width: 4px;
}

.iphone-x .instagram-feed::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.iphone-x .instagram-feed::-webkit-scrollbar-thumb {
    background: var(--dark-brown);
    border-radius: 10px;
}

.insta-post {
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.insta-post:hover {
    opacity: 0.9;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0 10px 0;
}

.insta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.insta-username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.insta-image-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px 0;
    background: #fafafa;
}

.insta-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.insta-image:hover {
    transform: scale(1.02);
}

.insta-actions {
    display: flex;
    gap: 15px;
    padding: 10px 0 5px 0;
    font-size: 22px;
}

.insta-actions span {
    cursor: default;
}

.insta-likes {
    font-weight: 600;
    font-size: 14px;
    padding: 0 0 5px 0;
    color: #262626;
}

.insta-caption {
    font-size: 13px;
    line-height: 1.4;
    color: #262626;
}

.insta-caption strong {
    margin-right: 5px;
}

.insta-time {
    font-size: 10px;
    color: #8e8e8e;
    padding: 8px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insta-loading,
.insta-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 20px;
}

.insta-error {
    color: #ed4956;
}

.insta-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

.insta-view-profile {
    text-align: center;
    padding: 15px 0 10px;
}

.insta-view-profile a {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.insta-view-profile a:hover {
    transform: scale(1.05);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0095f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 12px;
    color: #8e8e8e;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.retry-btn {
    margin-top: 15px;
    padding: 8px 20px;
    background: #0095f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .social-section {
        padding: 3rem 1rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-card {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        order: 2;
        padding: 1.5rem;
    }

    .phone-mockup {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .social-list-item {
        padding: 0.8rem;
    }

    .social-icon-container {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .social-handle {
        font-size: 1rem;
    }

    .iphone-x {
        transform: scale(0.8);
        margin: -80px 0;
    }

    .iphone-x:hover {
        transform: scale(0.82);
    }
}

@media (max-width: 480px) {
    .social-section {
        padding: 2rem 1rem;
    }

    .social-card {
        padding: 1.2rem;
    }

    .social-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .social-icon-container {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }

    .social-handle {
        font-size: 0.9rem;
    }

    .social-platform {
        font-size: 0.7rem;
    }

    .social-list-item {
        padding: 0.7rem;
        gap: 0.8rem;
    }

    .iphone-x {
        transform: scale(0.7);
    }

    .iphone-x:hover {
        transform: scale(0.72);
    }
}

@media (max-width: 360px) {
    .social-card {
        padding: 1rem;
    }

    .social-icon-container {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .social-handle {
        font-size: 0.85rem;
    }

    .social-list-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .iphone-x {
        transform: scale(0.65);
    }
}

.social-arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ccc;
    transition: all 0.3s ease;
    opacity: 0;
    margin-right: 5px;
}

.social-list-item.instagram:hover .social-arrow {
    opacity: 1;
    border-left-color: #d62976;
}

.social-list-item.facebook:hover .social-arrow {
    opacity: 1;
    border-left-color: #1877f2;
}

.social-list-item.tiktok:hover .social-arrow {
    opacity: 1;
    border-left-color: #000000;
}

/* Social Section End */

/* Footer Start */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 4rem 2rem 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 65%, rgba(255, 255, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),

        linear-gradient(45deg, transparent 60%, rgba(10, 5, 5, 0.2) 100%),
        linear-gradient(135deg, transparent 70%, rgba(0, 0, 0, 0.15) 100%),

        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 25px),
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 2px,
            transparent 2px,
            transparent 35px),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 2px,
            transparent 2px,
            transparent 35px),

        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.08) 0%, transparent 30%),

        repeating-linear-gradient(15deg,
            rgba(0, 0, 0, 0.03) 0px,
            rgba(0, 0, 0, 0.03) 5px,
            transparent 5px,
            transparent 20px),
        repeating-linear-gradient(105deg,
            rgba(0, 0, 0, 0.02) 0px,
            rgba(0, 0, 0, 0.02) 8px,
            transparent 8px,
            transparent 25px);

    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer h3,
.footer h4 {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: white;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
    color: white;
}

.footer p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.powered-by {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer End */

/* Mobile Display Start */
@media (max-width: 1140px) {
    .top-bar-container {
        padding: 0 1rem;
        gap: 1rem;
        width: 100%;
    }

    .register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .custom-select {
        width: 100px;
    }

    .selected-text {
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: 60px;
        width: 100%;
    }

    .nav-left {
        gap: 0.8rem;
    }

    .meteor-container {
        width: 60px;
    }


    .site-title {
        margin-left: 1.2rem;
    }

    .site-title span:first-child {
        font-size: 1.1rem;
    }

    .site-title span:last-child {
        font-size: 0.9rem;
    }

    .hamburger-menu {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 65px 1rem 2rem 1rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 900;
        margin: 0;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        max-width: 400px;
        text-align: center;
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem;
        font-size: 1.05rem;
        border-bottom: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
        background: white;
    }

    .nav-menu a:hover {
        background: var(--dark-brown);
        color: white;
        border-radius: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .heading-section {
        margin-top: 115px;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .heading-right-content {
        right: 5%;
        padding: 1.5rem 0;
    }

    .unesco-logo {
        margin-top: 135%;
    }

    .unesco-logo .logo-container img {
        height: 50px;
    }

    .heading-buttons {
        gap: 0.5rem;
    }

    .icon-btn {
        width: 55px;
        height: 55px;
    }

    .icon-btn img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }

    .owner-grid,
    .facilities-grid,
    .articles-grid,
    .social-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .map-interactive-grid {
        display: contents;
        flex-direction: column;
    }

    .map-puzzle {
        order: 1;
        margin-bottom: 1rem;
    }

    .map-info {
        order: 2;
        margin-top: 1rem;
        scroll-margin-top: 120px;
    }

    .region-info {
        animation: fadeInRegion 0.3s ease-in-out;
    }

    @keyframes fadeInRegion {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hero-section,
    .owner-section,
    .facilities-section,
    .map-section,
    .articles-section,
    .gallery-section,
    .social-section {
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .puzzle-piece {
        min-height: 120px;
    }

    .articles-grid {
        gap: 2rem;
    }

    .featured-article img {
        height: 200px;
    }

    .small-article {
        padding: 1rem;
    }

    .social-icons {
        margin-bottom: 2rem;
    }

    .iphone-frame {
        width: 280px;
        height: 550px;
        margin: 0 auto;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .gallery-section,
    .social-section {
        padding: 2rem 1rem 1rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        gap: 0.5rem;
    }

    .footer {
        padding: 2rem;
    }

    .register-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .custom-select {
        width: 140px;
    }

    .meteor-container {
        width: 55px;
    }

    .meteor-shape {
        width: 100px;
        height: 100px;
        top: -15px;
        left: -23px;
    }

    .logo-wrapper {
        width: 55px;
        height: 55px;
    }

    .logo {
        margin-top: 25px;
        width: 80px;
        height: 80px;
    }

    .site-title {
        margin-left: 5px;
    }

    .site-title span:first-child {
        font-size: 1rem;
    }

    .site-title span:last-child {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .heading-section {
        height: 50vh;
        margin-top: 115px;
    }

    .heading-right-content {
        right: 4%;
        padding: 1rem 0;
    }

    .heading-buttons {
        gap: 0.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .owner-content h2 {
        font-size: 1.8rem;
    }

    .facilities-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .puzzle-piece {
        min-height: 90px;
        font-size: 0.8rem;
    }

    .piece-content {
        padding: 0.5rem;
    }

    .featured-article h3 {
        font-size: 1.3rem;
    }

    .small-article h4 {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .iphone-frame {
        width: 240px;
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .register-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }

    .register-btn i {
        font-size: 0.7rem;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .navbar.hidden {
        transform: translateY(-100%);
    }

    .navbar.menu-active {
        transform: none !important;
    }
}

/* Read More Button Styles Start */
.read-more {
    color: #1e4b27;
    padding: 0 10px;
    margin-left: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 2px solid #1e4b27;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(145deg, #529b5d, #469251);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.read-more:hover::before {
    opacity: 0.5;
}

.read-more:hover {
    transform: translateX(2px);
    border-color: #2e6c38;
    color: #133119;
}

.read-more:active {
    transform: translateX(0);
}

.read-more::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more:hover::after {
    transform: translateX(5px);
    color: #133119;
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.featured-article .read-more {
    margin-top: 10px;
}

/* Read More Button Styles End */

.gtg-search-container {
    margin: 20px 0;
    max-width: 500px;
}

.gtg-search-input {
    width: 100%;
    height: 38px;
    padding: 0 16px;
    border: 2px solid #e0d8c4;
    border-radius: 20px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.gtg-search-input:focus {
    border-color: var(--gold-accent, #c9a449);
    box-shadow: 0 0 0 3px rgba(201, 164, 73, 0.1);
}

.gtg-search-input::placeholder {
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .gtg-search-container {
        margin-bottom: 20px;
    }

    .gtg-search-input {
        height: 40px;
        font-size: 14px;
    }
}

.gtg-categories-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.gtg-categories-title {
    font-size: 1.8rem;
    color: var(--dark-brown, #3a2c1e);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.gtg-categories-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-accent, #c9a449);
}

.gtg-categories-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.gtg-category-card {
    display: block;
    background: white;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border-radius: 15px;
}

.gtg-category-card:hover {
    border-color: var(--gold-accent, #c9a449);
}

.gtg-category-header {
    background: var(--light-brown, #3a2c1e);
    padding: 14px;
    border: 2px solid #e0d8c4;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.gtg-category-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.gtg-category-count {
    font-size: 0.9rem;
    color: #222;
    background: #fff;
    font-weight: normal;
    margin-left: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.gtg-category-content {
    padding: 12px;
    background: white;
    border: 2px solid #e0d8c4;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.gtg-category-description {
    color: #222222;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gtg-view-all-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.gtg-btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark-brown, #3a2c1e);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.gtg-btn-view-all:hover {
    background: var(--dark-green, #214d26);
    transform: translateY(-2px);
}

.gtg-btn-view-all:active {
    transform: translateY(0);
}

.gtg-no-data {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .gtg-categories-container {
        padding: 15px;
    }

    .gtg-categories-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .gtg-categories-list {
        gap: 12px;
    }

    .gtg-category-header {
        padding: 10px;
    }

    .gtg-category-name {
        font-size: 0.95rem;
    }

    .gtg-category-count {
        font-size: 0.85rem;
    }

    .gtg-category-content {
        padding: 10px;
    }

    .gtg-category-description {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        font-size: 0.8rem;
    }

    .gtg-btn-view-all {
        padding: 6px 20px;
        font-size: 0.8rem;
    }
}

/* Gallery View All Button Start */
.gallery-view-all-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.gallery-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark-brown, #3a2c1e);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(58, 44, 30, 0.2);
}

.gallery-view-all-btn:hover {
    background: var(--dark-green, #214d26);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 77, 38, 0.3);
}

.gallery-view-all-btn:active {
    transform: translateY(0);
}

.gallery-view-all-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.gallery-view-all-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .gallery-view-all-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-view-all-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
/* Gallery View All Button End */