/* ============================================================
   9T9 CYBER — MAIN STYLESHEET
   ============================================================ */

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.15; }
}

.glow-orb {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: float-slow 15s ease-in-out infinite;
}
.orb-1 { top: -100px; left: -150px; background: var(--clr-amber); }
.orb-2 { top: 40%; right: -200px; background: var(--clr-sage); animation-delay: -7s; }
.orb-3 { bottom: -100px; left: 10%; background: var(--clr-amber); animation-duration: 20s; }

:root {
  --clr-bg:       #faf8f4;
  --clr-surface:  #ffffff;
  --clr-dark:     #1c1a17;
  --clr-mid:      #3d3a34;
  --clr-muted:    #7a7368;
  --clr-amber:    #d4860a;
  --clr-amber-lt: #f5a623;
  --clr-amber-bg: #fff8ec;
  --clr-sage:     #5a7a5e;
  --clr-glow:     rgba(212, 134, 10, 0.15);
  --clr-border:   #e8e2d9;
  --clr-card:     #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm: 0 2px 12px rgba(28,26,23,0.07);
  --shadow-md: 0 8px 32px rgba(28,26,23,0.10);
  --shadow-lg: 0 20px 60px rgba(28,26,23,0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode {
  --clr-bg:       #0f0e0c;
  --clr-surface:  #12110e;
  --clr-dark:     #080706;
  --clr-dark-text:#f5f2ed;
  --clr-mid:      #d1ccc3;
  --clr-muted:    #a39d94;
  --clr-border:   #2a2723;
  --clr-card:     #1c1a17;
  --clr-amber-bg: #2a1f0a;
  /* Global text override so nothing is dark-on-dark */
  color: #e8e4dc;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: 20px;
}
body.dark-mode .section-title { color: var(--clr-dark-text); }
.section-title em {
  font-style: italic;
  color: var(--clr-amber);
}
.section-title.centered, .section-sub.centered { text-align: center; }
.section-sub {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin-bottom: 52px;
}
.section-sub.centered { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-amber);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(212,134,10,0.28);
}
.btn-primary:hover {
  background: #b87108;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,134,10,0.38);
}
.btn-primary.full-width { width: 100%; justify-content: center; margin-top: 20px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--clr-dark);
  color: var(--clr-dark);
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--clr-dark);
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-amber);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--clr-amber); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Shared nav icon button base ── */
.wa-nav-btn,
.tt-nav-btn,
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* The sliding fill layer */
.wa-nav-btn::before,
.tt-nav-btn::before,
.nav-cta::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}

/* Slide fill up on hover */
.wa-nav-btn:hover::before,
.tt-nav-btn:hover::before,
.nav-cta:hover::before { top: 0; }

/* Lift effect on hover */
.wa-nav-btn:hover,
.tt-nav-btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* SVG icons sit above the fill layer */
.wa-nav-btn svg,
.tt-nav-btn svg,
.nav-cta svg {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}
.wa-nav-btn:hover svg,
.tt-nav-btn:hover svg,
.nav-cta:hover svg {
  transform: rotateY(360deg);
}

/* Text sits above fill layer */
.wa-nav-btn .btn-text,
.tt-nav-btn .btn-text,
.nav-cta .btn-text,
.nav-cta .phone-icon {
  position: relative;
  z-index: 2;
}

/* ── Individual brand colors ── */
.tt-nav-btn {
  background: #010101;
}
.tt-nav-btn::before {
  background: #2f2f2f;   /* slightly lighter for variety */
}

.wa-nav-btn {
  background: #25d366;
}
.wa-nav-btn::before {
  background: #128C7E;   /* WhatsApp dark teal */
}

.nav-cta {
  background: var(--clr-amber);
}
.nav-cta::before {
  background: #8a4e00;   /* deep amber/bronze */
}


/* ===== THEME TOGGLE ===== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--clr-dark);
  transition: all var(--transition);
  border: 1px solid transparent;
}
body.dark-mode .theme-toggle {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
}
.theme-toggle:hover {
  background: var(--clr-amber-bg);
  color: var(--clr-amber);
}
.theme-toggle .moon-icon { display: none; }
.theme-toggle .sun-icon { display: block; }

body.dark-mode .theme-toggle .moon-icon { display: block; }
body.dark-mode .theme-toggle .sun-icon { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,134,10,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(90,122,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: 140px;
  right: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(212,134,10,0.05);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-content {
  max-width: 1180px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-amber);
  background: var(--clr-amber-bg);
  border: 1px solid rgba(212,134,10,0.2);
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-dark);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--clr-amber);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-chips span {
  font-size: 0.82rem;
  color: var(--clr-sage);
  background: rgba(90,122,94,0.08);
  border: 1px solid rgba(90,122,94,0.2);
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-weight: 500;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  height: 440px;
  width: 100%;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 60px;
  width: 250px;
  height: 250px;
  background: var(--clr-amber);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: 200px;
  height: 200px;
  background: var(--clr-sage);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  z-index: 0;
}
.hero-card {
  position: absolute;
  background: linear-gradient(135deg, var(--clr-amber) 0%, #ed970e 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px rgba(212, 134, 10, 0.3);
  padding: 24px;
  border: none;
  z-index: 12;
  color: #fff;
}
.hero-card-1 {
  top: 20px;
  right: 20px;
  width: 200px;
  text-align: center;
  animation: float1 6s ease-in-out infinite;
}
.hero-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin: 0 auto 12px;
}
.hero-card-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero-card-2 {
  top: 180px;
  left: -10px;
  animation: float2 7s ease-in-out infinite;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-card-3 {
  bottom: 0px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  animation: float3 5.5s ease-in-out infinite;
}
.clock-icon { display: flex; align-items: center; }
.hero-card-3 p { font-size: 0.88rem; font-weight: 600; color: #fff; line-height: 1.4; }
.hero-card-3 small { font-weight: 500; color: rgba(255, 255, 255, 0.8); }

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  animation: fadeIn 1.5s 1s both;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--clr-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 36px; }
  50% { opacity: 0.4; height: 24px; }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--clr-surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p {
  color: var(--clr-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-text strong { color: var(--clr-dark); }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--clr-border);
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hi-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--clr-amber-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-amber);
  font-weight: 600;
  margin-bottom: 2px;
}
.highlight-item p { margin: 0; font-size: 0.95rem; color: var(--clr-dark); }
body.dark-mode .highlight-item p { color: var(--clr-mid); }

.about-image-stack {
  position: relative;
}


.about-badge-float {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--clr-amber);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
  z-index: 10;
  white-space: nowrap;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--clr-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.service-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  /* Transition shared with reveal system */
  transition: opacity 0.6s ease, transform 0.7s ease, box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(212, 134, 10, 0.18);
  border-color: var(--clr-amber);
}

.service-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,134,10,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body {
  padding: 20px;
}
.service-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
body.dark-mode .service-body h3 { color: var(--clr-dark-text); }
.service-body p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.service-preview {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
.service-card:hover .service-preview,
.service-card.expanded .service-preview {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}
.preview-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.preview-steps li {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  transform: translateY(10px);
  transition: all 0.4s ease;
  opacity: 0;
}
.service-card:hover .preview-steps li,
.service-card.expanded .preview-steps li {
  transform: translateY(0);
  opacity: 1;
}
.service-card:hover .preview-steps li:nth-child(1) { transition-delay: 0.1s; }
.service-card:hover .preview-steps li:nth-child(2) { transition-delay: 0.2s; }
.service-card:hover .preview-steps li:nth-child(3) { transition-delay: 0.3s; }
.service-card.expanded .preview-steps li:nth-child(1) { transition-delay: 0.1s; }
.service-card.expanded .preview-steps li:nth-child(2) { transition-delay: 0.2s; }
.service-card.expanded .preview-steps li:nth-child(3) { transition-delay: 0.3s; }

.preview-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-amber);
  font-weight: 700;
}



.services-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-amber-bg);
  border: 1px solid rgba(212,134,10,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.notice-icon { font-size: 1.3rem; flex-shrink: 0; }
.services-notice p { font-size: 0.9rem; color: var(--clr-mid); }

/* ===== HOURS + CONTACT ===== */
.hours-contact {
  padding: 100px 0;
  background: var(--clr-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hours-contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hours-contact .section-label { color: var(--clr-amber-lt); }
.hours-contact .section-title { color: #fff; }
body.dark-mode .hours-contact .section-title { color: var(--clr-dark-text); }

.hours-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 24px;
  margin-bottom: 28px;
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hours-row .day { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
body.dark-mode .hours-row .day { color: var(--clr-muted); }
.hours-row .time {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-amber-lt);
}
.hours-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}
.hours-note { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
body.dark-mode .hours-note { color: var(--clr-muted); }

.hours-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}
.clock-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--clr-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  animation: clockPulse 3s ease-in-out infinite;
}
@keyframes clockPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}
.hours-visual p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
body.dark-mode .hours-visual p { color: var(--clr-muted); }

/* ===== FLOATING ACTION BUTTONS PULSE ===== */
@keyframes pulse-amber {
  0% { box-shadow: 0 0 0 0 rgba(212, 134, 10, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 134, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 134, 10, 0); }
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Pulse animations kept for other elements */

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(212,134,10,0.5);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(212,134,10,0.15);
}
.contact-card-primary {
  border-color: var(--clr-amber);
  background: rgba(212,134,10,0.12);
}
.cc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-card strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-amber-lt);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); word-break: break-word; }
body.dark-mode .contact-card p { color: var(--clr-muted); }

.hours-contact .btn-primary { margin-top: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: #111009;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  height: 56px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-amber-lt);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--clr-amber); }

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--clr-amber);
  border-color: var(--clr-amber);
  transform: translateY(-3px);
  color: #fff;
}

.footer-links h4,
.footer-services h4 {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-amber-lt); }
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-services span { font-size: 0.83rem; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.78rem;
  opacity: 0.45;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CONTACT FORM ===== */
/* ===== CONTACT CTA ===== */
.contact-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.02);
}
.cta-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-amber-lt);
  margin-bottom: 16px;
}
body.dark-mode .cta-title { color: var(--clr-amber-lt); }
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
body.dark-mode .cta-desc { color: var(--clr-muted); }
.contact-cta .btn-primary {
  max-width: 320px;
  margin-top: 0;
}


/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* Stagger children when parent reveals */
.reveal.active > .reveal { transition-delay: 0.1s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-text-col { align-items: flex-start; }
  .hero { min-height: auto; padding-top: 100px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hc-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: var(--clr-bg); flex-direction: column; padding: 24px; gap: 20px; box-shadow: var(--shadow-md); border-top: 1px solid var(--clr-border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-actions .btn-text { display: none; }
  .wa-nav-btn, .tt-nav-btn, .nav-cta { padding: 0; width: 42px; height: 42px; justify-content: center; border-radius: 50%; flex-shrink: 0; }
  .nav-actions { gap: 8px; }
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-logo img { height: 38px; }

  .services-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ===== MAP BLOCK ===== */
.map-block {
  margin-top: 2rem;
  text-align: center;
}

.map-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  color: var(--clr-dark);
}
.dark-mode .map-block h3 { color: var(--clr-dark-text); }

.map-block iframe {
  max-width: 100%;
  height: auto;
  min-height: 300px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.map-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
}

@media (max-width: 768px) {
  .map-block iframe {
    height: 250px;
  }
}

/* ===== OWNER CARD IN ABOUT SECTION ===== */
.about-owner-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.owner-photo-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.owner-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-owner-card:hover .owner-photo {
  transform: scale(1.04);
}

/* ===== PREMIUM HOURS BLOCK ===== */
.premium-hours {
  position: relative;
  background: #181614; /* Consistently dark */
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  height: 100%;
}
.dark-mode .premium-hours { background: var(--clr-surface); }
.hours-glow-orb {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--clr-amber);
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
  z-index: 0;
}
.hours-content {
  position: relative;
  z-index: 1;
}
.hours-hero-svg {
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.4));
  animation: float2 6s ease-in-out infinite;
}
.premium-hours h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-hours p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.owner-info {
  padding: 20px 24px 24px;
  background: var(--clr-card);
}

.owner-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 4px;
}
.dark-mode .owner-name { color: var(--clr-dark-text); }

.owner-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-amber);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.owner-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin: 0;
}
.dark-mode .owner-desc { color: var(--clr-muted); }

/* SVG icons in highlights */
.hi-svg-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

/* SVG icons in contact cards */
.cc-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-amber-bg);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Owner photo in contact card */
.cc-owner-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--clr-amber);
  flex-shrink: 0;
}

