/* ================================================
   reelstyles.css — Reel Worlds AR
   (all lowercase filename)
   ================================================
   TABLE OF CONTENTS
   -----------------
   1.  CSS VARIABLES  ← START HERE to swap anything
   2.  RESET & BASE
   3.  TYPOGRAPHY
   4.  NAVIGATION
   5.  PARALLAX HERO LAYERS
       5a. Hero wrapper
       5b. Layer 1: Background image
       5c. Layer 2: Dark overlay
       5d. Layer 3: Atmosphere/grain
       5e. Layer 4: Text content
   6.  SCROLL INDICATOR
   7.  ABOUT SECTION
   8.  FEATURE CARDS
   9.  CONTACT SECTION
   10. CONTACT FORM
   11. FOOTER
   12. COOKIE BANNER
   13. BUTTONS
   14. ANIMATIONS
   15. RESPONSIVE
   ================================================ */


/* ================================================
   1. CSS VARIABLES
   ================================================
   SWAP FONTS HERE:
   Both variables use Montserrat.
   To change, update the name and the Google Fonts
   link in index.html <head> to match.

   SWAP BACKGROUND IMAGES HERE:
   --bg-hero    = hero section background
   --bg-about   = about section background
   --bg-contact = contact section background
   All paths are relative to reelstyles.css location.
   Your image is in the imgs/ subfolder.

   SWAP BRAND COLOR HERE:
   --color-brand = the gold accent color
   Change to any hex value e.g. #1a6bc4 for blue
================================================ */
:root {
  /* ---- FONTS (both Montserrat) ---- */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* ---- BRAND COLORS ---- */
  --color-brand:      #c8a96e;
  --color-brand-dark: #a07840;
  --color-dark:       #0d0d0d;
  --color-dark-mid:   #1a1a2e;
  --color-mid:        #2e2e3e;
  --color-light:      #f5f0e8;
  --color-muted:      #969696;
  --color-white:      #ffffff;

  /* ---- OVERLAY DARKNESS ----
     Last number = opacity. Higher = darker.
     0.0 = invisible  /  1.0 = solid black      */
  --overlay-hero:    rgba(10, 8, 20, 0.52);
  --overlay-about:   rgba(5, 5, 15, 0.70);
  --overlay-contact: rgba(5, 5, 15, 0.72);

  /* ---- BACKGROUND IMAGES ----
     ⬇️ THIS IS WHERE hero-1Frontpage.png IS LINKED.
     Path is relative to this CSS file.
     Your file structure:
       reelstyles.css  (this file)
       imgs/
         hero-1Frontpage.png   ← hero background
         logo-white type.svg   ← used in nav + footer

     To use the same hero image for all sections
     just leave all three pointing to the same file.
     To use different images per section, swap
     --bg-about and --bg-contact paths.             */
  --bg-hero:    url('imgs/hero-1Frontpage.png');
  --bg-about:   url('imgs/hero-aboutpage.png');
  --bg-contact: url('imgs/hero-1Frontpage.png');

  /* ---- SPACING ---- */
  --section-padding: 100px 20px;
  --nav-height: 140px;

  /* ---- BORDER RADIUS ---- */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  /* ---- TRANSITIONS ---- */
  --transition-fast: 0.2s ease;
  --transition-mid:  0.4s ease;
}


/* ================================================
   2. RESET & BASE
================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--color-dark);
  color: var(--color-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-brand-dark);
}

ul {
  list-style: none;
}


/* ================================================
   3. TYPOGRAPHY
   ALL headings and paragraphs are CENTERED.
   Font is Montserrat throughout — no serifs.
================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);

  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-light);
}

p {
  text-align: center;
  color: var(--color-muted);
}

/* Small uppercase label above section headings */
.section-label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 0.75rem;
}

/* H2 used in About and Contact sections */
.section-title {
  font-size: clamp(1em, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 1.25rem;
}

/* Intro paragraph below each section heading */
.section-intro {
  font-size: 1.05rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem auto;
  color: var(--color-muted);
  line-height: 1.8;
}


/* ================================================
   4. NAVIGATION
   .site-nav          = fixed top bar
   .site-nav.scrolled = solid bg (added by JS)
   .nav-logo          = logo on the left
   .logo-img          = the SVG logo image
   .nav-links         = ul of anchor links on right
================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background var(--transition-mid), box-shadow var(--transition-mid);
}

/* JS adds .scrolled after user scrolls 60px */
.site-nav.scrolled {
  background: rgba(10, 8, 20, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}


.logo-img {
  margin-top: 1.5em;
  height: 80px;
  width: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-nav.scrolled .logo-img {
  opacity: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-light);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-light);
  position: relative;
  padding-bottom: 4px;
}

/* Animated underline on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-brand);
  transition: width var(--transition-mid);
}

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


/* ================================================
   5. PARALLAX HERO LAYER SYSTEM

   .parallax-hero = outer container (100vh tall)
   .parallax-layer = shared rules for all 4 layers
                     each fills the full container
                     via position: absolute

   Z-INDEX STACK (back to front):
     .layer-bg          z-index 1  ← background photo
     .layer-overlay     z-index 2  ← dark tint
     .layer-atmosphere  z-index 3  ← grain texture
     .layer-content     z-index 4  ← text + buttons
================================================ */

/* 5a. HERO OUTER WRAPPER */
.parallax-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #969696;
  border-style: 2px solid;
}

/* All layers share these rules — they fill the container */
.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* 5b. LAYER 1 — BACKGROUND IMAGE
   The image comes from --bg-hero set in :root above.
   JS moves this div at 0.35x scroll speed for depth.
   will-change: transform tells the GPU to prep for it. */
.layer-bg {
  z-index: 1;
  background-image: var(--bg-hero);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: transform;
}

/* 5c. LAYER 2 — DARK OVERLAY
   Semi-transparent div darkens the photo behind it.
   Adjust opacity in --overlay-hero in :root */
.layer-overlay {
  z-index: 2;
  background: var(--overlay-hero);
}

/* 5d. LAYER 3 — GRAIN/ATMOSPHERE TEXTURE
   Adds subtle cinematic grain. Clicks pass through it.
   To disable: add display: none; here */
.layer-atmosphere {
  z-index: 3;
  pointer-events: none;
  opacity: 0.35;
}

.layer-atmosphere::before {
  display:none;
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.5;
}

#particleCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* 5e. LAYER 4 — FOREGROUND TEXT CONTENT
   Holds .hero-inner which centers everything.
   This layer does NOT move — text stays crisp. */
.layer-content {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) 20px 20px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

/* Small label above the H1 */
.hero-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 1 em;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

/* H1 main headline — centered, Montserrat light */
.hero-title {
  font-family: var(--font-display);
 font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-light);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.4s forwards;
}

/* Subtitle below H1 — centered, Montserrat light */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(245, 240, 232, 0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.6s forwards;
}

/* Button row below subtitle */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.8s forwards;
}


/* ================================================
   6. SCROLL INDICATOR
   Bouncing arrow at bottom of hero.
   .hidden added by JS once user scrolls.
================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.scroll-indicator.hidden { opacity: 0; }

.scroll-arrow {
  display: block;
  font-size: 2rem;
  color: var(--color-brand);
  animation: bounce 1.8s ease-in-out infinite;
}

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


/* ================================================
   7. ABOUT SECTION
   .about-section  = outer wrapper
   .about-hero     = full-width image banner
   .about-content  = dark panel below the image
   .about-container = centered max-width wrapper
================================================ */
.about-section {
  overflow: hidden;
}

/* Full-width image — sits above the text, not behind it */
.about-hero {
  width: 100%;
  height: 100vh;
  min-height: 320px;
  background-image: var(--bg-about);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    border-bottom: 1px solid #969696;
  border-style: 2px solid;
}

/* Dark panel where the cards and text live */
.about-content {
  background: var(--color-dark-mid);
  padding: var(--section-padding);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ================================================
   8. FEATURE CARDS
   .features-grid  = CSS Grid wrapper (3 cols)
   .feature-card   = individual card
   .feature-icon   = icon/emoji at top
   .feature-title  = h3 card heading (centered)
   .feature-desc   = body text (centered)
================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  margin-top: 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background var(--transition-mid),
              transform var(--transition-mid),
              border-color var(--transition-mid);
}

.feature-card:hover {
  background: rgba(200, 169, 110, 0.08);
  border-color: var(--color-brand);
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-brand);
  text-align: center;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  text-align: center;
  line-height: 1.7;
}


/* ================================================
   9. CONTACT SECTION
   .contact-section   = outer <section>
   .contact-bg        = fixed parallax background
   .contact-container = centered max-width wrapper
================================================ */
.contact-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-contact);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.3);
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-contact);
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ================================================
   10. CONTACT FORM
   .contact-card        = frosted glass card
   .contact-form        = the <form> element
   .form-group          = label + input pair
   .form-label          = field label text
   .form-input          = text / email inputs
   .form-checkbox-group = checkbox + label row
   .recaptcha-wrapper   = centers the widget
   .recaptcha-notice    = small legal line
   .form-submit-row     = centers send button
   .form-message        = success/error text
================================================ */
.contact-card {
  width: 100%;
  background: rgba(20, 18, 35, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  text-align: left;
}

.required-mark {
  color: #e05050;
  margin-left: 2px;
}

.form-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-light);
  outline: none;
  transition: border-color var(--transition-fast),
              background var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(150, 150, 150, 0.5);
}

.form-input:focus {
  border-color: var(--color-brand);
  background: rgba(255, 255, 255, 0.10);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 2px;
  accent-color: var(--color-brand);
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1.5;
  text-align: left;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
}

.recaptcha-notice {
  font-size: 0.75rem;
  color: rgba(150, 150, 150, 0.6);
  text-align: center;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: var(--color-brand);
  text-decoration: underline;
}

.form-submit-row {
  display: flex;
  justify-content: center;
}

.form-message {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--color-brand);
}

.form-message.error { color: #e05050; }


/* ================================================
   10b. DEMO SECTION
================================================ */
.demo-section {
  background: var(--color-dark);
  padding: 100px 20px;
  text-align: center;
}

.demo-container {
  max-width: 1100px;
  margin: 0 auto;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.demo-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(200, 169, 110, 0.2);
  transition: border-color 0.3s ease, transform 0.3s ease;
  background: #111;
  aspect-ratio: 16 / 9;
}

.demo-thumb:hover {
  border-color: var(--color-brand);
  transform: translateY(-4px);
}

.demo-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.demo-thumb-img.loaded {
  opacity: 1;
}

.demo-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
  pointer-events: none;
}

.demo-thumb:hover .demo-play-icon {
  background: rgba(0, 0, 0, 0.55);
}

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


/* ================================================
   11. FOOTER — minimal bar
================================================ */
.site-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(150, 150, 150, 0.5);
}

.footer-contact-btn {
  padding: 10px 26px;
  font-size: 0.8rem;
}


/* ================================================
   12. COOKIE BANNER
   .cookie-banner        = fixed bottom strip
   .cookie-banner.hidden = JS slides it away
   .cookie-accept-btn    = accept button
   z-index: 999 keeps it BELOW the nav (1000)
================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 8, 20, 0.96);
  border-top: 1px solid rgba(200, 169, 110, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 32px;
  flex-wrap: wrap;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 600px;
  text-align: center;
}

.cookie-accept-btn {
  background: var(--color-brand);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.cookie-accept-btn:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}


/* ================================================
   13. BUTTONS
   .btn           = base button reset
   .btn-primary   = solid gold fill
   .btn-secondary = outlined ghost
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-dark);
  border-color: var(--color-brand);
}

.btn-primary:hover {
  background: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  color: var(--color-dark);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border-color: rgba(245, 240, 232, 0.5);
}

.btn-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.15);
}


/* ================================================
   14. ANIMATIONS
   fadeSlideUp — used on hero text elements
   bounce      — used on scroll indicator arrow
================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================
   15. RESPONSIVE
   Breakpoints:
     1024px — tablet landscape
     768px  — tablet portrait
     480px  — phone
================================================ */

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

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

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

  .contact-card {
    padding: 36px 28px;
  }

  .footer-links {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

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

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .footer-top {
    padding: 40px 20px 32px;
  }

  .footer-bottom {
    padding: 16px 20px;
  }
}