:root {
  --blue: #29abe2;
  --blue-dark: #1c85b8;
  --orange: #f7941d;
  --orange-dark: #e07b00;
  --ink: #0b0d12;
  --panel: #14171f;
  --panel-2: #191d27;
  --text: #f2f3f5;
  --muted: #b3b8c2;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-weight: 700; letter-spacing: 0.5px; }

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.glow-text {
  background: linear-gradient(90deg, var(--orange), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(247, 148, 29, 0.35);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(247, 148, 29, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--blue);
}

.btn-outline:hover { background: var(--blue); transform: translateY(-3px); }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-phone {
  font-weight: 600;
  color: var(--blue);
  font-size: 0.95rem;
}

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(247,148,29,0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(41,171,226,0.22), transparent 50%),
    var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.25), transparent 70%);
  top: -250px;
  right: -200px;
  filter: blur(10px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.4);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--blue);
}

.hero-stats div span { color: var(--muted); font-size: 0.85rem; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .glow-ring {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 40px 80px rgba(0,0,0,0.5);
}

.hero-visual .glow-ring::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--orange), var(--blue), var(--orange));
  opacity: 0.5;
  filter: blur(18px);
  z-index: -1;
  animation: spin 10s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-visual img { width: 78%; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }

.section-head .eyebrow { display: inline-flex; }

.section-head h2 { font-size: 2.4rem; margin-bottom: 14px; }

.section-head p { color: var(--muted); }

/* ---------- About ---------- */
.about {
  background: var(--panel);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(247,148,29,0.35), rgba(41,171,226,0.25) 60%, var(--panel-2));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-art img { width: 65%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); }

.about-copy h2 { font-size: 2.2rem; margin-bottom: 20px; }

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

.about-list { list-style: none; margin-top: 24px; display: grid; gap: 14px; }

.about-list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }

.check {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover { transform: translateY(-8px); border-color: rgba(247,148,29,0.4); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.service-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  width: 100%;
}

/* ---------- Gallery / Sun strip ---------- */
.strip {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--blue), var(--blue-dark));
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.strip-track span { opacity: 0.9; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hours / Location ---------- */
.info {
  background: var(--panel);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card {
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
}

.info-card h3 { font-size: 1.4rem; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span.day { color: var(--text); font-weight: 500; }
.hours-row.today span.day { color: var(--orange); }

.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-line .ic {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(41,171,226,0.15);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-line strong { display: block; }
.contact-line p, .contact-line a { color: var(--muted); font-size: 0.95rem; }
.contact-line a:hover { color: var(--orange); }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: linear-gradient(135deg, var(--orange), var(--blue)); transform: translateY(-3px); }

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(247,148,29,0.18), transparent 60%),
    var(--ink);
}

.cta h2 { font-size: 2.4rem; margin-bottom: 16px; }
.cta p { color: var(--muted); max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--panel-2);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 34px; }
.footer-links { display: flex; gap: 24px; list-style: none; color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--panel-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mobile-cta a.call {
  flex: 1;
  text-align: center;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}
.mobile-cta a.book {
  flex: 1;
  text-align: center;
  border: 2px solid var(--blue);
  padding: 10px;
  border-radius: 12px;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .info-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; max-width: 360px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.6rem; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .mobile-cta { display: flex; }
  section { padding: 70px 0; }
  body { padding-bottom: 68px; }
}

@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    background: var(--panel);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 24px; }
  .footer-grid { flex-direction: column; text-align: center; }
}
