:root {
  --color-white: #ffffff;
  --color-silver: #c4c4c4;
  --color-black: #000000;
  --color-dark: #080808;

  --font-primary: "Bebas Neue", sans-serif;
  --font-secondary: "Questrial", sans-serif;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition-fast: 0.3s var(--ease-out-expo);
  --transition-medium: 0.6s var(--ease-out-expo);
  --transition-slow: 1s var(--ease-out-expo);
}

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

/* --- Base & Scroll --- */
html {
  font-size: 16px;
  /* Disable smooth scroll here if using custom JS Lerp, otherwise keep it */
  scroll-behavior: auto; /* Vanilla JS will handle smooth anchors */
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-dark);
  color: var(--color-silver);
  overflow-x: hidden;
  /* Remove scrollbar for cleaner look if desired, but keep for usability */
}

/* Hide scrollbar for a seamless editorial look */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-silver);
  border-radius: 10px;
}

/* --- Noise Overlay --- */
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* --- Custom Cursor --- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s,
    opacity 0.2s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    opacity 0.3s;
}

/* Cursor Hover States */
.cursor-dot.active {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  mix-blend-mode: difference;
}
.cursor-outline.active {
  width: 60px;
  height: 60px;
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
}

/* --- Typography Utilities --- */
h1,
h2,
h3,
h4,
.font-primary {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-silver);
  transition: var(--transition-medium);
}

.outline-text:hover {
  color: var(--color-white);
  -webkit-text-stroke: 1px transparent;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.4s var(--ease-out-expo);
}
.navbar.scrolled {
  background-color: var(--color-black);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-white);
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.menu-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  text-decoration: none;
  color: var(--color-white);
  border: 1px solid var(--color-silver);
  padding: 0.8rem 1.5rem;
  border-radius: 30px; /* Pill shaped for premium feel */
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
}

.btn-primary span {
  position: relative;
  z-index: 2;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transition: var(--transition-medium);
}

.btn-primary:hover::before {
  top: 0;
}

.btn-primary:hover {
  color: var(--color-black);
}

.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-medium);
}

.hamburger:hover {
  border-color: var(--color-white);
}

.hamburger .bar {
  width: 20px;
  height: 1px;
  background-color: var(--color-white);
  transition: var(--transition-medium);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Fullscreen Mobile Nav */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at top right);
  transition: clip-path 0.8s var(--ease-out-expo);
}

.fullscreen-nav.active {
  clip-path: circle(150% at top right);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  position: relative;
  transition: var(--transition-medium);
  overflow: hidden;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--color-white);
  -webkit-text-stroke: 0px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.6s var(--ease-out-expo);
}

.nav-link:hover::before {
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(30, 30, 30, 0.8) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: -2;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  width: 100%;
}

.hero-titles h1 {
  font-size: clamp(4rem, 10vw, 12rem);
  white-space: nowrap;

  color: var(--color-white);
}

/* Hero Tooth Outline Interaction */
.hero-tooth-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 70vh;
  aspect-ratio: 200 / 280;
  z-index: -1;
  pointer-events: none;
  --mouse-x: -1000px;
  --mouse-y: -1000px;
  --scroll-light: 0;
}

.tooth-outline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.base-tooth {
  opacity: 0.05;
}

.glow-tooth {
  opacity: 1;
  stroke: var(--color-white);
  stroke-width: 3;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));

  -webkit-mask-image: radial-gradient(
    circle 250px at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, var(--scroll-light)) 100%
  );
  mask-image: radial-gradient(
    circle 250px at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, var(--scroll-light)) 100%
  );
}

.hero-sub {
  margin-top: 4rem;
  font-size: 1.2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--color-silver);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;

  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  animation: scrollLine 2s infinite var(--ease-out-expo);
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* --- About (Editorial Split - Redesigned) --- */
.about {
  background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: 1600px;
  margin: 0 auto;
  gap: 0;
}

.about-left {
  padding: 2rem 3rem 0rem 4rem;
  background-color: transparent;
  color: var(--color-black);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-left .section-title {
  font-size: 1.2rem;

  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.about-left h3 {
  font-size: 3.5rem;

  -webkit-text-stroke: 1.5px var(--color-black);
  color: transparent;
  transition: all 0.4s var(--ease-out-expo);
  line-height: 0.85;
}

.about-left h3:hover {
  color: var(--color-black);
  -webkit-text-stroke: 1.5px transparent;
}

.cro-number {
  color: black;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;

  font-weight: 600;
}

.doctor-img-wrap {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 3/4;
  overflow: visible;
  position: relative;
  transition: transform 0.6s var(--ease-out-expo);
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;

  object-position: center;
  filter: contrast(1.02) saturate(1.05);
  transition:
    transform 0.8s var(--ease-out-expo),
    filter 0.6s ease;
}

.doctor-img-wrap:hover {
  transform: translateY(-5px);
}

.doctor-img-wrap:hover img {
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.1);
}

.about-right {
  padding: 5rem 4rem 5rem 3rem;
  background: black;

  display: flex;
  align-items: center;
  position: relative;
}

.about-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent
  );
}

.about-text {
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text .lead {
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.about-text .highlight {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--color-silver);
  position: relative;
  display: inline-block;
}

.about-text .highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-silver),
    transparent
  );
  opacity: 0.4;
}

.about-text p:not(.lead) {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  position: relative;
  padding-left: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.5s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.7s;
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-silver), transparent);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--color-silver);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* --- Services (Hover Accordion/Grid) --- */
.services {
  padding: 8rem 4rem;
  background-color: #3c3c3c;
  cursor: none;
}

.services-header {
  margin-bottom: 6rem;
}

.services-header h2 {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.8;
  margin: 0;
}

.services-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: none;
  position: relative;
  transition: var(--transition-medium);
}

.service-row:hover {
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgba(255, 255, 255, 0.02);
}

.service-left {
  flex: 0 0 100px;
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--color-silver);
}

.service-mid {
  flex: 1;
}

.service-mid h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--color-white);
  margin: 0;
  transition: var(--transition-medium);
}

.service-row:hover .service-mid h3 {
  transform: translateX(10px);
  -webkit-text-stroke: 1px var(--color-white);
  color: transparent;
}

.service-right {
  flex: 0 0 300px;
  text-align: right;
  opacity: 0.5;
  transition: var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.service-row:hover .service-right {
  opacity: 1;
  transform: translateX(-10px);
}

.toggle-icon {
  font-size: 2rem;
  font-family: var(--font-primary);
  line-height: 1;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-row.open .toggle-icon {
  transform: rotate(45deg);
}

/* Subtopics Accordion */
.service-subtopics {
  flex: 0 0 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.6s var(--ease-out-expo),
    opacity 0.6s var(--ease-out-expo),
    margin-top 0.6s var(--ease-out-expo);
}

.service-row.open .service-subtopics {
  max-height: 500px;
  opacity: 1;
  margin-top: 2rem;
}

.service-subtopics ul {
  list-style: none;
  padding-left: 100px;
}

.service-subtopics li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-silver);
}

.service-subtopics strong {
  color: var(--color-white);
  font-weight: 600;
}

/* Hover Context Image */
.reveal-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 400px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.2s ease,
    visibility 0.2s;
  will-change: transform;
}

.reveal-tooltip.active {
  opacity: 1;
  visibility: visible;
}

.tooltip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.05);
  transition: transform 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.reveal-tooltip.active .tooltip-img {
  transform: scale(1);
}

/* --- Big Footer (Magnetic CTA) --- */
.huge-footer {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 8rem 4rem 2rem 4rem;
  position: relative;
  text-align: center;
}

.footer-cta {
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta h2 {
  font-size: clamp(4rem, 10vw, 12rem);
  line-height: 0.85;
  margin-bottom: 4rem;
}

.footer-cta .outline-text {
  -webkit-text-stroke: 2px var(--color-black);
}
.footer-cta .outline-text:hover {
  -webkit-text-stroke: 2px transparent;
  color: var(--color-black);
}

.huge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo);
}

.huge-btn span {
  position: relative;
  z-index: 2;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-silver);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 1;
}

.huge-btn:hover .btn-bg {
  transform: scale(1);
}
.huge-btn:hover span {
  color: var(--color-black);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.f-col {
  flex: 1;
}

.f-col.center {
  text-align: center;
}
.f-col.right {
  text-align: right;
  display: flex;

  align-items: center;
  justify-content: center;
  gap: 10px;
}

.f-col a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.f-col a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.f-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all var(--transition-fast);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-black);
  transition: all var(--transition-fast);
}

.social-icon:hover svg {
  stroke: var(--color-silver);
  transform: scale(1.1);
}

.social-icon::after {
  display: none;
}

/* --- Utility Animations --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
}
.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-left {
    align-items: center;
    text-align: center;
  }

  .about-left h3 {
    font-size: 2.8rem;
  }

  .cro-number {
    align-self: center;
    margin-bottom: 1.5rem;
  }

  .doctor-img-wrap {
    max-width: 380px;
  }

  .about-right {
    padding: 4rem 2rem;
  }

  .about-right::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services {
    padding: 4rem 2rem;
    cursor: auto;
  }

  .services-wrapper {
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .service-row {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    min-height: 80px;
  }

  .service-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s var(--ease-out-expo);
    z-index: 0;
  }

  .service-row.open::before {
    opacity: 0.25;
    background-image: var(--service-img);
  }

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

  .service-row:hover {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .service-row.open {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .service-left {
    flex: none;
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
  }

  .service-mid {
    flex: none;
    margin-bottom: 0.5rem;
  }

  .service-mid h3 {
    font-size: 1.8rem;
    text-align: left;
  }

  .service-right {
    flex: none;
    text-align: left;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    opacity: 1;
  }

  .service-right p {
    flex: 1;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
  }

  .toggle-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .service-row:hover .service-mid h3,
  .service-row:hover .service-right {
    transform: none;
  }

  .service-row.open .service-subtopics {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .service-subtopics li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .menu-wrap .btn-primary {
    display: none;
  } /* Hide btn on small, keep hamburger */

  .hero {
    padding: 0 2rem;
  }
  .huge-footer {
    padding: 6rem 2rem 2rem 2rem;
  }
  .huge-btn {
    width: 180px;
    height: 180px;
    font-size: 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .f-col.right {
    align-items: center;
  }

  /* Disable custom cursor on mobile to avoid buggy touch behavior */
  .cursor-dot,
  .cursor-outline,
  .reveal-tooltip {
    display: none;
  }
  body {
    cursor: auto;
  }
}
