/* ===== DESIGN TOKENS ===== */
:root {
  --green: #0C4A7A;
  --green-light: #1B6FA0;
  --green-dark: #071E3D;
  --brown: #6B4F2A;
  --gold: #C9A227;
  --gold-light: #e8bb44;
  --bg: #F7F9FC;
  --bg-dark: #091D38;
  --text: #1a1a1a;
  --text-muted: #5a6672;
  --text-light: #e8edf2;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(12,74,122,0.12);
  --shadow-lg: 0 12px 48px rgba(12,74,122,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Times New Roman', Times, serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; font-size: 14px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  overflow: visible !important;
}
.navbar.scrolled { box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.nav-container {
  max-width: 100%; margin: 0 auto; padding: 0 40px; height: 80px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-emblem svg { width: 40px; height: 40px; }
.nav-brand-text { display: flex; flex-direction: column; min-width: 0; flex: 1; width: 100%; overflow: hidden; }
.brand-main { font-size: clamp(0.7rem, 2.5vw, 0.9rem); font-weight: 700; color: var(--green); line-height: 1.2; word-wrap: break-word; overflow-wrap: break-word; white-space: normal; display: block; width: 100%; }
.brand-sub { font-size: clamp(0.5rem, 1.8vw, 0.65rem); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; width: 100%; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600;
  color: var(--text); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: rgba(12,74,122,0.05); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(0,0,0,0.03); border-radius: 30px; border: 1px solid rgba(0,0,0,0.05); }
.lang-sep { color: rgba(0,0,0,0.1); font-size: 0.75rem; }
.lang-btn { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); padding: 4px 10px; border-radius: 4px; transition: var(--transition); font-family: var(--font); white-space: nowrap; }
.lang-btn.active, .lang-btn:hover { color: #FFA62F; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: var(--transition); }
.mobile-menu { 
    display: none; 
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 30, 61, 0.98);
    backdrop-filter: blur(8px);
    z-index: 1100;
    overflow-y: auto;
}
.mobile-menu.open { display: flex !important; }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px;
    gap: 8px;
}
.mob-link { padding: 14px 18px; color: rgba(255,255,255,0.9); font-size: 1.1rem; font-weight: 600; border-radius: var(--radius-sm); transition: var(--transition); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-link:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.mob-lang { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 0 40px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); justify-content: center; }
.mob-lang .lang-btn { color: white; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 10px 12px; font-size: 0.85rem; flex: 1 1 auto; min-width: 80px; text-align: center; font-weight: 700; }
.mob-lang .lang-btn.active { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 140px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #041228;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(4,18,40,0.2) 0%, rgba(4,18,40,0.4) 100%); }

/* Animated particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles span {
  position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%;
  animation: float 8s infinite ease-in-out;
  opacity: 0.4;
}
.hero-particles span:nth-child(1)  { left:10%; top:20%; animation-delay:0s; animation-duration:7s; }
.hero-particles span:nth-child(2)  { left:80%; top:15%; animation-delay:1s; animation-duration:9s; width:3px; height:3px; }
.hero-particles span:nth-child(3)  { left:50%; top:70%; animation-delay:2s; }
.hero-particles span:nth-child(4)  { left:25%; top:80%; animation-delay:3s; animation-duration:6s; }
.hero-particles span:nth-child(5)  { left:70%; top:60%; animation-delay:1.5s; width:4px; height:4px; }
.hero-particles span:nth-child(6)  { left:90%; top:40%; animation-delay:0.5s; }
.hero-particles span:nth-child(7)  { left:15%; top:50%; animation-delay:2.5s; animation-duration:10s; }
.hero-particles span:nth-child(8)  { left:60%; top:30%; animation-delay:4s; }
.hero-particles span:nth-child(9)  { left:40%; top:10%; animation-delay:3.5s; }
.hero-particles span:nth-child(10) { left:35%; top:90%; animation-delay:1s; animation-duration:8s; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1);opacity:0.4} 50%{transform:translateY(-20px) scale(1.5);opacity:0.8} }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1000px; margin: 0 auto; pointer-events: none; }
.hero-content > * { pointer-events: auto; }

/* ===== HERO SLIDER CONTROLS ===== */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; color: white; border: none;
  font-size: 2.5rem; cursor: pointer; z-index: 20;
  opacity: 0; transition: var(--transition);
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.hero-arrow:hover { color: var(--gold); transform: translateY(-50%) scale(1.1); opacity: 1 !important; }
.hero-bg:hover .hero-arrow { opacity: 0.8; }
.hero-arrow.prev { left: 40px; }
.hero-arrow.next { right: 40px; }

.hero-indicators {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.indicator {
  width: 16px; height: 3px; background: rgba(255,255,255,0.4);
  border-radius: 2px; cursor: pointer; transition: var(--transition);
}
.indicator.active { background: var(--white); width: 28px; }
.indicator:hover { background: rgba(255,255,255,0.7); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold); padding: 8px 20px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.hero-badge::before { content: '★'; font-size: 0.7rem; }
.hero-title { font-size: clamp(1.8rem, 4.5vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); white-space: nowrap; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary {
  padding: 14px 32px; background: var(--white); color: var(--green);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline {
  padding: 14px 32px; border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-stats-wrapper { background: var(--white); padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.hero-stats { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.stat { display: flex; flex-direction: column; align-items: center; flex: 1; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: capitalize; font-weight: 500; margin-top: 8px; }
.stat-divider { width: 1px; height: 40px; background: rgba(0,0,0,0.08); }


/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-light { background: var(--bg); }
.section-dark { background: var(--green-dark); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block; background: rgba(201,162,39,0.12); color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3); padding: 6px 18px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.section-dark .section-badge { background: rgba(201,162,39,0.15); }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--green); margin-bottom: 16px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* ===== ABOUT CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(12,74,122,0.06); cursor: default;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,0.2); }
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card h3 { font-size: 18px !important; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.card-text-wrapper { position: relative; margin-bottom: 12px; }
.card-text { 
    font-size: 14px !important; 
    color: var(--text-muted); 
    line-height: 1.7; 
    overflow: hidden; 
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    transition: max-height 0.5s ease;
}
.card-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}
/* Ensure Rich Text styles are preserved */
.card-text h1, .card-text h2, .card-text h3, .card-text h4 { 
    margin: 15px 0 10px; 
    color: var(--green); 
    line-height: 1.2;
}
.card-text ul, .card-text ol { 
    margin: 10px 0 10px 20px; 
    padding-left: 10px;
}
.card-text li { margin-bottom: 5px; }
.card-text p { margin-bottom: 10px; }
.card-text span, .card-text strong, .card-text em { color: inherit; font-family: inherit; font-size: inherit; }

.read-more-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    background: none;
    padding: 0;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.read-more-btn:hover { color: var(--green); }
.read-more-btn i { font-size: 0.7rem; transition: transform 0.3s; }
.read-more-btn.active i { transform: rotate(180deg); }

/* ===== TOURISM ===== */
.tourism-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.tourism-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: default; }
.tourism-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.tourism-card-img { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; }
.tourism-icon { font-size: 3.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.tourism-card-body { padding: 24px; }
.tourism-card-body h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.tourism-card-body .card-text { font-size: 14px; }
.tourism-card-body p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 20px; }
.btn-sm { display: inline-block; padding: 8px 20px; background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.35); border-radius: 20px; font-size: 0.8rem; font-weight: 600; transition: var(--transition); }
.btn-sm:hover { background: var(--gold); color: var(--green-dark); }

/* ===== CULTURE ===== */
.culture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.culture-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 28px 28px 24px;
  border-left: 4px solid var(--gold); box-shadow: var(--shadow);
  transition: var(--transition); position: relative; overflow: hidden; cursor: default;
}
.culture-card::before { content:''; position:absolute; top:0; right:0; width:80px; height:80px; background:radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%); border-radius:0 var(--radius) 0 80px; }
.culture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-left-color: var(--green); }
.culture-num { font-size: 2.5rem; font-weight: 900; color: rgba(201,162,39,0.15); line-height: 1; margin-bottom: 8px; }
.culture-card h3 { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.culture-card .card-text { font-size: 14px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3;
  position: relative; cursor: pointer; transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.4); z-index: 2; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:3rem; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white); padding: 24px 16px 16px;
  opacity: 0; transform: translateY(8px); transition: var(--transition);
  font-size: 0.85rem; font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { background: #121212; color: var(--white); position: relative; padding-top: 60px; font-family: 'Inter', sans-serif; }
.footer-body { padding-bottom: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 2fr 1fr; gap: 40px; align-items: start; }

/* Info Column */
.footer-info .footer-logo { background: var(--white); padding: 15px; border-radius: 8px; display: inline-block; margin-bottom: 25px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.footer-info .footer-logo img { height: 60px; width: auto; object-fit: contain; }
.footer-desc { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; max-width: 350px; }
.social-media h5 { font-size: 1rem; font-weight: 600; margin-bottom: 15px; letter-spacing: 0.02em; }
.social-icons { display: flex; gap: 18px; }
.social-icons a { color: var(--white); font-size: 1.2rem; transition: var(--transition); opacity: 0.85; }
.social-icons a:hover { transform: translateY(-3px); color: var(--gold); opacity: 1; }

/* Contact Box Column */
.footer-contact { display: flex; justify-content: center; }
.contact-box {
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  padding: 40px 30px;
  width: 100%;
  max-width: 650px;
  position: relative;
}
.contact-title {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #121212;
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
}
.contact-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
.contact-items.single-col { grid-template-columns: 1fr; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 15px; }
.contact-item i { font-size: 1.6rem; color: var(--white); width: 24px; text-align: center; }
.contact-text { display: flex; flex-direction: column; }
.contact-label { font-size: 0.75rem; font-weight: 800; color: var(--white); letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-value { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); transition: var(--transition); }
.contact-item a.contact-value:hover { color: var(--gold); }
.contact-items .contact-item:last-child { grid-column: span 2; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 10px; }

/* Links Column */
.footer-links-col { text-align: right; }
.links-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 25px; letter-spacing: 0.1em; }
.footer-links { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; }
.footer-links a { font-size: 1.05rem; font-weight: 600; color: var(--white); transition: var(--transition); opacity: 0.9; }
.footer-links a:hover { color: var(--gold); opacity: 1; }

/* Footer Bottom */
.footer-bottom { background: var(--white); padding: 18px 0; }
.footer-bottom-content { display: flex; align-items: center; justify-content: center; position: relative; }
.copyright-info { color: #0C4A7A; font-size: 0.95rem; font-weight: 600; text-align: center; }
.copyright-info .divider { margin: 0 10px; color: rgba(12,74,122,0.3); }

/* Back to Top */
.back-to-top {
  position: absolute;
  right: 24px;
  background: #6c757d;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.back-to-top:hover { background: #495057; transform: translateY(-3px); }

/* Floating Chat */

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.1s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-container { display: flex; justify-content: space-between; padding: 0 16px; align-items: center; width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; }
  .nav-right { flex: 0 0 40px; display: flex; align-items: center; justify-content: flex-end; }
  .nav-brand { flex: 1; min-width: 0; padding-right: 16px; margin-right: 0; width: auto; overflow: hidden; }
  .brand-main { font-size: 0.8rem; line-height: 1.2; word-wrap: break-word; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; width: 100%; }
  .brand-sub { font-size: 0.6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; width: 100%; }
  .hero-title { white-space: normal; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; margin: 0; width: 32px; height: 24px; justify-content: space-between; align-items: center; padding: 0; background: transparent; border: none; }
  .mobile-menu.open { display: flex !important; }
  .lang-switcher { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .footer-info { display: flex; flex-direction: column; align-items: center; }
  .footer-desc { max-width: 100%; }
  .social-icons { justify-content: center; }
  .footer-links-col { text-align: center; }
  .footer-links { align-items: center; }
  .contact-items { grid-template-columns: 1fr; }
  .contact-items .contact-item:last-child { grid-column: auto; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 0; padding: 20px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 1.5rem; }
  .stat-divider { height: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}
