* { box-sizing: border-box; }
:root {
  --bg: #030813;
  --bg-soft: #071126;
  --panel: rgba(8, 20, 38, 0.72);
  --line: rgba(16, 185, 129, 0.18);
  --text: #f0f6fc;
  --muted: #8b9bb4;
  --primary: #10b981; /* Green matching logo */
  --primary-dark: #059669;
  --accent: #00b4d8; /* Cyan matching logo gradient */
  --accent-rgb: 0, 180, 216;
  --danger: #ff6d8a;
  --warn: #ffc65a;
  --shadow: 0 24px 60px rgba(1, 4, 15, 0.65);
  --glass: rgba(8, 20, 38, 0.65);
  --border-radius: 16px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(1100px 500px at -10% -25%, rgba(16, 185, 129, 0.12), transparent 60%),
    radial-gradient(900px 500px at 120% -25%, rgba(0, 180, 216, 0.15), transparent 60%),
    linear-gradient(180deg, #040a15 0%, #02060e 100%);
  color: var(--text);
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a { 
  color: #9fd7ff; 
  text-decoration: none; 
  transition: color 0.2s ease;
}
a:hover { 
  color: #cde7ff; 
}
.container { 
  width: min(1200px, 92%); 
  margin: 0 auto; 
}

/* Topbar */
.topbar {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 11, 24, 0.85);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
}

.brand strong {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(14, 26, 51, 0.65);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.25rem;
}

.menu a {
  color: #e5eeff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.menu a:hover { 
  background: rgba(0, 180, 216, 0.15); 
  color: #fff;
}
.link-soft { 
  color: var(--muted) !important; 
}
.link-soft:hover {
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: rgba(14, 26, 51, 0.85);
  color: #f4f8ff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
}

/* Hero Section */
.hero { 
  padding: 5rem 0 3.5rem; 
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #8ff0da;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 1.1rem 0;
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { 
  color: var(--muted); 
  line-height: 1.65; 
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  color: #020914;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover { 
  filter: brightness(1.1); 
  transform: translateY(-2px); 
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  background: rgba(10, 21, 46, 0.6);
  color: #d9ecff;
  border: 1px solid rgba(74, 150, 255, 0.35);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.6);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.15);
}

.btn-danger {
  background: linear-gradient(90deg, #ff5f87, #ff7f55);
  color: #1d0a12;
  box-shadow: 0 8px 24px rgba(255, 95, 135, 0.25);
}
.btn-danger:hover {
  box-shadow: 0 12px 30px rgba(255, 95, 135, 0.35);
}

.btn-xs {
  padding: 0.45rem 0.78rem;
  border-radius: 10px;
  font-size: 0.82rem;
}

.btn-block { 
  width: 100%; 
}

.chips {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chips span {
  font-size: 0.82rem;
  font-weight: 500;
  color: #bfd6ff;
  background: rgba(14, 27, 56, 0.6);
  border: 1px solid rgba(110, 155, 224, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-panel,
.panel,
.stat-card,
.card,
.cta-box,
.details-faq {
  background: linear-gradient(160deg, rgba(14, 27, 56, 0.75), rgba(7, 14, 30, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-panel { 
  padding: 1.6rem; 
  border-color: rgba(0, 180, 216, 0.25);
}
.hero-panel h3 { 
  margin-top: 0; 
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #9fd7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-panel ul {
  margin: 1.1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: #c7d9f7;
  line-height: 1.7;
}
.hero-panel li {
  margin-bottom: 0.5rem;
}

/* Sections */
.section { 
  padding: 3.5rem 0; 
}

.section-soft {
  background: linear-gradient(180deg, rgba(10, 20, 42, 0.3) 0%, rgba(5, 10, 24, 0.1) 100%);
  border-top: 1px solid rgba(145, 177, 235, 0.1);
  border-bottom: 1px solid rgba(145, 177, 235, 0.1);
}

h1, h2, h3, h4, h5 { 
  margin: 0 0 0.6rem; 
  font-weight: 700;
}
.section h2 { 
  font-size: clamp(1.6rem, 3.2vw, 2.25rem); 
  letter-spacing: -0.02em;
}

.section h2 span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub { 
  margin: 0.25rem 0 1.8rem; 
  color: var(--muted); 
  font-size: 1.05rem;
}

/* Cards Layout */
.cards { 
  display: grid; 
  gap: 1.1rem; 
}
.cards-3 { 
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
}
.card { 
  padding: 1.5rem; 
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.1);
}
.card:hover::before {
  opacity: 1;
}

.card h3 { 
  font-size: 1.25rem; 
  color: #fff;
  margin-bottom: 0.3rem;
}
.card p { 
  color: #a7badc; 
  margin: 0.5rem 0 1.2rem; 
  font-size: 0.92rem;
  line-height: 1.5;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8fdcff;
  font-size: 0.88rem;
  border-top: 1px solid rgba(130, 165, 219, 0.12);
  padding-top: 0.85rem;
}
.card-foot strong {
  font-size: 1.05rem;
  color: var(--primary);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.timeline > div {
  background: rgba(14, 27, 56, 0.65);
  border: 1px solid rgba(122, 161, 228, 0.18);
  border-radius: var(--border-radius);
  padding: 1.4rem;
  transition: all 0.3s ease;
}
.timeline > div:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.35);
}

.timeline span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(16, 185, 129, 0.15);
  color: #9ff4e4;
  border: 1px solid rgba(16, 185, 129, 0.35);
  margin-bottom: 0.85rem;
}

.timeline h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.timeline p { 
  color: #abc0e4; 
  line-height: 1.55;
  font-size: 0.88rem;
  margin: 0;
}

/* Split Section */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.list-check {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.list-check li {
  color: #cae0ff;
  padding-left: 1.7rem;
  position: relative;
  line-height: 1.5;
  font-size: 0.96rem;
}

.list-check li i.lucide {
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.15rem;
}

.cta-box { 
  padding: 1.8rem; 
  border-color: rgba(16, 185, 129, 0.25);
  text-align: center;
}
.cta-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.cta-box p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

/* Local Map Styles */
.map-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 300px;
  background: rgba(14, 27, 56, 0.4);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ Details/Summary Accordion */
.faq-grid {
  display: grid;
  gap: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.details-faq {
  padding: 0;
  border-radius: 12px;
  background: rgba(14, 27, 56, 0.45);
}

.details-faq summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.details-faq summary::-webkit-details-marker {
  display: none;
}
.details-faq summary i.lucide {
  color: var(--accent);
  transition: transform 0.25s ease;
}
.details-faq[open] {
  background: rgba(14, 27, 56, 0.8);
  border-color: rgba(0, 180, 216, 0.35);
}
.details-faq[open] summary i.lucide {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
  border-top: 1px solid rgba(130, 165, 219, 0.08);
  padding-top: 0.95rem;
}
.faq-answer p {
  margin: 0;
}

/* Booking Layout */
.form-layout {
  display: grid;
  grid-template-columns: 1fr min(640px, 100%);
  gap: 2.2rem;
  align-items: start;
}

.compact-top { 
  padding-top: 2.8rem; 
}
.panel { 
  padding: 1.8rem; 
}

.alert {
  margin-bottom: 1.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.alert-danger {
  background: rgba(255, 109, 138, 0.12);
  color: #ffb8c5;
  border-color: rgba(255, 109, 138, 0.3);
}

.alert-success {
  background: rgba(16, 185, 129, 0.12);
  color: #a3f7e6;
  border-color: rgba(16, 185, 129, 0.3);
}

form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #d8e6ff;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(111, 151, 218, 0.22);
  background: rgba(8, 17, 35, 0.7);
  color: #f2f7ff;
  outline: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.18);
  background: rgba(8, 17, 35, 0.95);
}

textarea { 
  resize: vertical; 
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkbox-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  color: #c1d6f7;
  cursor: pointer;
}

.checkbox-line input { 
  width: auto; 
  cursor: pointer;
}

.info-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.info-list div {
  background: rgba(19, 34, 67, 0.45);
  border: 1px solid rgba(120, 159, 224, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #c4d9ff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.info-list div i.lucide {
  color: var(--accent);
}

.summary-grid { 
  margin: 1.2rem 0 1.5rem; 
}

.summary-grid div {
  background: rgba(19, 34, 67, 0.45);
  border: 1px solid rgba(130, 168, 229, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.summary-grid span {
  display: block;
  color: #94add2;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-grid strong { 
  display: block; 
  margin-top: 0.35rem; 
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(130, 165, 219, 0.15);
  background: rgba(4, 9, 21, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 2rem;
  padding: 2.2rem 0 1.8rem;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  margin-bottom: 0.65rem;
}
.footer-grid h5 {
  color: #c7d9f7;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.footer-grid p { 
  margin: 0; 
  color: #a5b8d8; 
  line-height: 1.6; 
  font-size: 0.92rem;
}
.footer-grid a { 
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem; 
  color: #b3e3ff; 
  font-size: 0.92rem;
}
.footer-grid a:hover {
  color: #fff;
}

.footer-copy {
  border-top: 1px solid rgba(130, 165, 219, 0.1);
  padding: 1.1rem 0 1.4rem;
  color: #8ea4ca;
  font-size: 0.85rem;
  text-align: center;
}

/* Success Panel */
.success-panel {
  text-align: center;
  padding: 2rem;
  border-color: rgba(16, 185, 129, 0.35);
  max-width: 680px;
  margin: 0 auto;
}
.success-panel h1 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.success-panel p strong {
  font-size: 1.4rem;
  color: #fff;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  display: inline-block;
}

/* =========================================
   Admin Panel Styles (Keep Intact)
   ========================================= */

.auth-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.auth-card {
  width: min(430px, 100%);
  background: linear-gradient(160deg, rgba(19, 34, 67, 0.94), rgba(7, 14, 30, 0.95));
  border: 1px solid rgba(118, 161, 225, 0.28);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 1.6rem;
  margin-top: 0.8rem;
}

.auth-card p { color: #a7bcde; margin-top: 0.4rem; }
.auth-brand { justify-content: center; width: 100%; }

.admin-body { background: linear-gradient(180deg, #061024, #030712); }

.admin-header {
  position: sticky;
  top: 0;
  z-index: 35;
  border-bottom: 1px solid rgba(124, 162, 225, 0.28);
  background: rgba(6, 12, 24, 0.95);
  backdrop-filter: blur(12px);
}

.admin-header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  background: rgba(17, 29, 58, 0.72);
  border: 1px solid rgba(119, 161, 232, 0.28);
  border-radius: 12px;
  padding: 0.22rem;
}

.admin-nav a {
  color: #d6e7ff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.52rem 0.72rem;
  border-radius: 9px;
}

.admin-nav a:hover { background: rgba(51, 170, 251, 0.18); }

.admin-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #9cb3d8;
}

.admin-main { padding: 1.1rem 0 2rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.stat-card { padding: 0.9rem; }
.stat-card span {
  color: #95b0da;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.7rem;
}

.stat-card small { color: #9bb0d1; font-size: 0.78rem; }
.panel + .panel { margin-top: 0.85rem; }

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.table-wrap { overflow: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
}

thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  color: #89a6d3;
  padding: 0.62rem;
  border-bottom: 1px solid rgba(132, 170, 231, 0.22);
}

tbody td {
  font-size: 0.9rem;
  padding: 0.66rem;
  border-bottom: 1px solid rgba(132, 170, 231, 0.13);
  vertical-align: top;
}

.inline-form {
  display: grid;
  gap: 0.35rem;
  min-width: 220px;
}

.inline-form input,
.inline-form select {
  padding: 0.45rem 0.6rem;
  font-size: 0.82rem;
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-info { background: rgba(86, 163, 255, 0.2); color: #9bd5ff; }
.status-primary { background: rgba(30, 217, 172, 0.2); color: #9af4de; }
.status-warn { background: rgba(255, 187, 73, 0.2); color: #ffde9d; }
.status-purple { background: rgba(170, 124, 255, 0.2); color: #d7bcff; }
.status-success { background: rgba(50, 222, 150, 0.2); color: #adf7d6; }
.status-danger { background: rgba(255, 93, 126, 0.2); color: #ffc0cf; }

.filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: end;
}

.day-box {
  grid-column: 1 / -1;
  background: rgba(14, 27, 53, 0.75);
  border: 1px solid rgba(119, 161, 232, 0.23);
  border-radius: 12px;
  padding: 0.7rem;
}

.day-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mini-note {
  color: #8da8d2;
  font-size: 0.78rem;
  margin-top: 0.6rem;
  display: block;
}

/* Responsiveness Media Queries */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .admin-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem 0;
  }

  .menu-toggle { display: inline-flex; }
  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    margin-top: 0.4rem;
  }
  .menu.open { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .filters { grid-template-columns: 1fr; }
  .admin-nav {
    overflow-x: auto;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3, .timeline { grid-template-columns: 1fr; }
}

/* Floating WhatsApp Chat Button */
.floating-chat {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-chat:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  color: #fff;
}
.floating-chat svg {
  width: 32px;
  height: 32px;
}
.floating-chat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid #25d366;
  animation: pulseChat 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
@keyframes pulseChat {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 860px) {
  .floating-chat {
    bottom: 1.8rem;
    right: 1.8rem;
    width: 54px;
    height: 54px;
  }
  .floating-chat svg {
    width: 28px;
    height: 28px;
  }
}

/* Custom Horizontal Service Cards (Mockup Style) */
.cards-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card-service {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(8, 20, 38, 0.72), rgba(4, 10, 20, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 145px;
}

.card-service:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12);
}

.card-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-service h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.card-service-cat {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.card-service-foot {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #a3b7d5;
  margin-top: 0.8rem;
}

.card-service-media {
  width: 44%;
  min-width: 110px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-service-consult {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  background: rgba(3, 8, 19, 0.88);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.25;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: normal;
  overflow-wrap: break-word;
}

.card-service:hover .btn-service-consult {
  background: var(--primary);
  color: #030813;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

@media (max-width: 1100px) {
  .cards-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cards-services-grid {
    grid-template-columns: 1fr;
  }
  .card-service {
    min-height: 130px;
  }
}

@media (max-width: 480px) {
  .hero { 
    padding: 2.5rem 0 2rem; 
  }
  .card-service {
    flex-direction: column;
  }
  .card-service-media {
    width: 100%;
    height: 150px;
  }
  .card-service-content {
    margin-top: 0.5rem;
  }
}

/* Testimonials Infinite Marquee Slider */
.testimonials-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.2rem 0;
}

/* Fading mask effect on edges */
.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.testimonials-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.testimonials-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollTestimonials 32s linear infinite;
}

.testimonials-marquee-wrapper:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  padding: 1.8rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-user-img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1.5px solid var(--primary);
  display: block;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-25% - 0.375rem)); }
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 290px;
    padding: 1.25rem;
  }
  .testimonials-marquee-wrapper::before,
  .testimonials-marquee-wrapper::after {
    width: 60px;
  }
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: modalFadeIn 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}

.modal-close:hover {
  color: #fff;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-100 { transition-delay: 100ms; }
.reveal.delay-200 { transition-delay: 200ms; }
.reveal.delay-300 { transition-delay: 300ms; }

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active {
  border-color: rgba(16, 185, 129, 0.4);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: #fff;
  user-select: none;
}
.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
