/* ═══════════════════════════════════════
   ALYSSA PHOTOS — DARK MODE v2
   css/styles.css
   
   Palette:
   --sky: #5eb8e4    (primary accent)
   --sky-dark: #3a9fd4
   --dark: #0e1117   (page background)
   --dark2: #151a22  (section alt bg)
   --card: #1a1f28   (card surfaces)
   --border: #252c38
   --text: #e8eaf0   (body text)
   --muted: #7d8694  (secondary text)
   --sage: #8fc9a0   (green accent)
   --peach: #e4a87a  (warm accent)
   --lavender: #a89cd4 (purple accent)
   ═══════════════════════════════════════ */

:root {
  --sky: #5eb8e4;
  --sky-dark: #3a9fd4;
  --dark: #0e1117;
  --dark2: #151a22;
  --card: #1a1f28;
  --border: #252c38;
  --text: #e8eaf0;
  --muted: #7d8694;
  --white: #ffffff;
  --sage: #8fc9a0;
  --peach: #e4a87a;
  --lavender: #a89cd4;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}


/* ══════════════════
   NAVIGATION
   ══════════════════ */

.dm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  transition: all 0.4s;
}

.dm-nav.scrolled {
  background: rgba(14, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

/* Logo — white on hero, sky blue when scrolled */
.dm-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--white);
  cursor: pointer; text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  transition: color 0.4s;
}
.dm-nav.scrolled .dm-logo { color: var(--sky); text-shadow: none; }
.dm-logo span { font-weight: 400; color: rgba(255, 255, 255, 0.5); transition: color 0.4s; }
.dm-nav.scrolled .dm-logo span { color: var(--muted); }

/* Nav links — semi-transparent white on hero, muted when scrolled */
.dm-nav-links { display: flex; gap: 28px; align-items: center; }
.dm-nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none; cursor: pointer;
  transition: color 0.3s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.dm-nav.scrolled .dm-nav-links a { color: var(--muted); text-shadow: none; }
.dm-nav-links a:hover { color: var(--sky); }

/* CTA button in nav */
.dm-nav-cta {
  padding: 10px 24px !important;
  background: var(--sky) !important;
  color: var(--dark) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
  text-shadow: none !important;
}
.dm-nav-cta:hover {
  background: var(--sky-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(94, 184, 228, 0.25);
}

/* Hamburger toggle — hidden on desktop, shown on mobile.
   Three bars animate into an X when aria-expanded="true". */
.dm-nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  z-index: 110;
}
.dm-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s, background 0.3s;
}
.dm-nav.scrolled .dm-nav-toggle span { background: var(--text); }
.dm-nav-toggle[aria-expanded="true"] span { background: var(--text); }
.dm-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dm-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.dm-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Lock scroll when mobile menu is open */
body.dm-nav-open { overflow: hidden; }


/* ═══════════════════════════════════
   HERO — Full-bleed image slideshow
   ═══════════════════════════════════ */

.dm-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each slide — absolutely positioned, cross-fade via opacity */
.dm-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.dm-hero-slide.active { opacity: 1; }

/* Slide background — pulled back; subtle room for the slow zoom */
.dm-hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: 50% 50%;
  /* Long, linear zoom. The fade-out (1.4s) is far shorter than the
     zoom unwind, so the outgoing slide holds its zoomed state while
     fading — no snap-back jitter between slides. */
  transition: transform 8s linear;
  will-change: transform;
}
.dm-hero-slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gentle zoom on the active slide */
.dm-hero-slide.active .dm-hero-slide-bg {
  transform: scale(1.05);
}

/* Dark gradient overlay for text legibility */
.dm-hero-overlay {
  position: absolute; inset: 0; z-index: 5;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(14, 17, 23, 0.5) 0%,
    rgba(14, 17, 23, 0.15) 35%,
    rgba(14, 17, 23, 0.15) 55%,
    rgba(14, 17, 23, 0.7) 100%
  );
}

/* Hero content — centered headline + CTA */
.dm-hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.dm-hero-content-inner {
  animation: heroIn 1.2s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Camera-lens glass pill around hero text.
   Effect is layered:
   - backdrop-filter blur+saturate  → the frosted-lens refraction
   - radial highlight (::before)    → top-light glint / dome reflection
   - inner white rim + outer shadow → glass edge thickness
   The result reads as a convex lens element in front of the photo,
   not a flat frosted panel. */
.dm-hero-glass {
  position: relative;
  max-width: 620px;
  padding: 44px 52px 40px;
  margin-bottom: 36px;
  border-radius: 36px;
  isolation: isolate;
  background:
    linear-gradient(135deg,
      rgba(22, 26, 34, 0.62) 0%,
      rgba(22, 26, 34, 0.52) 45%,
      rgba(30, 50, 70, 0.55) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    inset 0 0 40px rgba(255, 255, 255, 0.04);
}
/* Top-dome lens highlight — the soft glint that sells the "glass" read */
.dm-hero-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% -10%,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.00) 55%),
    radial-gradient(80% 50% at 50% 115%,
      rgba(94, 184, 228, 0.10) 0%,
      rgba(94, 184, 228, 0.00) 60%);
  z-index: -1;
}

/* Reset title/sub spacing inside the glass pill */
.dm-hero-glass .dm-hero-title { margin-bottom: 14px; }
.dm-hero-glass .dm-hero-sub   { margin: 0 auto; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dm-hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.dm-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky), var(--sage));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(94, 184, 228, 0.3));
}

.dm-hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.dm-hero-cta {
  padding: 18px 48px;
  background: var(--sky); color: var(--dark);
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: all 0.3s;
}
.dm-hero-cta:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(94, 184, 228, 0.3);
}

/* Slide indicator dots */
.dm-hero-dots {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 12; display: flex; gap: 10px;
}
.dm-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer; transition: all 0.4s;
  border: none; padding: 0;
}
.dm-hero-dot.active {
  background: var(--sky);
  width: 28px; border-radius: 4px;
}

/* Current slide caption — bottom left */
.dm-hero-caption {
  position: absolute; bottom: 32px; left: 48px;
  z-index: 12; transition: opacity 0.5s;
}
.dm-hero-caption-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.dm-hero-caption-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 2px; letter-spacing: 1px;
}


/* ══════════════════
   SHARED SECTION STYLES
   ══════════════════ */

.dm-section { padding: 100px 48px; max-width: 1300px; margin: 0 auto; }

.dm-eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 12px;
}

.dm-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; margin-bottom: 16px;
}
.dm-title em { font-style: normal; color: var(--sky); }

.dm-desc {
  font-size: 15px; color: var(--muted);
  max-width: 560px; line-height: 1.8;
}

.dm-divider {
  width: 40px; height: 3px;
  background: var(--sky); border-radius: 2px;
  margin: 20px 0 0; opacity: 0.5;
}


/* ══════════════════
   ABOUT
   ══════════════════ */

.dm-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 48px;
}

.dm-about-image {
  aspect-ratio: 4/5; border-radius: 20px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark2), #1a2530, #182420);
  border: 1px solid var(--border);
}
.dm-about-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* Decorative corner accent — sits above the image via z-index */
.dm-about-image::before {
  content: '';
  position: absolute; top: -8px; left: -8px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--sky);
  border-left: 3px solid var(--sky);
  border-radius: 12px 0 0 0; opacity: 0.3;
  z-index: 1; pointer-events: none;
}

.dm-stats-row { display: flex; gap: 40px; margin-top: 32px; }
.dm-stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px; font-weight: 700; color: var(--sky);
}
.dm-stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 500; }


/* ══════════════════
   SERVICES
   ══════════════════ */

.dm-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}

.dm-service-card {
  padding: 32px 24px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; transition: all 0.4s; cursor: pointer;
}
.dm-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  border-color: rgba(94, 184, 228, 0.2);
}

.dm-service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.dm-service-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
}
.dm-service-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }


/* ══════════════════
   PORTFOLIO
   ══════════════════ */

.dm-filters { display: flex; gap: 12px; margin: 32px 0; flex-wrap: wrap; }

.dm-filter-btn {
  font-size: 13px; font-weight: 600; padding: 10px 22px;
  border: 2px solid var(--border); background: transparent;
  color: var(--muted); border-radius: 50px;
  cursor: pointer; transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}
.dm-filter-btn.active,
.dm-filter-btn:hover {
  border-color: var(--sky); color: var(--sky);
  background: rgba(94, 184, 228, 0.06);
}

.dm-port-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.dm-port-item {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  cursor: pointer; border-radius: 14px;
  border: 1px solid var(--border); transition: all 0.4s;
}
.dm-port-item:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(94, 184, 228, 0.3);
}

.dm-port-item-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s;
}
.dm-port-item:hover .dm-port-item-bg { transform: scale(1.05); }

.dm-port-ph {
  font-size: 10px; letter-spacing: 2px; color: var(--muted);
  opacity: 0.25; text-align: center; font-weight: 600;
  text-transform: uppercase;
}

.dm-port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14, 17, 23, 0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.4s; border-radius: 14px;
}
.dm-port-item:hover .dm-port-overlay { opacity: 1; }

.dm-port-label { font-size: 14px; font-weight: 600; color: var(--white); }
.dm-port-cat {
  font-size: 11px; color: rgba(255, 255, 255, 0.6);
  margin-top: 2px; font-weight: 500; text-transform: capitalize;
}


/* ══════════════════
   PACKAGES / PRICING
   ══════════════════ */

.dm-packages-section {
  background: var(--dark2); padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dm-packages-inner { max-width: 1300px; margin: 0 auto; }

.dm-pkg-tabs { display: flex; gap: 12px; margin: 32px 0 40px; flex-wrap: wrap; }

.dm-pkg-tab {
  font-size: 13px; font-weight: 600; padding: 10px 24px;
  border: 2px solid var(--border); background: transparent;
  color: var(--muted); border-radius: 50px;
  cursor: pointer; transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}
.dm-pkg-tab.active {
  border-color: var(--sky); color: var(--sky);
  background: rgba(94, 184, 228, 0.06);
}

.dm-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.dm-pkg-card {
  padding: 36px 28px; background: var(--dark);
  border: 2px solid var(--border); border-radius: 20px;
  position: relative; transition: all 0.4s;
}
.dm-pkg-card.popular {
  border-color: var(--sky); background: var(--card);
  box-shadow: 0 8px 36px rgba(94, 184, 228, 0.08);
}

.dm-pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sky); color: var(--dark);
  padding: 6px 20px; border-radius: 50px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
}

.dm-pkg-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 4px; margin-top: 8px;
}
.dm-pkg-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--sky);
}
.dm-pkg-price span {
  font-size: 14px; color: var(--muted);
  font-family: 'Nunito', sans-serif; font-weight: 500;
}

.dm-pkg-features { list-style: none; margin-top: 24px; }
.dm-pkg-features li {
  font-size: 14px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex; align-items: center; gap: 10px;
}
.dm-pkg-features li::before { content: '✓'; color: var(--sage); font-weight: 700; }

.dm-pkg-btn {
  width: 100%; margin-top: 28px; padding: 14px;
  border: 2px solid var(--border); background: transparent;
  color: var(--text); font-size: 14px; font-weight: 600;
  border-radius: 50px; cursor: pointer; transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
}
.dm-pkg-card.popular .dm-pkg-btn { background: var(--sky); border-color: var(--sky); color: var(--dark); }
.dm-pkg-btn:hover { background: var(--sky); color: var(--dark); border-color: var(--sky); }


/* ══════════════════
   CLIENT GALLERY
   ══════════════════ */

.dm-gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-top: 48px; align-items: start;
}

.dm-form-box {
  padding: 36px; background: var(--card);
  border: 1px solid var(--border); border-radius: 20px;
}
.dm-form-box h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 20px;
}
.dm-form-group { margin-bottom: 16px; }
.dm-form-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--muted); margin-bottom: 6px;
}
.dm-form-input {
  width: 100%; padding: 14px 16px;
  background: var(--dark); border: 2px solid var(--border);
  border-radius: 12px; color: var(--text);
  font-size: 14px; font-family: 'Nunito', sans-serif;
  transition: border-color 0.3s; outline: none;
}
.dm-form-input:focus { border-color: var(--sky); }

.dm-form-btn {
  width: 100%; padding: 16px;
  background: var(--sky); border: none;
  color: var(--dark); font-size: 14px; font-weight: 700;
  border-radius: 50px; cursor: pointer;
  font-family: 'Nunito', sans-serif; transition: all 0.3s;
}
.dm-form-btn:hover { background: var(--sky-dark); }

.dm-info h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.dm-info p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }

.dm-steps { display: flex; flex-direction: column; gap: 16px; }
.dm-step { display: flex; gap: 14px; align-items: flex-start; }
.dm-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(94, 184, 228, 0.1); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.dm-step-text { font-size: 14px; color: var(--muted); line-height: 1.6; }
.dm-step-text strong { color: var(--text); font-weight: 600; }

/* Mock gallery (shown after PIN entry) */
.dm-mock-gallery {
  margin-top: 36px; padding: 28px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px;
  display: none; /* hidden until gallery access */
}
.dm-mock-gallery.visible { display: block; animation: dmFade 0.5s ease; }
@keyframes dmFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dm-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.dm-mock-header h3 { font-family: 'Quicksand', sans-serif; font-size: 18px; font-weight: 700; }
.dm-mock-meta { font-size: 12px; color: var(--muted); }
.dm-mock-share {
  font-size: 12px; color: var(--sky); font-weight: 600;
  padding: 6px 14px; background: rgba(94, 184, 228, 0.08); border-radius: 50px;
}

.dm-mock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dm-mock-thumb {
  aspect-ratio: 1; border-radius: 10px; position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; overflow: hidden;
  border: 1px solid var(--border);
}
.dm-mock-thumb:hover { border-color: var(--sky); transform: scale(1.03); }
.dm-mock-thumb span { font-size: 10px; color: var(--muted); opacity: 0.25; font-weight: 600; }
.dm-mock-wm {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 9px; color: var(--sky);
  opacity: 0.1; font-weight: 700; letter-spacing: 3px;
  pointer-events: none;
}

.dm-mock-order {
  margin-top: 20px; padding: 18px 24px;
  background: rgba(94, 184, 228, 0.06);
  border: 1px solid rgba(94, 184, 228, 0.12);
  border-radius: 14px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.dm-mock-order p { font-size: 13px; }
.dm-mock-order button {
  padding: 10px 24px; background: var(--sky); border: none;
  color: var(--dark); font-size: 13px; font-weight: 700;
  border-radius: 50px; cursor: pointer; font-family: 'Nunito', sans-serif;
}


/* ══════════════════
   TESTIMONIALS
   ══════════════════ */

.dm-test-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.dm-test-card {
  padding: 32px; background: var(--card);
  border: 1px solid var(--border); border-radius: 16px;
  transition: all 0.3s;
}
.dm-test-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
  border-color: rgba(94, 184, 228, 0.15);
}
.dm-test-stars { color: #f0c040; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.dm-test-quote { font-size: 15px; font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.dm-test-name { font-size: 14px; font-weight: 700; }
.dm-test-role { font-size: 12px; color: var(--muted); margin-top: 2px; }


/* ══════════════════
   CONTACT
   ══════════════════ */

.dm-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-top: 48px;
}
.dm-contact-details h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 26px; font-weight: 700; margin-bottom: 20px;
}
.dm-contact-item { margin-bottom: 20px; }
.dm-contact-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sky); margin-bottom: 4px;
}
.dm-contact-value { font-size: 15px; line-height: 1.6; }

.dm-socials { display: flex; gap: 10px; margin-top: 28px; }
.dm-social {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none;
}
.dm-social:hover {
  border-color: var(--sky); color: var(--sky);
  background: rgba(94, 184, 228, 0.06);
}


/* ══════════════════
   FOOTER
   ══════════════════ */

.dm-footer {
  padding: 36px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}


/* ══════════════════
   ADMIN PANEL
   ══════════════════ */

.dm-admin-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 17, 23, 0.97);
  backdrop-filter: blur(20px);
  overflow-y: auto;
  display: none;
}
.dm-admin-overlay.visible { display: block; animation: dmFade 0.3s ease; }

.dm-admin-container { max-width: 1100px; margin: 0 auto; padding: 40px 48px; }
.dm-admin-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.dm-admin-header h2 { font-family: 'Quicksand', sans-serif; font-size: 26px; font-weight: 700; }
.dm-admin-close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border); background: transparent;
  color: var(--muted); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.dm-admin-close:hover { border-color: var(--sky); color: var(--sky); }

.dm-admin-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.dm-admin-tab {
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  border: 2px solid var(--border); border-radius: 50px;
  background: transparent; color: var(--muted);
  cursor: pointer; font-family: 'Nunito', sans-serif; transition: all 0.3s;
}
.dm-admin-tab.active { background: var(--sky); color: var(--dark); border-color: var(--sky); }

.dm-admin-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; margin-bottom: 16px;
}
.dm-admin-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
}

.dm-admin-table { width: 100%; border-collapse: collapse; }
.dm-admin-table th {
  text-align: left; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--sky); padding: 12px 14px;
  border-bottom: 2px solid var(--border);
}
.dm-admin-table td {
  font-size: 13px; padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dm-status {
  display: inline-block; padding: 4px 12px;
  border-radius: 50px; font-size: 11px; font-weight: 700;
}
.dm-status-ready { background: rgba(143, 201, 160, 0.15); color: var(--sage); }
.dm-status-processing { background: rgba(94, 184, 228, 0.12); color: var(--sky); }

.dm-admin-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.dm-admin-stat {
  padding: 24px; background: var(--dark2);
  border: 1px solid var(--border); border-radius: 14px; text-align: center;
}
.dm-admin-stat .dm-stat-num { font-size: 28px; }


/* ══════════════════
   RESPONSIVE
   ══════════════════ */

@media (max-width: 1024px) {
  .dm-services-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-port-grid     { grid-template-columns: repeat(2, 1fr); }
  .dm-pkg-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .dm-nav          { padding: 14px 24px; }

  /* Show hamburger, convert nav links into a full-screen overlay */
  .dm-nav-toggle   { display: flex; }
  .dm-nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 96px 28px 40px;
    background: rgba(14, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
    overflow-y: auto;
  }
  .dm-nav-links.open { transform: translateX(0); }
  .dm-nav-links a {
    color: var(--text);
    text-shadow: none;
    font-size: 16px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }
  .dm-nav-links a:last-child { border-bottom: none; }
  .dm-nav-cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 24px !important;
    font-size: 14px !important;
  }

  .dm-section      { padding: 72px 24px; }
  .dm-packages-section { padding: 72px 24px; }
  .dm-about-grid,
  .dm-gallery-grid,
  .dm-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .dm-services-grid,
  .dm-port-grid,
  .dm-test-grid    { grid-template-columns: 1fr; }
  .dm-stats-row    { gap: 20px; flex-wrap: wrap; }
  .dm-mock-grid    { grid-template-columns: repeat(3, 1fr); }
  .dm-admin-stats  { grid-template-columns: repeat(2, 1fr); }
  .dm-hero-caption { display: none; }
  .dm-hero-glass   { padding: 32px 28px; border-radius: 28px; margin-bottom: 28px; }
}
