/* ===========================
   Variables & Reset
=========================== */
:root {
  --cyan: #5ce1e6;
  --purple: #cb6ce6;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --text: #f0f0f0;
  --text-muted: #aaa;
  --radius: 10px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple); }

ul { list-style: none; }

/* ===========================
   Performance
=========================== */
img { max-width: 100%; display: block; content-visibility: auto; }

.gallery-section,
.services-detail,
.service-section,
.about-section,
.stats-band { content-visibility: auto; contain-intrinsic-size: 0 500px; }

.hero { will-change: transform; }

.svc-photo img,
.gallery-item img { will-change: transform; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
   Buttons
=========================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #0a0a0f;
}

.btn-primary:hover {
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(92,225,230,0.35);
}

.btn-secondary {
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--cyan);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ===========================
   Navbar
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92,225,230,0.1);
}

.nav-logo img { height: 90px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active { color: var(--cyan); }

.btn-nav {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #0a0a0f !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700 !important;
}

.btn-nav:hover { opacity: 0.85; color: #0a0a0f !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   Hero
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 60% 40%, rgba(203,108,230,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(92,225,230,0.15) 0%, transparent 55%),
              var(--bg);
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ===========================
   Page Hero (inner pages)
=========================== */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(203,108,230,0.12) 0%, transparent 60%), var(--bg);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

/* ===========================
   Services Preview (Home)
=========================== */
.services-preview {
  padding: 5rem 0;
  background: var(--bg2);
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--cyan);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--bg3);
  border: 1px solid rgba(92,225,230,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
}

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--cyan); }

.card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===========================
   CTA Band
=========================== */
.cta-band {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(92,225,230,0.08), rgba(203,108,230,0.08));
  border-top: 1px solid rgba(92,225,230,0.1);
  border-bottom: 1px solid rgba(203,108,230,0.1);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}

/* ===========================
   Services Detail
=========================== */
.services-detail { padding: 5rem 0; }

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(92,225,230,0.08);
}

.service-block:last-child { border-bottom: none; margin-bottom: 0; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-icon { font-size: 3rem; padding-top: 0.5rem; }

.service-text h2 { font-size: 1.75rem; color: var(--cyan); margin-bottom: 0.75rem; }

.service-text p { color: var(--text-muted); margin-bottom: 1rem; }

.service-text ul { padding-left: 1rem; }

.service-text li {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  list-style: disc;
}

/* ===========================
   Gallery
=========================== */
.gallery-section { padding: 4rem 0 5rem; }

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  background: var(--bg3);
  border: 1px solid rgba(92,225,230,0.2);
  color: var(--text-muted);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  transition: transform var(--transition);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; cursor: pointer; }

.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--bg3);
  border: 1px solid rgba(92,225,230,0.12);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  color: var(--text-muted);
}

.gallery-placeholder span { font-size: 0.85rem; }

.gallery-item.hidden { display: none; }

/* ===========================
   About
=========================== */
.about-section { padding: 5rem 0; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { font-size: 1.75rem; color: var(--cyan); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.about-list li { color: var(--text-muted); margin-bottom: 0.5rem; }

.about-logo img { border-radius: var(--radius); opacity: 0.9; }

.stats-band { padding: 4rem 0; background: var(--bg2); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { color: var(--text-muted); font-size: 0.95rem; }

/* ===========================
   Inquiry
=========================== */
.inquiry-section { padding: 4rem 0 6rem; }

.honeybook-placeholder {
  background: var(--bg3);
  border: 1px dashed rgba(92,225,230,0.3);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.honeybook-placeholder p { color: var(--text-muted); margin-bottom: 0.75rem; font-size: 1.1rem; }

/* ===========================
   Footer
=========================== */
footer {
  background: var(--bg2);
  border-top: 1px solid rgba(92,225,230,0.1);
  padding: 3rem 0;
  text-align: center;
}

footer img { margin: 0 auto 1rem; height: 100px; width: auto; }

footer p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.4rem; }

footer a { color: var(--cyan); }

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,15,0.97);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(92,225,230,0.1);
  }

  .nav-links.open { display: flex; }

  .btn-secondary { margin-left: 0; margin-top: 0.75rem; }

  .service-block, .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .about-content { grid-template-columns: 1fr; }
  .about-logo { display: block; }
  .about-logo img { width: 100%; border-radius: var(--radius); }

  .stats { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===========================
   SVG Icons
=========================== */
.icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.card-icon .icon { width: 2.75rem; height: 2.75rem; }

.service-header h2 { font-size: 1.75rem; color: var(--cyan); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.service-header h2 .icon { width: 2rem; height: 2rem; }

.about-list li { color: var(--text-muted); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem; }
.about-list li .icon-check { width: 1.1rem; height: 1.1rem; stroke: var(--cyan); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.footer-contact .icon-phone { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


.hero-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); margin-bottom: 2.5rem; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.cta-band p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; }

/* ===========================
   Service Sections (services page)
=========================== */
.service-section { padding: 5rem 0; }
.service-section.alt { background: var(--bg2); }

.service-header { margin-bottom: 2.5rem; }
.service-header h2 { font-size: 1.75rem; color: var(--cyan); margin-bottom: 0.75rem; }
.service-header p { color: var(--text-muted); max-width: 700px; margin-bottom: 1.25rem; }

.service-list { padding-left: 1.25rem; }
.service-list li { list-style: disc; color: var(--text-muted); margin-bottom: 0.35rem; }

.service-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.svc-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.svc-photo:hover img { transform: scale(1.04); }

/* ===========================
   Footer extras
=========================== */
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin: 0.5rem 0; }

.footer-contact a {
  color: var(--cyan);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact a:hover { color: var(--purple); }

.instagram-icon { width: 18px; height: 18px; vertical-align: middle; }

/* ===========================
   Lightbox
=========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(92,225,230,0.15);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--transition);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
