/* ============================================================
   TILETECH — dark green, premium platform design
   ============================================================ */
:root {
  --ink: #15191C;
  --paper: #FFFFFF;
  --surface: #F2F6F3;
  --muted: #5B655F;
  --border: #E1E7E2;

  --accent: #1E7A4C;
  --accent-dark: #145C39;
  --accent-tint: #E4F1E9;

  --dark: #0A2318;
  --dark-2: #0F3323;
  --dark-border: rgba(255, 255, 255, .12);
  --on-dark: #F3F7F4;
  --on-dark-muted: #9FC0AC;

  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-brand: 'Playfair Display', serif;

  --wrap: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  background-image: radial-gradient(rgba(30, 122, 76, .09) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* ============================================================
   Type
   ============================================================ */
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--accent);
  margin: 0 0 12px;
  display: block;
}

.eyebrow--dark {
  color: #7FD9A6;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.16;
  margin: 0 0 18px;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ink);
}

.body-text {
  color: var(--muted);
  font-size: 17px;
  max-width: 54ch;
  margin: 0 0 18px;
}

.text-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  transition: color .2s var(--ease);
}

.text-link:hover {
  color: var(--accent-dark);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 35, 24, .06), 0 8px 20px -8px rgba(30, 122, 76, .55);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(30, 122, 76, .6);
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  border-color: var(--border);
  color: var(--ink);
  background: var(--paper);
}

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

.btn-outline--dark {
  border-color: var(--dark-border);
  color: var(--on-dark);
  background: rgba(255, 255, 255, .04);
}

.btn-outline--dark:hover {
  border-color: #7FD9A6;
  color: #7FD9A6;
  background: rgba(127, 217, 166, .08);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  text-align: center;
  border: none;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  min-height: var(--header-h);
  padding: 12px 0;
  display: flex;
  align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(10, 35, 24, .02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-text {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--on-dark);
  white-space: nowrap;
  transition: color .3s var(--ease);
}

.site-header.scrolled .brand-text {
  color: var(--ink);
}

.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color .3s var(--ease);
}

.site-header.scrolled .brand-sub {
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: rgba(243, 247, 244, .78);
  transition: color .3s var(--ease);
}

.nav-link:hover {
  color: #fff;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--on-dark);
  transition: color .3s var(--ease);
}

.header-phone:hover {
  color: #7FD9A6;
}

.site-header.scrolled .header-phone {
  color: var(--ink);
}

.site-header.scrolled .header-phone:hover {
  color: var(--accent);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-whatsapp svg {
  width: 16px;
  height: 16px;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--dark-border);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.site-header.scrolled .icon-btn {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled .nav-toggle {
  background: var(--surface);
  border-color: var(--border);
}

.nav-toggle span {
  height: 2px;
  width: 16px;
  margin: 0 auto;
  background: var(--on-dark);
  transition: background .3s var(--ease);
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

/* ============================================================
   Mobile menu — side drawer
   ============================================================ */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(10, 35, 24, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  width: min(86vw, 340px);
  background: var(--paper);
  box-shadow: -24px 0 60px -20px rgba(10, 35, 24, .3);
  display: flex;
  flex-direction: column;
  padding: 18px 22px 24px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.drawer-top .brand-text {
  color: var(--ink);
}

.drawer-top .brand-sub {
  color: var(--muted);
}

.menu-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-close svg {
  width: 15px;
  height: 15px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.drawer-nav a {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.drawer-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.drawer-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
}

.drawer-phone {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.drawer-whatsapp {
  color: #25D366;
}

.menu-lock {
  overflow: hidden;
}

/* ============================================================
   Hero — full viewport height at every width
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: calc(var(--header-h) + 24px) 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 15% 10%, rgba(127, 217, 166, .16), transparent 60%),
    radial-gradient(45% 45% at 90% 15%, rgba(30, 122, 76, .28), transparent 60%),
    linear-gradient(165deg, var(--dark), var(--dark-2) 80%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 85%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--on-dark);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 22px;
}

.hero-lead {
  color: var(--on-dark-muted);
  font-size: 19px;
  max-width: 50ch;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 1;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-muted);
  border: 1px solid var(--dark-border);
  background: rgba(255, 255, 255, .04);
  animation: bob 2.4s var(--ease) infinite;
}

.hero-scroll-cue svg {
  width: 16px;
  height: 16px;
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 6px);
  }
}

/* ============================================================
   Photo & logo slots (editable placeholders)
   ============================================================ */
.photo-slot {
  position: relative;
  aspect-ratio: 4/3;
  max-height: 280px;
  margin: 0;
  background: var(--accent-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
  overflow: hidden;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.photo-slot:hover {
  background: #D9EEE1;
  border-color: var(--accent);
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s var(--ease);
}

.ph-icon {
  width: 32px;
  height: 32px;
  opacity: .8;
}

.ph-icon svg {
  width: 100%;
  height: 100%;
}

.ph-label {
  font-weight: 600;
  font-size: 13px;
  opacity: .85;
}

/* ============================================================
   Sections shared
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Why section
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.point-list li {
  font-size: 16px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}

.point-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================================
   Services
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(10, 35, 24, .25);
  border-color: #CDE6D7;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent-dark);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  margin: 0;
  color: var(--ink);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 6px;
}

.tag-list li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-dark);
  padding: 6px 12px;
  background: var(--accent-tint);
  border-radius: 100px;
}

/* ============================================================
   Projects
   ============================================================ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   Clients (mini section)
   ============================================================ */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.logo-slot {
  position: relative;
  height: 96px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}

.logo-slot:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.logo-fallback {
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  padding: 0 16px;
}

.logo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(45% 60% at 100% 0%, rgba(30, 122, 76, .12), transparent 60%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin: 32px 0 0;
}

.contact-details dt {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-details dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -32px rgba(10, 35, 24, .2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-row label {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.form-status {
  min-height: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #C0392B;
  margin: 0;
}

.form-status.success {
  color: #1E8E5A;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7FD9A6, var(--accent) 55%, transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 68px 0 48px;
  border-bottom: 1px solid var(--dark-border);

}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-text {
  color: var(--on-dark);
}

.footer-tagline {
  color: var(--on-dark-muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 32ch;
  margin: 0 0 20px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark);
  padding: 10px 18px;
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, .04);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.footer-social-btn svg {
  width: 14px;
  height: 14px;
}

.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7FD9A6;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(243, 247, 244, .86);
  display: inline-block;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-col-nav a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-col-nav span {
  font-size: 14.5px;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #7FD9A6;
}

.footer-col--contact .footer-col-nav a:hover {
  transform: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 13.5px;
  color: var(--on-dark-muted);
}

.to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--dark-border);
  color: var(--on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.to-top svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:960px) {

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    margin-left: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-left: 10px;
  }
}

@media (max-width:1016px) {
  .wrap {
    padding: 0 24px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .hero {
    padding: calc(var(--header-h) + 20px) 0 64px;
  }

  .section {
    padding: 68px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    padding: 48px 0 36px;
    gap: 36px;
    margin-left: 10px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-col--contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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

  .photo-slot {
    max-height: none;
  }
}

@media(max-width:1200px) {
  .footer-bottom {
    margin-left: 10px;
  }

  .footer-top {
    margin-left: 10px;
  }
}