/* Eric's New York App Landing Page
   Brand: NYMG
   Colors: Red #D61F26, Blue #1D36CC, Yellow #F7B731, Green #5AAF42, Eric's Tip Blue #CDEAFA
   Typography: Montserrat (headings), Open Sans (body)
   Aesthetic: NYC Metro-inspired, editorial, bold
*/

/* ============================================
   CSS Reset & Custom Properties
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --nymg-red: #d61f26;
  --nymg-red-dark: #b51a20;
  --nymg-blue: #1d36cc;
  --nymg-blue-dark: #1629a3;
  --nymg-yellow: #f7b731;
  --nymg-yellow-dark: #e5a31f;
  --nymg-green: #5aaf42;
  --nymg-green-dark: #4a9938;
  --erics-tip-blue: #cdeafa;
  --erics-tip-blue-dark: #a8ddf5;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafafa;
  --bg-light: #f5f6f8;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #888888;
  --border-light: #e5e7eb;

  /* Typography */
  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-wide: 1400px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow-red: 0 8px 40px rgba(214, 31, 38, 0.3);
  --shadow-glow-blue: 0 8px 40px rgba(29, 54, 204, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
}

.text-accent {
  color: var(--nymg-red);
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Metro Line Decorations
   ============================================ */
.metro-line-vertical {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 50;
  pointer-events: none;
}

.metro-line-vertical.left {
  left: 20px;
  background: linear-gradient(
    to bottom,
    var(--nymg-red) 0%,
    var(--nymg-red) 25%,
    var(--nymg-blue) 25%,
    var(--nymg-blue) 50%,
    var(--nymg-yellow) 50%,
    var(--nymg-yellow) 75%,
    var(--nymg-green) 75%,
    var(--nymg-green) 100%
  );
  opacity: 0.15;
}

.metro-line-vertical.right {
  right: 20px;
  background: linear-gradient(
    to bottom,
    var(--nymg-green) 0%,
    var(--nymg-green) 25%,
    var(--nymg-yellow) 25%,
    var(--nymg-yellow) 50%,
    var(--nymg-blue) 50%,
    var(--nymg-blue) 75%,
    var(--nymg-red) 75%,
    var(--nymg-red) 100%
  );
  opacity: 0.15;
}

@media (max-width: 768px) {
  .metro-line-vertical {
    display: none;
  }
}

/* Metro Dots */
.metro-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.metro-dot.red {
  background: var(--nymg-red);
}
.metro-dot.blue {
  background: var(--nymg-blue);
}
.metro-dot.yellow {
  background: var(--nymg-yellow);
}
.metro-dot.green {
  background: var(--nymg-green);
}

.metro-dots-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.metro-dots-row.large .metro-dot {
  width: 20px;
  height: 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-lg .icon {
  width: 22px;
  height: 22px;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-small .icon {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--nymg-red);
  color: var(--white);
  box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover {
  background: var(--nymg-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(214, 31, 38, 0.4);
}

.btn-secondary {
  background: var(--text-dark);
  color: var(--white);
}

.btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--nymg-red);
  color: var(--nymg-red);
}

.btn-youtube {
  background: #ff0000;
  color: var(--white);
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.logo-city {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--nymg-red);
}

.logo-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--nymg-green);
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-cta {
  display: flex;
  gap: 12px;
}

@media (max-width: 600px) {
  .header-cta {
    display: none;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 24px 80px;
  background: linear-gradient(135deg, var(--nymg-red) 0%, #e63946 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 .highlight {
  display: block;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .metro-dots-row .metro-dot {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* App Placeholder Inside Phone */
.app-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-header-mock {
  padding: 40px 16px 16px;
  background: var(--nymg-red);
}

.app-logo-mock {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.app-map-mock {
  flex: 1;
  position: relative;
  background:
    linear-gradient(
      90deg,
      transparent 49%,
      #ddd 49%,
      #ddd 51%,
      transparent 51%
    ),
    linear-gradient(0deg, transparent 49%, #ddd 49%, #ddd 51%, transparent 51%);
  background-size: 40px 40px;
  background-color: #f0f0f0;
}

.map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  animation: bounce-pin 2s ease-in-out infinite;
}

.map-pin.pin-1 {
  top: 30%;
  left: 25%;
  background: var(--nymg-red);
  animation-delay: 0s;
}

.map-pin.pin-2 {
  top: 50%;
  left: 60%;
  background: var(--nymg-blue);
  animation-delay: 0.3s;
}

.map-pin.pin-3 {
  top: 70%;
  left: 35%;
  background: var(--nymg-yellow);
  animation-delay: 0.6s;
}

@keyframes bounce-pin {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-5px);
  }
}

.map-route {
  position: absolute;
  top: 35%;
  left: 30%;
  width: 100px;
  height: 80px;
  border: 3px dashed var(--nymg-green);
  border-radius: 20px;
  opacity: 0.6;
}

.app-nav-mock {
  display: flex;
  justify-content: space-around;
  padding: 16px;
  background: var(--white);
  border-top: 1px solid #eee;
}

.app-nav-mock span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e5e7eb;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  top: 20px;
  right: -60px;
  background: var(--white);
  color: var(--text-dark);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: badge-float 3s ease-in-out infinite;
}

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

.badge-stars {
  color: var(--nymg-yellow);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.badge-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.badge-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(5deg);
  }
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  animation: fade-bounce 2s ease-in-out infinite;
}

@keyframes fade-bounce {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
  }
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Hero Responsive */
@media (max-width: 900px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .metro-dots-row {
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .floating-badge {
    right: -20px;
    top: 0;
    padding: 12px 16px;
  }

  .badge-text {
    font-size: 1rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ============================================
   Section Labels
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Walking Tours Section
   ============================================ */
.walking-tours {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Tours Category */
.tours-category {
  margin-bottom: 80px;
}

.tours-category:last-child {
  margin-bottom: 0;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-light);
}

.category-title .icon {
  width: 28px;
  height: 28px;
  color: var(--nymg-yellow);
}

.tours-category.evening .category-title .icon {
  color: var(--nymg-blue);
}

/* Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.evening-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Tour Card */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-image {
  position: relative;
  height: 180px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.evening-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 40, 0.3) 0%,
    rgba(20, 20, 40, 0.7) 100%
  );
}

.tour-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--nymg-yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.evening-card .tour-tag {
  background: var(--nymg-blue);
  color: var(--white);
}

.tour-content {
  padding: 20px;
}

.tour-content h4 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.tour-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Card color accents */
.tour-card[data-color="red"]:hover {
  border-color: var(--nymg-red);
}

.tour-card[data-color="blue"]:hover {
  border-color: var(--nymg-blue);
}

.tour-card[data-color="yellow"]:hover {
  border-color: var(--nymg-yellow);
}

.tour-card[data-color="green"]:hover {
  border-color: var(--nymg-green);
}

/* ============================================
   App Features Section
   ============================================ */
.app-features {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.features-content h2 {
  margin-bottom: 16px;
}

.features-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--icon-color) 15%, transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--icon-color);
}

.feature-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* QR Card */
.features-visual {
  position: sticky;
  top: 100px;
}

.qr-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.qr-header {
  margin-bottom: 20px;
}

.qr-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.qr-codes-container {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.qr-code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base);
}

.qr-code-item a:hover .qr-code-img {
  transform: scale(1.05);
}

.store-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.store-badge svg {
  width: 20px;
  height: 20px;
}

.store-badge.apple {
  background: var(--text-dark);
  color: var(--white);
}

.store-badge.apple:hover {
  background: #333;
}

.store-badge.google {
  background: var(--nymg-green);
  color: var(--white);
}

.store-badge.google:hover {
  background: var(--nymg-green-dark);
}

/* Features Responsive */
@media (max-width: 900px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-visual {
    position: static;
    order: -1;
  }

  .qr-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .qr-code-img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 400px) {
  .qr-codes-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ============================================
   YouTube Section
   ============================================ */
.youtube-section {
  padding: var(--section-padding) 0;
  background: var(--text-dark);
  color: var(--white);
}

.youtube-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.youtube-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.youtube-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.youtube-info p strong {
  color: var(--nymg-yellow);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .youtube-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .youtube-info {
    text-align: center;
  }
}

/* ============================================
   Social Media Section
   ============================================ */
.social-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.social-header {
  text-align: center;
  margin-bottom: 48px;
}

.social-header .metro-dots-row {
  justify-content: center;
  margin-bottom: 16px;
}

.social-header h2 {
  margin-bottom: 12px;
}

.social-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-6px);
}

.facebook-card {
  background: #1877f2;
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.3);
}

.facebook-card:hover {
  box-shadow: 0 16px 50px rgba(24, 119, 242, 0.4);
}

.instagram-card {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.3);
}

.instagram-card:hover {
  box-shadow: 0 16px 50px rgba(225, 48, 108, 0.4);
}

.social-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-stats {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.social-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.social-handle {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.social-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: background 0.2s ease;
}

.social-card:hover .social-cta {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
  .social-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .social-stats {
    font-size: 2.5rem;
  }
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--erics-tip-blue) 0%, #b8e4f8 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content .metro-dots-row {
  justify-content: center;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #111;
  color: var(--white);
  padding-top: 0;
}

.footer-skyline {
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' fill='%23222'%3E%3Cpath d='M0,80 L0,60 L30,60 L30,40 L50,40 L50,25 L60,25 L60,35 L80,35 L80,45 L100,45 L100,30 L110,30 L110,18 L120,18 L120,8 L130,8 L130,18 L140,18 L140,30 L150,30 L150,45 L180,45 L180,50 L200,50 L200,38 L210,38 L210,25 L220,25 L220,12 L230,12 L230,0 L240,0 L240,12 L250,12 L250,25 L260,25 L260,38 L280,38 L280,32 L300,32 L300,45 L330,45 L330,52 L360,52 L360,58 L400,58 L400,45 L420,45 L420,32 L440,32 L440,25 L450,25 L450,18 L460,18 L460,8 L470,8 L470,0 L480,0 L480,8 L490,8 L490,18 L500,18 L500,30 L520,30 L520,38 L550,38 L550,52 L600,52 L600,45 L650,45 L650,38 L680,38 L680,30 L700,30 L700,22 L710,22 L710,15 L720,15 L720,30 L740,30 L740,45 L780,45 L780,52 L820,52 L820,45 L850,45 L850,38 L880,38 L880,30 L900,30 L900,22 L920,22 L920,15 L930,15 L930,5 L940,5 L940,15 L950,15 L950,30 L970,30 L970,45 L1000,45 L1000,52 L1050,52 L1050,58 L1100,58 L1100,52 L1150,52 L1150,65 L1200,65 L1200,80 Z'/%3E%3C/svg%3E")
    repeat-x bottom;
  background-size: auto 80px;
}

.footer-content {
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-city {
  color: var(--nymg-red);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--white);
}

.footer-company {
  margin-bottom: 24px;
}

.footer-company p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-copyright p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

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

/* Intersection Observer Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Hero Social Proof
   ============================================ */
.hero-social-proof {
  margin-bottom: 28px;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.star-rating .stars {
  color: var(--nymg-yellow);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.star-rating .rating-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
}

.star-rating .rating-text strong {
  font-weight: 700;
}

/* Rating Badge (replacing #1 badge) */
.floating-badge.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 18px;
}

.badge-stars {
  color: var(--nymg-yellow);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.badge-rating {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--nymg-red);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  padding: var(--section-padding) 24px;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin: 0;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--nymg-yellow);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.testimonial-card cite strong {
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card cite span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-section {
    padding: var(--section-padding-mobile) 24px;
  }
}

/* ============================================
   Final CTA Proof
   ============================================ */
.final-cta-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
}

.final-cta-proof .stars {
  color: var(--nymg-yellow);
  letter-spacing: 1px;
}

/* Mobile responsive for hero social proof */
@media (max-width: 900px) {
  .hero-social-proof {
    display: flex;
    justify-content: center;
  }

  .star-rating {
    padding: 10px 16px;
  }

  .star-rating .stars {
    font-size: 1rem;
  }

  .star-rating .rating-text {
    font-size: 0.875rem;
  }
}
