/* ============================================================
   STONEBRIDGE NEXOR CONSULTANT — Main Stylesheet
   ============================================================ */

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

:root {
  --navy:        #0B1F3A;
  --navy-deep:   #071429;
  --navy-mid:    #122848;
  --gold:        #D4AF37;
  --gold-light:  #E8CC6A;
  --stone:       #6B7280;
  --stone-light: #9CA3AF;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
  --container:  1280px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4rem;
}
.section-pad { padding: 6rem 0; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }

.gold-rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.section-tag {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-h2.light { color: var(--white); }

.section-body {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-secondary {
  display: inline-block;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 0.9rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  font-family: var(--sans);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,20,41,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}
#navbar.scrolled { border-bottom: 1px solid rgba(212,175,55,0.15); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  /* Logo has black background — screen blend makes black invisible on dark nav */
  mix-blend-mode: screen;
}

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.7rem; font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.5);
  padding: 0.55rem 1.35rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO — Dubai Marina / DIFC skyline background
   Photo from Unsplash: dark dusk city shot, high contrast
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 4rem 5rem;
}

/* 
  PHOTO LAYER — Unsplash Dubai skyline (night/dusk, premium)
  Using: photo-1512453979798-5ea266f8880c (Dubai Marina at night)
  w=1920 gives full HD, q=80 keeps it sharp
*/
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80&fit=crop');
  background-size: cover;
  background-position: center 40%;
}

/* Deep navy overlay — maintains brand color + makes text readable */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,20,41,0.88) 0%,
    rgba(11,31,58,0.78) 50%,
    rgba(11,31,58,0.55) 100%
  );
}

/* Subtle grid texture on top */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.08; color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-h1 em { font-style: italic; color: rgba(255,255,255,0.65); }

.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 500px;
  margin-bottom: 3rem;
}

.hero-btns { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 3.5rem; right: 4rem;
  display: flex; gap: 3.5rem;
  z-index: 2;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.1rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.hero-stat-label {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone-light);
  margin-top: 0.35rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--off-white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.about-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 300;
  color: var(--navy); line-height: 1.55;
  font-style: italic;
}

/* About photo: premium executive office — Unsplash */
.about-photo-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.about-photo {
  width: 100%; height: 340px;
  /* Photo: modern executive boardroom / office tower interior */
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=900&q=80&fit=crop');
  background-size: cover;
  background-position: center;
}

.about-photo-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--navy);
  padding: 1.5rem 1.75rem;
  min-width: 140px;
}
.about-badge-num {
  font-family: var(--serif);
  font-size: 2.25rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.about-badge-label {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem; line-height: 1.6;
}

.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.about-stat-box { padding: 1.75rem 1.5rem; }
.about-stat-box.dark { background: var(--navy); }
.about-stat-box.gold { background: var(--gold); }

.about-card-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; line-height: 1;
}
.about-stat-box.dark .about-card-num { color: var(--gold); }
.about-stat-box.gold .about-card-num { color: var(--navy); }

.about-card-label {
  font-size: 0.66rem; letter-spacing: 0.15em;
  text-transform: uppercase; line-height: 1.6;
  margin-top: 0.4rem;
}
.about-stat-box.dark .about-card-label { color: rgba(255,255,255,0.45); }
.about-stat-box.gold .about-card-label { color: rgba(11,31,58,0.6); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--navy); }

.services-header { margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), border-color var(--transition);
}
.service-item:hover {
  background: rgba(212,175,55,0.05);
  border-color: rgba(212,175,55,0.2);
}

.service-num {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 1.25rem;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 1rem;
  line-height: 1.25;
}
.service-desc {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.42); line-height: 1.85;
}

.service-cta {
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.service-quote {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 300;
  color: rgba(255,255,255,0.28);
  line-height: 1.35; font-style: italic;
  margin-bottom: 1.75rem;
}

/* ============================================================
   PHOTO BREAK — full-width cityscape
   Photo: Downtown Dubai / Burj Khalifa at blue hour
   ============================================================ */
.photo-break {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-attachment: fixed; /* parallax effect */
  background-position: center;
  position: relative;
}
.photo-break--city {
  /* Downtown Dubai, Burj Khalifa — dramatic blue hour */
  background-image: url('https://images.unsplash.com/photo-1518684079-3c830dcef090?w=1920&q=80&fit=crop');
}
.photo-break--city::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,20,41,0.55) 0%,
    rgba(7,20,41,0.2) 50%,
    rgba(7,20,41,0.55) 100%
  );
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--white); }

.industries-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start;
}

/* Photo: DIFC Gate / Dubai financial district towers — daytime premium */
.industries-photo {
  margin-top: 2.5rem;
  height: 220px;
  background-image: url('https://images.unsplash.com/photo-1596769480600-ca7ca9dc3a87?w=800&q=80&fit=crop');
  background-size: cover;
  background-position: center;
}

.industries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(11,31,58,0.1);
  margin-top: 1rem;
}
.industry-item {
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(11,31,58,0.08);
  font-size: 0.87rem; font-weight: 400;
  color: var(--navy); letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.75rem;
  transition: background var(--transition);
}
.industry-item:hover { background: var(--off-white); }
.industry-dot {
  width: 5px; height: 5px;
  background: var(--gold); flex-shrink: 0;
}

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--navy-deep); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.why-headline {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  font-weight: 300; color: var(--white);
  line-height: 1.08; letter-spacing: -0.01em;
}
.why-headline em { color: var(--gold); font-style: italic; }

.why-sub {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.42); line-height: 1.85;
  margin-top: 2rem; max-width: 420px;
}
.why-tagline {
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.45);
  margin-top: 2rem;
}

.why-right {
  border-left: 1px solid rgba(212,175,55,0.2);
  padding-left: 3.5rem;
}
.why-list {
  display: flex; flex-direction: column;
  gap: 1rem; margin-top: 2.5rem;
}
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  transition: border-color var(--transition);
}
.why-item:hover { border-color: rgba(212,175,55,0.2); }
.why-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-dot { width: 6px; height: 6px; background: var(--gold); }
.why-item-title {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.3rem;
}
.why-item-text {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* ============================================================
   INSIGHTS — cards with photo headers
   ============================================================ */
.insights { background: var(--off-white); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}

.insight-card {
  background: var(--white);
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}
.insight-card:hover { border-bottom-color: var(--gold); }

/* Photo headers for each insight card */
.insight-photo {
  width: 100%; height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.insight-card:hover .insight-photo { transform: scale(1.03); }

/* Photo 1: Dubai DIFC skyline at golden hour — financial district */
.insight-photo--dubai {
  background-image: url('https://images.unsplash.com/photo-1512632578888-169bbbc64f33?w=700&q=80&fit=crop');
  background-position: center 55%;
}
/* Photo 2: premium executive boardroom — glass table, city view */
.insight-photo--boardroom {
  background-image: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=700&q=80&fit=crop');
  background-position: center;
}
/* Photo 3: UAE as global hub — world map with golden connection routes */
.insight-photo--arch {
  background-image: url('../images/expansion-internacional.png');
  background-position: center center;
  background-size: cover;
}

.insight-body { padding: 1.75rem; }

.insight-cat {
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.85rem; display: block;
}
.insight-title {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 400;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 0.85rem;
}
.insight-excerpt {
  font-size: 0.82rem; font-weight: 300;
  color: var(--stone); line-height: 1.82;
}
.insight-footer {
  margin-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(11,31,58,0.08);
  padding-top: 1rem;
}
.insight-date {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--stone-light);
}

/* ============================================================
   CONTACT
   Photo: luxury executive / investor portrait tone — left panel
   ============================================================ */
.contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Decorative photo panel — Dubai Marina luxury towers, executive atmosphere */
.contact-photo-panel {
  position: absolute;
  top: 0; right: 0;
  width: 38%; height: 100%;
  /* Photo: Dubai Marina at night — luxury towers reflected on water */
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.contact-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: start;
}

.contact-sub {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.42); line-height: 1.85;
  margin-top: 1.5rem;
}
.contact-details {
  margin-top: 2.75rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-label {
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.contact-val {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* Form */
.contact-form { display: flex; flex-direction: column; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-size: 0.88rem; font-family: var(--sans); font-weight: 300;
  color: rgba(255,255,255,0.85);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(212,175,55,0.55); }
.form-group textarea { height: 130px; resize: vertical; margin-bottom: 1.25rem; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-note {
  font-size: 0.68rem; color: rgba(255,255,255,0.22);
  letter-spacing: 0.05em; margin-top: 1rem; text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}

.footer-logo-img {
  height: 90px; width: auto; object-fit: contain;
  /* Logo has black background — screen blend makes black invisible on dark footer */
  mix-blend-mode: screen;
}
.footer-tagline {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0.65; margin-top: 0.4rem;
}

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem; color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em; text-align: right; line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .nav-inner { padding: 0.85rem 2rem; }
  .nav-links { gap: 1.75rem; }
  .hero { padding: 8rem 2rem 5rem; }
  .hero-stats { right: 2rem; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .industries-inner, .why-inner, .contact-inner { gap: 3.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section-pad { padding: 4rem 0; }

  /* Nav */
  .nav-inner { padding: 0.85rem 1.5rem; flex-wrap: wrap; }
  .nav-logo-img { height: 38px; }
  .nav-links {
    display: none; flex-direction: column; gap: 1rem;
    width: 100%; padding: 1.25rem 0 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 7rem 1.5rem 8rem; align-items: flex-start; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-stats {
    position: static; margin-top: 3rem;
    gap: 2rem; flex-wrap: wrap;
  }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-badge { left: 0; }

  /* Sections stacked */
  .industries-inner,
  .why-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Why border shift */
  .why-right {
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(212,175,55,0.2);
    padding-top: 3rem;
  }

  /* Services / Industries */
  .services-grid { grid-template-columns: 1fr; }
  .industries-list { grid-template-columns: 1fr; }

  /* Insights */
  .insights-grid { grid-template-columns: 1fr; }

  /* Photo break */
  .photo-break { height: 260px; background-attachment: scroll; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Contact photo panel hidden on mobile */
  .contact-photo-panel { display: none; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
