/* =============================================================================
   styles.css — Gym Tonic Express
   Organised top-to-bottom in the same order as index.html sections.
   ============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   1. GLOBAL RESET & VARIABLES
   ───────────────────────────────────────────────────────────────────────────── */

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

:root {
  --red:        #E62D2D;
  --white:      #FFFFFF;
  --dark-gray:  #2D2D2D;
  --light-gray: #A9A9A9;
  --slide-h:    680px;
  --slide-w:    2160px;
  --overlay:    rgba(10, 10, 20, 0);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--white);
  color: var(--white);
  overflow-x: hidden;
}


/* ─────────────────────────────────────────────────────────────────────────────
   2. HERO SLIDESHOW  (#hero)
   ───────────────────────────────────────────────────────────────────────────── */

#hero,
.hero {
  position: relative;
  width: 100%;
  height: var(--slide-h);
  overflow: hidden;
  background: var(--dark-gray);
}

/* Individual slides */
.hero .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  /* Reset any overrides applied by the Stories carousel */
  min-width: unset;
  background: transparent;
  border-radius: 0;
  padding: 0;
  gap: 0;
  align-items: unset;
  box-shadow: none;
}

.hero .slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide background layer */
.slide-bg {
  position: absolute;
  inset: 0;
  width: var(--slide-w);
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Decorative noise-grain overlay */
.slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

/* Dark overlay for text legibility */
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

/* Desktop slide images — add/replace as needed */
.hero .slide:nth-child(1) .slide-bg { background-image: url('images/Landing Page 1.jpg'); }
.hero .slide:nth-child(2) .slide-bg { background-image: url('images/Landing Page 2.jpg'); }
.hero .slide:nth-child(3) .slide-bg { background-image: url('images/Landing Page 3.jpg'); }
.hero .slide:nth-child(4) .slide-bg { background-image: url('images/Landing Page 4.jpg'); }
.hero .slide:nth-child(5) .slide-bg { background-image: url('images/Landing Page 5.jpg'); }

/* Slide text content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: calc(40px + 56px + 16px); /* gap above CTA button */
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.slide-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.3s ease, transform 0.8s 0.3s ease;
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.5s ease, transform 0.8s 0.5s ease;
}

.hero .slide.active .slide-label,
.hero .slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

/* CTA button anchored 40 px from the bottom of each slide */
.slide-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  height: 52px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 30px;
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.slide-cta sub {
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slide-cta:hover {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 0 28px rgba(230, 45, 45, 0.35);
}

.slide-cta svg {
  flex-shrink: 0;
}

/* Hero navigation arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.arrow:hover {
  background: rgba(230, 45, 45, 0.18);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* Hero dots */
.hero .dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero .dots button.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero .dots button.dot.active {
  background: var(--white);
  transform: scale(1.5);
}

/* Hero progress bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 10;
  transition: width linear;
}

/* Floating CTA badge (fixed, always visible) */
.hero-opening-badge {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 28px;
  padding: 16px 44px;
  border-radius: 60px;
  border: 2px solid var(--white);
  white-space: nowrap;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
  transition: background-color 0.3s;
}

.hero-opening-badge p {
  font-weight: 700;
  font-size: 16px;
  padding: 2px 0;
}

.hero-opening-badge:hover {
  background-color: var(--white);
  color: var(--red);
}


/* ─────────────────────────────────────────────────────────────────────────────
   3. OPENING BANNER  (#opening-section)
   ───────────────────────────────────────────────────────────────────────────── */

#opening-section {
  width: 100%;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow: hidden;
}

.opening-text {
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
}


/* ─────────────────────────────────────────────────────────────────────────────
   4. DARWIN BANNER  (#darwin-section)
   ───────────────────────────────────────────────────────────────────────────── */

#darwin-section {
  width: 100%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* ─────────────────────────────────────────────────────────────────────────────
   5. EXPLANATION  (#explanation-section)
   ───────────────────────────────────────────────────────────────────────────── */

#explanation-section {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 20px;
  background: var(--white);
  border-radius: 12px;
}

.explanation-leftcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.explanation-logowrap {
  flex: 1;
}

.explanation-logowrap img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.explanation-address {
  flex: 1;
  font-weight: 400;
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.25;
  margin-bottom: 20px;
}

.explanation-address h3 {
  font-weight: 600;
  font-size: 16px;
  color: var(--red);
  line-height: 1.25;
}

.explanation-textbox {
  flex: 2;
}

.explanation-headertext {
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.explanation-bodytext-h2 {
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.explanation-bodytext {
  font-weight: 400;
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   6. USER JOURNEY  (#journey-section)
   ───────────────────────────────────────────────────────────────────────────── */

#journey-section {
  width: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#journey-section img {
  width: 80%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   7. VIDEO  (#video-section)
   ───────────────────────────────────────────────────────────────────────────── */

#video-section {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#video-section video {
  width: 80%;
  height: auto;
  margin: 40px auto;
  object-fit: cover;
  display: block;
}


/* ─────────────────────────────────────────────────────────────────────────────
   8. STORIES CAROUSEL  (#section-stories)
   ───────────────────────────────────────────────────────────────────────────── */

#section-stories {
  min-height: 540px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px 100px;
  background-color: #F0F0F0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-wrapper {
  width: 100%;
  max-width: 1200px;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Carousel layout */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slides-window {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.slides-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Story slide card */
.slide {
  min-width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  gap: 36px;
  align-items: center;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

.slide-text {
  flex: 1;
}

.slide-text h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.3;
  margin-bottom: 16px;
}

.slide-text p {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.65;
}

.slide-video {
  flex: 0 0 340px;
  width: 340px;
}

/* YouTube thumbnail */
.yt-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.yt-thumb:hover img {
  transform: scale(1.04);
}

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.yt-thumb:hover .yt-play {
  background: rgba(0, 0, 0, 0.40);
}

.yt-play svg {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Stories carousel arrows */
.arrow2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: rgba(219, 219, 219, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.arrow2:hover {
  background: rgba(230, 45, 45, 0.18);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.arrow2-prev { left: 20px; }
.arrow2-next { right: 20px; }

/* Story dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--red);
}


/* ─────────────────────────────────────────────────────────────────────────────
   9. REGISTRATION MODAL  (#overlay / .modal)
   ───────────────────────────────────────────────────────────────────────────── */

/* Full-screen backdrop */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.72);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.overlay.active {
  display: flex;
}

/* Modal shell */
.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 16px;
  overflow: hidden;
  animation: popIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2.5rem 2rem;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 0.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
  background: var(--red);
  color: var(--white);
}

/* Contact card (used inside the inline contact section) */
.contact-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 36px 36px 40px;
  box-shadow: 0 12px 48px rgba(230, 45, 45, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}

.contact-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--red);
  text-align: center;
  margin-bottom: 14px;
}

/* Form layout */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-para {
  font-size: 14px;
  color: var(--dark-gray);
  text-align: center;
}

#myself-fields,
#others-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Shared textarea styling for both remark fields */
#my-remarks,
#reg-remarks {
  width: 100%;
  border: 1.5px solid #D8D8D8;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark-gray);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}

#my-remarks::placeholder,
#reg-remarks::placeholder {
  color: var(--light-gray);
}

/* Form field rows */
.form-row {
  display: flex;
  gap: 12px;
}

.form-row .field {
  flex: 1;
}

.field input,
.field select {
  width: 100%;
  border: 1.5px solid #D8D8D8;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark-gray);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder {
  color: var(--light-gray);
}

.field select {
  color: var(--light-gray);
}

.field select.selected {
  color: var(--dark-gray);
}

.field input:focus,
.field select:focus {
  border-color: var(--red);
}

/* Custom select arrow */
.field.select-wrap {
  position: relative;
}

.field.select-wrap::after {
  content: '\25BE';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-gray);
  font-size: 14px;
  pointer-events: none;
}

/* Registration type radio buttons */
.radio-group {
  display: flex;
  gap: 12px;
}

.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0 solid #D8D8D8;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--light-gray);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s;
}

.radio-option input[type="radio"] {
  width: auto;
  accent-color: var(--red);
  cursor: pointer;
}

.radio-option:has(input:checked) {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f5;
}

/* Submit button */
.btn-signup {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 15px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.1s;
}

.btn-signup:hover {
  background: var(--white);
  color: var(--red);
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.btn-signup:active {
  transform: scale(0.98);
}

/* Consent / marketing checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  color: var(--light-gray);
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: inherit;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: currentColor;
  cursor: pointer;
}

/* Highlight unchecked consent on attempted submit */
.checkbox-option.consent-error span {
  color: red;
}

.checkbox-option.consent-error input[type="checkbox"] {
  outline: 2px solid red;
  outline-offset: 1px;
}

/* Form status messages */
.form-message {
  display: none;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: #eafaf1;
  color: #1a7f3c;
  border: 1.5px solid #1a7f3c;
}

.form-message.error {
  background: #fef0f0;
  color: var(--red);
  border: 1.5px solid var(--red);
}

input.field-error,
textarea.field-error {
  border-color: red !important;
  color: red !important;
}

input.field-error::placeholder,
textarea.field-error::placeholder {
  color: red !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. FOOTER
   ───────────────────────────────────────────────────────────────────────────── */

footer {
  background: var(--white);
  padding: 20px 40px;
  border-top: 1px solid #E0E0E0;
}

footer p {
  font-size: 12px;
  color: var(--light-gray);
}


/* ─────────────────────────────────────────────────────────────────────────────
   11. UTILITY
   ───────────────────────────────────────────────────────────────────────────── */

/* Hidden on desktop; shown as inline element on mobile for controlled line breaks */
.mobile-break {
  display: none;
}

/* Extra bottom padding so the fixed CTA badge doesn't cover footer content */
.foot {
  padding-bottom: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   12. RESPONSIVE  (max-width: 768px)
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {

  /* Hero */
  #hero,
  .hero {
    height: 100svh;
    max-height: 480px;
  }

  /* Mobile slide images */
  .slide-bg {
    width: 100%;
    left: 0;
    transform: none;
  }

  .hero .slide:nth-child(1) .slide-bg { background-image: url('images/Landing Page 1p.jpg'); }
  .hero .slide:nth-child(2) .slide-bg { background-image: url('images/Landing Page 2p.jpg'); }
  .hero .slide:nth-child(3) .slide-bg { background-image: url('images/Landing Page 3p.jpg'); }
  .hero .slide:nth-child(4) .slide-bg { background-image: url('images/Landing Page 4p.jpg'); }
  .hero .slide:nth-child(5) .slide-bg { background-image: url('images/Landing Page 5p.jpg'); }

  .arrow {
    height: 26px;
    width: 26px;
  }

  /* Floating CTA badge */
  .hero-opening-badge {
    font-size: 24px;
    padding: 8px 22px;
    width: 90%;
    align-items: center;
    border-radius: 30px;
    bottom: 1rem;
  }

  .hero-opening-badge p {
    font-size: 14px;
    align-items: center;
  }

  /* Opening banner */
  .opening-text {
    font-size: 24px;
  }

  /* Darwin */
  #darwin-section img {
    max-width: 700px;
  }

  /* Explanation: stack columns vertically */
  #explanation-section {
    flex-direction: column;
    gap: 24px;
    margin: 16px;
    padding: 20px 16px 0;
  }

  .explanation-logowrap,
  .explanation-textbox {
    flex: none;
    width: 100%;
  }

  /* Video */
  #video-section video {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Stories carousel */
  #section-stories {
    padding: 40px 40px;
  }

  #section-stories .slide {
    flex-direction: column;
    padding: 24px 20px;
  }

  #section-stories .slide-video {
    flex: 0 0 auto;
    width: 100%;
  }

  .carousel {
    gap: 4px;
  }

  .slide {
    gap: 12px;
  }

  .arrow2 {
    height: 80px;
    width: 20px;
  }

  /* Modal / contact card */
  .modal-inner {
    padding: 20px;
  }

  .contact-card {
    padding: 36px 24px 32px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-title h2 {
    font-size: 20px;
  }

  .contact-logo {
    height: auto;
  }

  .contact-logo img {
    width: 60px;
  }

  /* Footer */
  footer {
    padding: 16px 20px;
  }

  .foot {
    padding-bottom: 150px;
  }

  /* Allow controlled line breaks */
  .mobile-break {
    display: inline;
  }
}
