@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Common */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
  
  /* Dark Mode (Reverted to Old Color Scheme) */
  --bg-body: #020617;
  --bg-card: rgba(15, 33, 64, 0.6);
  --bg-card-rgb: 15, 33, 64;
  --bg-nav: rgba(2, 6, 23, 0.85);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --accent: #d4a853; /* Gold */
  --accent-secondary: #e2c07a;
  --btn-primary-bg: linear-gradient(135deg, #c9952e, #d4a853);
  --btn-primary-text: #020617;
  --border: rgba(255, 255, 255, 0.1);
  --nav-link: rgba(255, 255, 255, 0.8);
  --logo-filter: brightness(0) invert(1);
  --hero-gradient: linear-gradient(to bottom, rgba(2,6,23,1) 0%, rgba(2,6,23,0.9) 40%, rgba(2,6,23,0.7) 80%, #020617 100%);
  --pattern-opacity: 0.03;
}

[data-theme="light"] {
  /* Light Mode (Official Color Palette) */
  --bg-body: #ffffff;
  --bg-card: #f8fafc;
  --bg-card-rgb: 248, 250, 252;
  --bg-nav: rgba(255, 255, 255, 0.9);
  --text-main: #0003c6; /* Official Blue */
  --text-muted: #475569;
  --accent: #0003c6; /* Official Blue */
  --accent-secondary: #01a2d1; /* Official Teal */
  --btn-primary-bg: linear-gradient(135deg, #0003c6, #01a2d1);
  --btn-primary-text: #ffffff;
  --border: rgba(0, 3, 198, 0.1);
  --nav-link: #0003c6;
  --logo-filter: none;
  --hero-gradient: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.7) 80%, #ffffff 100%);
  --pattern-opacity: 0.08;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-muted);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s, color 0.4s;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text-main); line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

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

/* ── Top Header ── */
.top-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--bg-body); border-bottom: 1px solid var(--border);
  padding: 8px 0; font-size: 0.75rem; font-weight: 500;
}
.top-header .container { display: flex; justify-content: space-between; align-items: center; }
.top-left, .top-right { display: flex; align-items: center; gap: 16px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.top-divider { width: 1px; height: 12px; background: var(--border); }
#prayerLabel { color: var(--accent); font-weight: 700; }
#prayerTime, #currentTime { 
  color: var(--text-main); font-weight: 600; 
  font-variant-numeric: tabular-nums;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.8rem;
}
.wib { font-size: 0.65rem; opacity: 0.8; margin-left: -4px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  top: 0; /* Move to top when scrolled */
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { 
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  transition: opacity 0.3s;
  filter: var(--logo-filter);
}
.navbar-logo:hover {
  opacity: 0.9;
}
.logo-img {
  height: 54px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-divider {
  width: 1.5px;
  height: 50px;
  background: var(--border);
  margin: 0 18px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.logo-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: -2px;
}
.logo-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.logo-tagline {
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 4px;
  opacity: 0.9;
  white-space: nowrap;
  font-weight: 300;
}
.navbar-logo:hover .logo-img {
  transform: scale(1.05);
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--nav-link); transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text) !important; padding: 10px 24px; border-radius: 50px;
  font-weight: 600 !important; transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.theme-toggle {
  background: none; border: 1.5px solid var(--border); color: var(--text-main);
  cursor: pointer; padding: 8px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.theme-toggle:hover { background: var(--border); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; border-radius: 2px; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-gradient);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; position: relative; z-index: 1; }
.hero-meta {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px; padding: 6px 0;
}
.meta-row { display: flex; align-items: center; gap: 15px; }
.meta-item {
  font-size: 0.85rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap;
}
#prayerTime { font-weight: 700; color: var(--text-main); }
.meta-divider {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--border);
}
.hero h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; 
  text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}
[data-theme="dark"] .hero h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 .gold { color: var(--accent); }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 540px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text); padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-outline {
  background: transparent; border: 2px solid var(--border); color: var(--text-main);
  padding: 14px 36px; border-radius: 50px; font-weight: 500; font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--accent); background: var(--border); }

/* ── Islamic Pattern Divider ── */
.islamic-divider {
  width: 100%; height: 40px; opacity: 0.15;
  background: url("data:image/svg+xml,%3Csvg width='60' height='40' viewBox='0 0 60 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 20 L30 40 L0 20Z' fill='none' stroke='currentColor' stroke-width='0.5'/%3E%3C/svg%3E") repeat-x center;
  color: var(--accent);
}

/* ── Info Widget ── */
.info-widget-bar {
  background: var(--bg-card); border: 1px solid var(--border);
  backdrop-filter: blur(16px); border-radius: var(--radius-lg);
  padding: 20px 32px; margin-top: -40px; position: relative; z-index: 10;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.info-widget-item { text-align: center; }
.info-widget-item .widget-icon { margin: 0 auto 8px; }
.info-widget-item .widget-icon svg { width: 28px; height: 28px; color: var(--accent); }
.info-widget-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 4px; }
.info-widget-value { font-size: 1.1rem; font-weight: 600; color: var(--text-main); }
.info-widget-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ── Section Base ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--brand-teal); margin-bottom: 12px; font-weight: 600;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ── Package Cards ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.package-card-img { position: relative; height: 220px; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.package-card:hover .package-card-img img { transform: scale(1.05); }
.package-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text); padding: 6px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.package-card-body { padding: 24px; }
.package-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.package-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.package-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.package-meta svg { width: 16px; height: 16px; color: var(--accent); }
.package-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.package-price { display: flex; align-items: center; justify-content: space-between; }
.package-price .price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--accent); font-weight: 700; }
.package-price .price small { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.btn-sm {
  background: var(--border); border: 1px solid var(--border); color: var(--text-main);
  padding: 10px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-sm:hover { background: var(--accent); border-color: var(--accent); color: var(--btn-primary-text); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 480px; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--accent); border-radius: var(--radius-lg);
  transform: translate(12px, 12px); pointer-events: none; opacity: 0.3;
}
.about-content .section-label { text-align: left; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; }
.brand-identity-row { 
  margin-top: 40px; 
  display: flex; 
  flex-direction: column; 
  gap: 32px; 
}
.about-vision { 
  padding: 24px 32px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-vision h4 { font-size: 1.1rem; color: var(--accent); margin-bottom: 8px; font-family: var(--font-heading); }
.about-vision p { font-size: 1rem; color: var(--text-main); font-weight: 500; line-height: 1.6; margin: 0; }

.about-mission h4 { font-size: 1.1rem; color: var(--accent); margin-bottom: 16px; font-family: var(--font-heading); }
.mission-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px; 
}
.mission-item { 
  display: flex; flex-direction: column; gap: 12px; 
  background: var(--bg-card); 
  padding: 20px; 
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.mission-item:hover { transform: translateY(-5px); border-color: var(--accent); }
.mission-icon { font-size: 1.5rem; line-height: 1; }
.mission-text strong { display: block; font-size: 0.9rem; color: var(--text-main); margin-bottom: 6px; }
.mission-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 992px) {
  .mission-grid { grid-template-columns: 1fr; }
}

.about-quote { 
  margin-top: 24px; 
  font-family: var(--font-heading); 
  font-style: italic; 
  font-size: 1.15rem; 
  color: var(--accent); 
  font-weight: 500; 
  text-align: left; 
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.diff-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 24px; 
  margin-top: 40px; 
  justify-content: center;
}
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border); padding: 28px; border-radius: var(--radius-md);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.diff-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.diff-card svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 16px; }
.diff-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-main); }
.diff-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.6), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-ig-link { text-align: center; margin-top: 32px; }
.gallery-ig-link a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 500; transition: color 0.3s; }
.gallery-ig-link a:hover { color: var(--accent-secondary); }

/* ── Hot Package / Promo ── */
.hot-package-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid var(--accent); padding: 60px;
  display: flex; align-items: center; gap: 48px;
}
.hot-package-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.15), transparent 70%);
}
.hot-badge {
  position: absolute; top: 15px; left: 15px;
  background: rgba(212, 168, 83, 0.9); 
  backdrop-filter: blur(8px);
  color: var(--navy-900); padding: 8px 16px;
  border-radius: 8px; font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hot-package-img { flex: 0 0 320px; border-radius: var(--radius-md); overflow: hidden; position: relative; z-index: 1; }
.hot-package-img img { width: 100%; height: 280px; object-fit: cover; }
.hot-package-info { flex: 1; position: relative; z-index: 1; }
.hot-package-info h3 { font-size: 2rem; margin-bottom: 12px; }
.hot-package-info .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; }
.hot-package-info .new-price { font-family: var(--font-heading); font-size: 2.2rem; color: var(--accent); font-weight: 700; }
.hot-package-info p { margin: 16px 0 24px; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); }
.blog-category { color: var(--accent); font-weight: 600; }
.blog-dot { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

.blog-title { 
  font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.4; 
  margin-bottom: 16px; color: var(--text-main); transition: color 0.3s; 
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

/* Blog Variants */
.blog-card.editorial .blog-title { font-weight: 700; font-style: italic; }

.blog-list { list-style: none; margin-bottom: 24px; padding-left: 0; }
.blog-list li { 
  position: relative; padding-left: 20px; font-size: 0.85rem; 
  color: var(--text-main); margin-bottom: 8px; font-weight: 500;
}
.blog-list li::before { 
  content: '→'; position: absolute; left: 0; color: var(--accent); 
}

.blog-quote { 
  font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; 
  color: var(--accent); border-left: 3px solid var(--accent); 
  padding-left: 20px; margin: 0 0 24px; line-height: 1.5;
}

.blog-link { 
  margin-top: auto; font-size: 0.85rem; font-weight: 600; 
  color: var(--text-main); text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 8px;
}
.blog-link::after { content: '→'; transition: transform 0.3s; }
.blog-link:hover::after { transform: translateX(5px); }
.blog-link:hover { color: var(--accent); }

/* ── Testimonials ── */
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 28px; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px); min-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-style: italic; font-size: 0.95rem; color: var(--nav-link); margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.testimonial-author-info h4 { font-size: 0.95rem; color: var(--text-main); }
.testimonial-author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Certifications ── */
.cert-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; }
.cert-item { text-align: center; transition: all 0.3s; }
.cert-item:hover { transform: translateY(-5px); }
.cert-item svg, .cert-logo { 
  width: auto; height: 120px; margin: 0 auto 20px; 
  display: block;
}
.cert-logo { filter: none; }
.cert-item p { font-size: 0.95rem; font-weight: 500; color: var(--text-main); line-height: 1.4; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; }
.contact-details { list-style: none; margin-bottom: 32px; }
.contact-details li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; }
.contact-details svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: var(--white); padding: 14px 28px;
  border-radius: 50px; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-maps {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--border); border: 1px solid var(--border); color: var(--text-main);
  padding: 14px 28px; border-radius: 50px; font-weight: 500; transition: 0.3s;
}
.btn-maps:hover { border-color: var(--accent); background: var(--bg-card); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
[data-theme="dark"] .contact-map iframe { 
  filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.1); 
}

/* ── Footer ── */
.footer {
  background: var(--bg-body); border-top: 1px solid var(--border); padding: 60px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 12px; }
.company-legal, .footer-legal {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-top: -10px;
  margin-bottom: 15px;
}
.footer-legal { margin-top: -5px; }
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); }
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }

/* ── Geometric Pattern BG ── */
.pattern-bg {
  position: relative;
}
.pattern-bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: var(--pattern-opacity);
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='currentColor' stroke-width='0.5'%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='40' cy='40' r='35'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--accent);
}

/* ── Mobile Nav ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--bg-body); backdrop-filter: blur(20px);
  flex-direction: column; align-items: stretch; justify-content: flex-start;
}
.mobile-menu.active { 
  display: flex; 
  animation: mobileMenuFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mobile-menu a { font-size: 1.2rem; font-weight: 500; color: var(--text-main); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--accent); }

@keyframes mobileMenuFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mobileLinkSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-links a {
  display: block;
  font-size: 1.5rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  opacity: 0; /* Hidden initially for animation */
}

.mobile-menu.active .mobile-links a {
  animation: mobileLinkSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu.active .mobile-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-links a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-links a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-links a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-links a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-links a:nth-child(6) { animation-delay: 0.35s; }
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mobile-close svg { width: 32px; height: 32px; }
.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 24px;
  text-align: center;
}
.mobile-links a {
  font-size: 1.5rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.mobile-links a:hover {
  color: var(--accent);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ── Logo Divider ── */
.logo-divider-line {
  width: 100%;
  height: 24px;
  background-image: url('images/logo-pattern.svg');
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
  opacity: 0.15;
  margin: 40px 0;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
[data-theme="dark"] .logo-divider-line {
  filter: brightness(0) invert(1);
  opacity: 0.1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hot-package-banner { flex-direction: column; padding: 30px; margin-top: 0; overflow: hidden; }
  .hot-badge { top: 12px; left: 12px; right: auto; transform: none; }
  .hot-package-img { flex: none; width: 100%; margin-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-header { display: none; }
  .navbar { top: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .info-widget-bar { grid-template-columns: 1fr; gap: 16px; margin-top: -20px; padding: 20px; }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 16px); }
  .vision-mission { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
/* ── Article Page ── */
.article-page { padding-top: 100px; }
.article-hero { 
  background: linear-gradient(135deg, var(--bg-body), var(--bg-card));
  padding: 80px 0 60px; border-bottom: 1px solid var(--border);
  text-align: center;
}
.article-meta { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; }
.article-meta .category { color: var(--accent); }
.article-meta .date { color: var(--text-muted); opacity: 0.8; }
.article-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text-main); line-height: 1.2; }

.article-content { max-width: 800px; margin: 40px auto; padding: 0 20px; line-height: 1.8; color: var(--text-muted); font-size: 1.1rem; }
.article-content .lead { font-size: 1.3rem; color: var(--text-main); font-weight: 500; margin-bottom: 40px; }
.article-content h2 { font-family: var(--font-heading); color: var(--text-main); margin: 48px 0 24px; font-size: 1.8rem; }
.article-content p { margin-bottom: 24px; }
.article-content ul { margin-bottom: 32px; padding-left: 20px; }
.article-content li { margin-bottom: 12px; }
.content-img { width: 100%; border-radius: var(--radius-lg); margin: 40px 0; box-shadow: var(--shadow-lg); }
.article-content blockquote { 
  font-family: var(--font-heading); font-style: italic; font-size: 1.5rem; 
  color: var(--accent); border-left: 4px solid var(--accent); padding-left: 32px; 
  margin: 60px 0; line-height: 1.4;
}

@media (max-width: 768px) {
  .article-page { padding-top: 80px; }
  .article-hero { padding: 60px 0 40px; }
  .article-content { font-size: 1rem; }
  .article-content .lead { font-size: 1.15rem; }
}
