@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #08111f;
  --panel: #0f1f35;
  --nav: rgba(15, 31, 53, 0.9);
  --stroke: #1f2f46;
  --accent: #f5a524;
  --accent-strong: #ffad32;
  --accent-soft: rgba(245, 165, 36, 0.24);
  --muted: #9fb3c8;
  --text: #eaf1ff;
  --shadow: 0 20px 60px rgba(4, 12, 26, 0.35);
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(245, 165, 36, 0.16), transparent 28%),
              radial-gradient(circle at 80% 15%, rgba(245, 165, 36, 0.12), transparent 25%),
              radial-gradient(circle at 65% 70%, rgba(127, 209, 174, 0.07), transparent 25%),
              var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero {
  max-width: 1180px;
  margin: 24px auto 40px;
  padding: 72px 64px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-image: linear-gradient(135deg, rgba(8, 17, 31, 0.78), rgba(12, 29, 53, 0.86)),
                    url('/images/img00.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 165, 36, 0.24), transparent 40%),
              radial-gradient(circle at 20% 40%, rgba(255, 173, 50, 0.15), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
}

.hero h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--muted);
  font-weight: 600;
}

.hero p {
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #0b1627;
  box-shadow: 0 14px 34px rgba(245, 165, 36, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(245, 165, 36, 0.4);
}

.btn-ghost {
  border: 1px solid var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.about {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 36px 32px;
  margin: 0 auto 44px;
  max-width: 1180px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 173, 50, 0.12), transparent 45%);
  pointer-events: none;
}

.about h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--accent-strong);
}

.about p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-strong);
  color: #0b1627;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  font-weight: 700;
}

.gallery-header {
  max-width: 1180px;
  margin: 12px auto 10px;
  padding: 0 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.gallery-header h3 {
  font-size: 26px;
  color: var(--accent-strong);
}

.gallery-header p {
  color: var(--muted);
}

.slideshow-container {
  max-width: 1180px;
  aspect-ratio: 16 / 9;
  position: relative;
  margin: 18px auto 8px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--accent-soft);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.mySlides {
  display: none;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px 12px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
  user-select: none;
}

.next {
  right: 16px;
}

.prev {
  left: 16px;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.55);
}

.numbertext {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 700;
}

.dot-row {
  text-align: center;
  margin: 10px 0 22px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: var(--accent-soft);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  border: 1px solid var(--accent);
}

.active, .dot:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

.fade {
  animation-name: fade;
  animation-duration: 1.1s;
}

@keyframes fade {
  from {opacity: 0.5;}
  to {opacity: 1;}
}

.feedback-wrap {
  max-width: 1180px;
  margin: 40px auto 56px;
  padding: 0 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.testimonials {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-top: 4px solid var(--accent-strong);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.testimonials h3 {
  margin-bottom: 6px;
  font-size: 20px;
  color: var(--accent-strong);
}

.testimonials p {
  margin-bottom: 6px;
  color: var(--muted);
}

.footer {
  background: #0a1423;
  color: var(--text);
  padding: 28px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  max-width: 1180px;
  margin: 0 auto 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 30%, rgba(255, 173, 50, 0.16), transparent 40%);
  pointer-events: none;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stroke);
}

.footer-bottom {
  border-bottom: none;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.35rem;
  font-weight: 600;
}

.links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.legal-shell {
  max-width: 1180px;
  margin: 28px auto 56px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-hero {
  background: linear-gradient(135deg, rgba(15, 31, 53, 0.92), rgba(10, 20, 35, 0.95));
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 4px 0 8px;
}

.legal-hero p {
  color: var(--muted);
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 165, 36, 0.4);
  border-radius: 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.legal-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-left: 4px solid var(--accent-strong);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: var(--shadow);
}

.legal-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.legal-card p {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-list {
  margin: 6px 0 4px 18px;
  color: var(--muted);
}

.legal-list li {
  margin-bottom: 8px;
}

.thankyou-shell {
  max-width: 960px;
  margin: 36px auto 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.thankyou-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thankyou-card h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}

.thankyou-card p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero {
    padding: 56px 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    margin: 18px auto 32px;
    padding: 44px 28px;
  }

  .slideshow-container {
    border-radius: 16px;
  }

  .prev, .next {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .next { right: 14px; }
  .prev { left: 14px; }
}
