/* ===================================
   V9_1 - ENHANCED PLAYFUL MEMPHIS DESIGN
   Bold, fun, and more functional
   =================================== */

/* ===================================
   CUSTOM FONTS
   =================================== */
@font-face {
  font-family: 'Degular';
  src: url('assets/fonts/Degular-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Degular';
  src: url('assets/fonts/Degular-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelica';
  src: url('assets/fonts/gelica-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelica';
  src: url('assets/fonts/gelica-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --pink: #ff6b9d;
  --yellow: #ffd93d;
  --blue: #6bcfff;
  --purple: #c96bff;
  --orange: #ff9b6b;
  --green: #6bffb8;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===================================
   ABSTRACT ACCENT GRAPHICS
   =================================== */
.accent-lines {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}

.accent-lines::before,
.accent-lines::after,
.accent-lines span {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 3px;
}

.accent-lines::before {
  width: 50px;
  height: 5px;
  top: 0;
  left: 0;
  transform: rotate(-25deg);
}

.accent-lines::after {
  width: 40px;
  height: 5px;
  top: 18px;
  left: 8px;
  transform: rotate(-25deg);
}

.accent-lines span {
  width: 30px;
  height: 5px;
  top: 36px;
  left: 16px;
  transform: rotate(-25deg);
}

.accent-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.accent-square {
  position: absolute;
  width: 70px;
  height: 70px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  transform: rotate(15deg);
}

.accent-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-20deg);
}

.accent-dots {
  position: absolute;
  width: 12px;
  height: 12px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.accent-dots::before,
.accent-dots::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: currentColor;
  border-radius: 50%;
}

.accent-dots::before {
  top: 20px;
  left: 15px;
}

.accent-dots::after {
  top: 40px;
  left: 5px;
}

.accent-zigzag {
  position: absolute;
  width: 60px;
  height: 5px;
  background: currentColor;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  transform: rotate(45deg);
}

.accent-zigzag::before,
.accent-zigzag::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 5px;
  background: currentColor;
}

.accent-zigzag::before {
  top: -15px;
  left: 10px;
  transform: rotate(90deg);
}

.accent-zigzag::after {
  top: 15px;
  left: 10px;
  transform: rotate(90deg);
}

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

/* ===================================
   GEOMETRIC BACKGROUND (Toned Down)
   =================================== */
.geo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  opacity: 0.08;
  animation: float 25s ease-in-out infinite;
}

.circle-1 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--pink);
  top: 10%;
  left: 5%;
}

.triangle-1 {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid var(--blue);
  top: 60%;
  right: 10%;
  animation-delay: 8s;
}

.square-1 {
  width: 180px;
  height: 180px;
  background: var(--yellow);
  transform: rotate(45deg);
  bottom: 20%;
  left: 15%;
  animation-delay: 12s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  border: 25px solid var(--purple);
  border-radius: 50%;
  top: 40%;
  right: 20%;
  animation-delay: 16s;
}

.zigzag-1 {
  width: 120px;
  height: 120px;
  background: 
    linear-gradient(135deg, var(--orange) 25%, transparent 25%),
    linear-gradient(225deg, var(--orange) 25%, transparent 25%),
    linear-gradient(45deg, var(--orange) 25%, transparent 25%),
    linear-gradient(315deg, var(--orange) 25%, transparent 25%);
  background-size: 60px 60px;
  bottom: 10%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(25px, -25px) rotate(90deg); }
  50% { transform: translate(-20px, 20px) rotate(180deg); }
  75% { transform: translate(20px, 25px) rotate(270deg); }
}

/* ===================================
   HEADER
   =================================== */
.header {
  min-height:112px;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: #39c9f2;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-memphis {
  position: relative;
  display: flex;
  align-items: center;
}

.logo {
  max-height:55px;
  width: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
  filter: brightness(0) invert(1);
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.logo-shapes {
  position: absolute;
  top: -12px;
  right: -18px;
}

.shape-dot {
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.shape-line {
  width: 35px;
  height: 5px;
  background: var(--yellow);
  position: absolute;
  bottom: -8px;
  right: -12px;
  transform: rotate(-45deg);
}

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

.nav-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
  position: relative;
  font-weight: 400;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 5px;
  background: var(--pink);
  transition: width 0.3s;
}

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

.nav-special {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 28px;
  border: 5px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  transition: all 0.2s;
}

.nav-special::after {
  display: none;
}

.nav-special:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 30px;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================
   HERO CONTAINER (Hero + Marquee = 100vh)
   =================================== */
.hero-container {
  min-height: calc(100vh - 70px); /* 100vh minus marquee height, header overlaps */
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===================================
   HERO
   =================================== */
.hero {
  margin: 0;
  overflow: hidden;
  padding: 120px 0 60px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.55) 0%,
    rgba(107, 207, 255, 0.4) 50%,
    rgba(255, 214, 107, 0.55) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  text-align: center;
  margin-bottom: 40px;
}

.title-line {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 10vw, 90px);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  animation: slideIn 0.6s ease-out;
}

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

.title-line.highlight {
  background: var(--pink);
  color: var(--white);
  padding: 12px 48px;
  display: inline-block;
  transform: rotate(-2deg);
  border: 6px solid var(--black);
  box-shadow: 10px 10px 0 var(--black);
  animation: slideIn 0.6s ease-out 0.2s both;
  transition: width 0.3s ease;
  min-width: fit-content;
}

#typewriter-text {
  display: inline-block;
  min-width: 1ch;
}

.typewriter-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
  color: white;
  font-size: 1em;
  line-height: 1;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-text {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 56px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  animation: slideIn 0.6s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 96px;
  flex-wrap: wrap;
  animation: slideIn 0.6s ease-out 0.6s both;
}

/* ===================================
   MARQUEE
   =================================== */
/* Marquee section - simple sticky behavior */
.marquee-section {
  background: var(--black);
  overflow: hidden;
  position: sticky;
  top: 112px; /* Proper clearance below header */
  z-index: 999;
  padding: 16px 0;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  transition: zoom 0.3s ease;
  zoom: 1;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  animation: marqueeScroll 45s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item::after {
  content: '•';
  position: absolute;
  right: -5px;
  color: var(--pink);
  font-size: 20px;
}

.marquee-section.scrolled .marquee {
  zoom: 0.7;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.btn {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  text-decoration: none;
  padding: 18px 44px;
  border: 6px solid var(--black);
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 7px 7px 0 var(--black);
  font-weight: 400;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  position: relative;
  overflow: visible;
}

.btn-primary::after {

  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--black);
}

.btn-primary:hover::after {
  opacity: 0.8;
  right: -30px;
  transform: translateY(-50%) rotate(25deg);
}

.btn-secondary {
  background: var(--blue);
  color: var(--black);
}

.btn-secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--black);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  animation: slideIn 0.6s ease-out 0.8s both;
}

.stat-memphis {
  position: relative;
  width: 200px;
  height: 200px;
  transition: transform 0.3s;
}

.stat-memphis:hover {
  transform: scale(1.05) rotate(-3deg);
}

.stat-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s;
}

.stat-memphis:hover .stat-bg {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--black);
}

.bg-1 { background: var(--yellow); transform: rotate(5deg); }
.bg-2 { background: var(--blue); transform: rotate(-5deg); }
.bg-3 { background: var(--pink); transform: rotate(3deg); }

.stat-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 52px;
  color: var(--black);
  line-height: 1;
  font-weight: 400;
}

.stat-text {
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
  margin-top: 8px;
}

/* ===================================
   SECTIONS
   =================================== */
.about, .services, .reviews, .locations {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}


.title-word {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  display: inline-block;
  margin: 0 12px;
  font-weight: 400;
}

.highlight-pink {
  background: var(--pink);
  color: var(--white);
  padding: 8px 32px;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(-2deg);
}

.highlight-blue {
  background: var(--blue);
  color: var(--black);
  padding: 8px 32px;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(2deg);
}

.highlight-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 8px 32px;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(-2deg);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 150px; /* Add space for sticky header (88px) + marquee (56px) + buffer (6px) */
  scroll-margin-top: 144px; /* Offset for anchor links: 88px header + 56px marquee */
}

.about-content {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.about-text-column {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.about-lead-inner {
  position: relative;
  z-index: 2;
}

.about-lead-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Gelica';
}

.about-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.5;
  margin: 0;
  text-align: left;
  font-family: 'Gelica';
}

.about-decorative-circle {
  display: none;
}

.about-puppy {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-body {
  padding-top: 0;
}

.about-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body p:first-child {
  margin-top: 0;
}

@media (max-width: 968px) {
  .about-text-column {
    gap: 30px;
  }

  .about-lead {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .about-text-column {
    gap: 25px;
  }

  .about-lead-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-lead {
    font-size: 1.2rem;
  }

  .about-body p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.memphis-card {
  background: var(--white);
  padding: 40px 32px;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  position: relative;
  transition: all 0.3s;
}

.memphis-card:hover {
  transform: translate(-2px, -2px) scale(1.02);
  box-shadow: 10px 10px 0 var(--black);
}

.card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  opacity: 0.15;
}

.pattern-1 {
  background: repeating-linear-gradient(
    45deg,
    var(--pink),
    var(--pink) 10px,
    transparent 10px,
    transparent 20px
  );
}

.pattern-2 {
  background: radial-gradient(circle, var(--blue) 20%, transparent 20%);
  background-size: 20px 20px;
}

.pattern-3 {
  background: repeating-linear-gradient(
    0deg,
    var(--yellow),
    var(--yellow) 5px,
    transparent 5px,
    transparent 10px
  );
}

.card-icon {
  font-size: 56px;
  margin-bottom: 24px;
}

.memphis-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

.memphis-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.85;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  background: var(--gray);
  position: relative;
  overflow: hidden;
  padding-top: 150px; /* Add space for sticky header (88px) + marquee (56px) + buffer (6px) */
  scroll-margin-top: 144px; /* Offset for anchor links: 88px header + 56px marquee */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-memphis {
  background: var(--white);
  padding: 36px 28px;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s;
}

.service-memphis:hover {
  transform: translate(-2px, -2px) scale(1.02);
  box-shadow: 10px 10px 0 var(--black);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  border: 4px solid var(--black);
}

.header-1 { background: var(--pink); }
.header-2 { background: var(--blue); }
.header-3 { background: var(--yellow); }
.header-4 { background: var(--purple); }

.service-icon {
  font-size: 40px;
}

.service-memphis h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.service-memphis p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.85;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  padding-left: 8px;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.review-card {
  background: var(--white);
  padding: 36px 32px;
  border: 6px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  font-family: 'Archivo Black', sans-serif;
  color: var(--pink);
  opacity: 0.2;
  line-height: 1;
  font-weight: 400;
}

.review-card:hover {
  transform: translate(-2px, -2px) scale(1.02);
  box-shadow: 10px 10px 0 var(--black);
}

.review-stars {
  font-size: 24px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-emoji {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 4px solid var(--black);
  flex-shrink: 0;
}

.author-name {
  font-weight: 800;
  font-size: 17px;
}

.author-pet {
  font-size: 14px;
  opacity: 0.7;
}

/* ===================================
   LOCATIONS SECTION
   =================================== */
.locations {
  background: var(--gray);
  position: relative;
  overflow: hidden;
  padding-top: 150px; /* Add space for sticky header (88px) + marquee (56px) + buffer (6px) */
  padding-bottom: 200px; /* Add extra space before footer waves */
  scroll-margin-top: 144px; /* Offset for anchor links: 88px header + 56px marquee */
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
}

.location-memphis {
  background: var(--white);
  padding: 48px 40px;
  border: 6px solid var(--black);
  box-shadow: 10px 10px 0 var(--black);
  position: relative;
  transition: all 0.3s;
}

.location-memphis:hover {
  transform: translate(-2px, -2px) scale(1.02);
  box-shadow: 12px 12px 0 var(--black);
}

.location-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  padding: 12px 32px;
  border: 5px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  font-weight: 400;
}

.badge-1 {
  background: var(--yellow);
}

.badge-2 {
  background: var(--blue);
}

.location-info {
  margin-bottom: 32px;
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--gray);
  border: 3px solid var(--black);
}

.info-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 400;
}

.info-row p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.btn-location {
  width: 100%;
  text-align: center;
  background: var(--pink);
  color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #ffe87b;
  color: #0f2a8f;
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C150,80 350,0 600,50 C850,100 1050,20 1200,50 L1200,120 L0,120 Z' fill='%23ffe87b' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  background-repeat: repeat-x;
  z-index: 1;
  animation: waveMove1 20s linear infinite;
}

.footer::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,70 C200,100 400,40 600,70 C800,100 1000,40 1200,70 L1200,120 L0,120 Z' fill='%23ffe87b' fill-opacity='0.5'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  background-repeat: repeat-x;
  z-index: 2;
  animation: waveMove2 15s linear infinite reverse;
}

.footer .container {
  position: relative;
  z-index: 6;
}

.footer-wave {
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C250,90 450,30 600,60 C750,90 950,30 1200,60 L1200,120 L0,120 Z' fill='%23ffe87b' fill-opacity='0.7'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  background-repeat: repeat-x;
  z-index: 3;
  animation: waveMove3 25s linear infinite;
}

.footer-wave-2 {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C300,70 500,10 600,40 C700,70 900,10 1200,40 L1200,120 L0,120 Z' fill='%23ffe87b' fill-opacity='0.85'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  background-repeat: repeat-x;
  z-index: 4;
  animation: waveMove1 18s linear infinite reverse;
}

.footer-wave-3 {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,60 400,0 600,30 C800,60 1000,0 1200,30 L1200,120 L0,120 Z' fill='%23ffe87b'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  background-repeat: repeat-x;
  z-index: 5;
  animation: waveMove2 22s linear infinite;
}

@keyframes waveMove1 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1200px 0;
  }
}

@keyframes waveMove2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1200px 0;
  }
}

@keyframes waveMove3 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1200px 0;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 4px rgba(15, 42, 143, 0.1));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-tagline {
    font-family: 'Degular', sans-serif;
    font-size: 17px !important;
    color: #0f2a8f;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6em !important;
    opacity: 0.9;
    max-width: 400px;
}

.footer-col h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  margin-bottom: 24px;
  color: #0f2a8f;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col a {
  display: inline-block;
  color: #0f2a8f;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 16px;
  font-family: 'Degular', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-col a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--pink);
  padding-left: 20px;
}

.footer-col a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-col p {
  font-family: 'Degular', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  font-weight: 400;
}

.footer-credit {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px dashed rgba(15, 42, 143, 0.15);
  font-family: 'Degular', sans-serif;
  font-size: 14px;
  color: #585335;
  opacity: 0.8;
}

.footer-credit a {
  color: #0f2a8f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.footer-credit a:hover {
  color: var(--pink);
}

/* Footer Location Styles */
.footer-col-location h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-location-info p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.footer-address {
  font-weight: 500;
}

.footer-hours strong,
.footer-phone strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  opacity: 1;
}

.footer-col-links h4:first-child {
  margin-top: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .hero-title .title-line {
    font-size: 64px;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-memphis {
    width: 180px;
    height: 180px;
  }

  .stat-num {
    font-size: 44px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

/* Hide mobile nav on desktop */
.mobile-nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .logo {
    max-height: 50px;
  }

  .nav {
    display: none;
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--pink);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 80px 32px 40px;
  }

  .mobile-nav-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .mobile-nav-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 50px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-title-blue {
    color: var(--blue);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  }

  .mobile-title-pink {
    color: var(--white);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-tagline {
    font-family: 'Degular', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--white);
    max-width: 400px;
    margin: 0 auto;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin: 20px 0;
  }

  .mobile-nav-link {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    color: var(--black);
    text-decoration: none;
    padding: 16px 32px;
    border: 5px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
    background: var(--white);
    transition: all 0.3s;
    text-align: center;
    min-width: 280px;
  }

  .mobile-nav-link:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--black);
  }

  .mobile-nav-social {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
  }

  .mobile-social-link {
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 4px solid var(--black);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  }

  .mobile-social-link:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  }

  .mobile-social-link svg {
    width: 28px;
    height: 28px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 10000;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-title .title-line {
    font-size: 48px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-buttons {
    margin-bottom: 64px;
  }

  .marquee-item {
    font-size: 18px;
    padding: 0 30px;
  }

  .marquee-item::after {
    font-size: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-memphis {
    width: 160px;
    height: 160px;
  }

  .stat-num {
    font-size: 40px;
  }

  .stat-text {
    font-size: 13px;
  }

  .about-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title .title-word {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding: 16px 0;
  }

  .logo {
    max-height: 50px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-title .title-line {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .title-line.highlight {
    padding: 8px 24px;
    border: 5px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
  }

  .hero-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 48px;
  }

  .btn {
    width: 100%;
    font-size: 17px;
    padding: 16px 32px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .stat-memphis {
    width: 180px;
    height: 180px;
  }

  .about, .services, .reviews, .locations {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 48px;
  }

  .section-title .title-word {
    font-size: 36px;
    margin: 0 4px;
  }

  .highlight-pink,
  .highlight-blue,
  .highlight-yellow {
    padding: 6px 20px;
    border: 5px solid var(--black);
    box-shadow: 5px 5px 0 var(--black);
  }

  .memphis-card,
  .service-memphis,
  .review-card,
  .location-memphis {
    padding: 28px 20px;
    border: 5px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
  }

  .memphis-card:hover,
  .service-memphis:hover,
  .review-card:hover,
  .location-memphis:hover {
    transform: translate(-2px, -2px) scale(1.02);
    box-shadow: 8px 8px 0 var(--black);
  }

  .location-badge {
    font-size: 15px;
    padding: 10px 24px;
    border: 4px solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
  }

  .footer {
    padding: 48px 0 24px;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   BOOKING MODALS
   =================================== */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.booking-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  max-width: 800px;
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--white);
  border: 6px solid var(--black);
  box-shadow: 12px 12px 0 var(--pink);
  overflow: hidden;
  animation: modalSlideIn 0.4s ease-out;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--pink);
  border: 4px solid var(--black);
  color: var(--white);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: var(--yellow);
  transform: rotate(90deg);
}

.modal-header {
  background: var(--blue);
  padding: 32px 24px;
  border-bottom: 6px solid var(--black);
  text-align: center;
}

.modal-header h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin: 0 0 8px 0;
}

.modal-header p {
  color: var(--white);
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.modal-body {
  padding: 24px;
  max-height: calc(90vh - 150px);
  overflow: hidden;
  background: var(--white);
}

.modal-body iframe {
  width: 100% !important;
  height: calc(90vh - 198px);
  border: none;
}

/* Booking Loader */
.booking-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px;
  transition: opacity 0.3s ease;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid var(--black);
  border-top-color: var(--pink);
  border-right-color: var(--yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loader-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    margin: 2vh auto;
    max-height: 96vh;
    box-shadow: 8px 8px 0 var(--pink);
  }

  .modal-header h3 {
    font-size: 24px;
  }

  .modal-body {
    padding: 16px;
    max-height: calc(96vh - 120px);
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: 4px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .geo-bg,
  .hero-shapes,
  .mobile-toggle {
    display: none;
  }

  .header {
    position: static;
    border-bottom: 2px solid var(--black);
  }

  * {
    box-shadow: none !important;
  }
}

