/* ========================================
   Number 1 Cleaning TX - Styles
   Navy Blue & Gold Luxury Theme
======================================== */

/* CSS Variables */
:root {
  /* Colors - Navy Blue & Gold Palette */
  --gold: hsl(43, 75%, 50%);
  --gold-light: hsl(43, 65%, 70%);
  --gold-dark: hsl(43, 70%, 38%);
  --navy: hsl(222, 47%, 20%);
  --navy-light: hsl(222, 40%, 35%);
  --navy-dark: hsl(222, 47%, 12%);
  --cream: hsl(40, 33%, 98%);
  --cream-dark: hsl(40, 20%, 92%);
  
  /* Semantic Colors */
  --background: hsl(40, 33%, 98%);
  --foreground: hsl(222, 47%, 20%);
  --card: hsl(0, 0%, 100%);
  --muted: hsl(222, 20%, 94%);
  --muted-foreground: hsl(222, 30%, 45%);
  --accent: hsl(43, 60%, 92%);
  --accent-foreground: hsl(43, 75%, 40%);
  --border: hsl(222, 20%, 88%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(43, 75%, 50%), hsl(43, 65%, 60%));
  --gradient-dark: linear-gradient(180deg, hsl(222, 47%, 15%), hsl(222, 47%, 22%));
  --gradient-cream: linear-gradient(180deg, hsl(40, 33%, 98%), hsl(40, 20%, 94%));
  
  /* Shadows */
  --shadow-soft: 0 4px 20px hsla(222, 47%, 20%, 0.08);
  --shadow-elevated: 0 8px 30px hsla(222, 47%, 20%, 0.12);
  --shadow-gold: 0 4px 20px hsla(43, 75%, 50%, 0.3);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --container-max: 1400px;
  --section-padding: 6rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.btn-gold-primary {
  background: var(--gradient-gold);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.025em;
}

.btn-gold-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.btn-hero {
  background: hsla(43, 75%, 50%, 0.1);
  color: var(--cream);
  border: 1px solid hsla(43, 75%, 50%, 0.3);
  backdrop-filter: blur(4px);
  font-weight: 500;
  letter-spacing: 0.025em;
}

.btn-hero:hover {
  background: hsla(43, 75%, 50%, 0.2);
  border-color: hsla(43, 75%, 50%, 0.5);
}

.btn-xl {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Text Gradient */
.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-elevated);
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

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

.logo-img {
  height: 3rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.header.scrolled .nav-link {
  color: var(--foreground);
}

.header.scrolled .nav-link:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--gold);
}

.header.scrolled .phone-link {
  color: var(--foreground);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--cream);
}

.header.scrolled .mobile-menu-btn .icon {
  color: var(--foreground);
}

.close-icon.hidden,
.menu-icon.hidden {
  display: none;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.nav-mobile.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.mobile-phone {
  padding: 0.5rem 0;
}

.mobile-cta {
  margin-top: 0.5rem;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(222, 47%, 12%, 0.9), hsla(222, 47%, 12%, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(43, 75%, 50%, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid hsla(43, 75%, 50%, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge .icon {
  color: var(--gold);
}

.hero-badge span {
  color: hsla(40, 33%, 98%, 0.9);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(40, 33%, 98%, 0.8);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(40, 33%, 98%, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-stats {
    gap: 4rem;
  }
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(40, 33%, 98%, 0.6);
  margin-top: 0.25rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(40, 33%, 98%, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--gold);
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

/* ========================================
   Section Styles
======================================== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-cream {
  color: var(--cream);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.section-subtitle.text-cream-muted {
  color: hsla(40, 33%, 98%, 0.7);
}

/* ========================================
   Services Section
======================================== */
.services {
  padding: var(--section-padding) 0;
  background: var(--gradient-cream);
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.service-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-elevated);
}

.service-image-wrapper {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .service-image-wrapper {
    height: 18rem;
  }
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(222, 47%, 20%, 0.8), hsla(222, 47%, 20%, 0.2), transparent);
}

.service-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: var(--gold);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.service-icon-badge .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.service-content {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .service-content {
    padding: 2rem;
  }
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-hover-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover .service-hover-accent {
  transform: scaleX(1);
}

/* ========================================
   Why Choose Us Section
======================================== */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.decorative-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: hsla(43, 75%, 50%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.decorative-blob-top {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.decorative-blob-bottom {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.reason-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsla(40, 33%, 98%, 0.1);
  background: hsla(40, 33%, 98%, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {
  .reason-card {
    padding: 2rem;
  }
}

.reason-card:hover {
  background: hsla(40, 33%, 98%, 0.1);
  border-color: hsla(43, 75%, 50%, 0.3);
}

.reason-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(43, 75%, 50%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: hsla(43, 75%, 50%, 0.2);
}

.reason-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.reason-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.reason-description {
  color: hsla(40, 33%, 98%, 0.6);
  line-height: 1.6;
}

/* ========================================
   About Section
======================================== */
.about {
  padding: var(--section-padding) 0;
  background: var(--background);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-content .section-label {
  display: block;
  margin-bottom: 1rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.signature-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.signature-title {
  color: var(--muted-foreground);
}

.about-visual {
  position: relative;
}

.about-card {
  position: relative;
  background: var(--gradient-cream);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
}

@media (min-width: 1024px) {
  .about-card {
    padding: 3rem;
  }
}

.about-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-logo {
  width: 12rem;
  height: auto;
}

.about-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-stat {
  text-align: center;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.about-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.about-decorative {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background: hsla(43, 75%, 50%, 0.1);
  border-radius: 50%;
  filter: blur(30px);
}

.about-decorative-top {
  top: -1rem;
  right: -1rem;
}

.about-decorative-bottom {
  bottom: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
}

/* ========================================
   Contact Section
======================================== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--gradient-cream);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-info .section-label {
  display: block;
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(43, 75%, 50%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

a.contact-item:hover .contact-icon {
  background: hsla(43, 75%, 50%, 0.2);
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

a.contact-item:hover .contact-value {
  color: var(--gold);
}

.contact-social {
  margin-top: 2.5rem;
}

.social-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: var(--navy-light);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-form-wrapper {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
}

@media (min-width: 1024px) {
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(43, 75%, 50%, 0.15);
}

.form-group textarea {
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--gradient-dark);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  height: 3.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsla(40, 33%, 98%, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(40, 33%, 98%, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: var(--gold);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li,
.footer-links a {
  color: hsla(40, 33%, 98%, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-link svg,
.footer-location svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(40, 33%, 98%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: hsla(40, 33%, 98%, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: hsla(40, 33%, 98%, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: hsla(40, 33%, 98%, 0.6);
}

/* ========================================
   Animations
======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

/* Hidden utility */
.hidden {
  display: none !important;
}