/* ===============================
   COLOR SYSTEM
================================ */
:root {
  --red-primary: #c4161c;
  --red-dark: #9f1217;
  --white: #ffffff;
  --black: #0b0b0b;
  --gray-light: #f5f5f5;
}

/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
}

/* ===============================
   HEADER
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LOGO (HEADER FIX)
================================ */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;     /* KEY FIX */
  width: auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo img {
    max-height: 40px;
  }
}


/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* CTA BUTTON */
.btn-call {
  background: var(--red-primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-call:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 1.9rem;
  cursor: pointer;
  user-select: none;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    display: none;
    border-top: 1px solid #eee;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
/* ===============================
   HERO SECTION
================================ */
.hero {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("images/hero-bg.jpg") center / cover no-repeat;
  padding: 100px 20px 80px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-block;
  background: rgba(196, 22, 28, 0.1);
  color: var(--red-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--red-primary);
}

.hero-content p {
  font-size: 1.05rem;
  color: #444;
  max-width: 520px;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--red-primary);
  color: var(--red-primary);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--red-primary);
  color: var(--white);
}

/* RIGHT VISUAL */
.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--red-primary);
  animation: float 4s ease-in-out infinite;
}

.hero-card h3 {
  margin-bottom: 8px;
  color: var(--black);
}

.hero-card p {
  font-size: 0.95rem;
  color: #555;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: auto auto 30px;
  }

  .hero-actions {
    justify-content: center;
  }
}
/* ===============================
   ABOUT SECTION – PREMIUM
================================ */
.about {
  background: var(--white);
  padding: 100px 20px;
}

/* SECTION HEADING */
.about-heading {
  text-align: center;
  margin-bottom: 70px;
}

.about-heading h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.about-heading h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--red-primary);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* GRID */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image-accent {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 120px;
  height: 120px;
  background: var(--red-primary);
  border-radius: 20px;
  z-index: -1;
}

/* CONTENT */
.about-content {
  max-width: 560px;
}

.about-content h3 {
  font-size: 2.1rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.about-points {
  list-style: none;
  margin: 25px 0 35px;
}

.about-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red-primary);
  font-weight: bold;
}

/* BUTTON */
.about-btn {
  margin-top: 10px;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-accent {
    display: none;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-points {
    max-width: 320px;
    margin: 25px auto 35px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 70px 18px;
  }

  .about-heading {
    margin-bottom: 40px;
  }

  .about-heading h2 {
    font-size: 2.2rem;
  }

  .about-content h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 10px auto 0;
    padding: 16px 0;
    font-size: 1rem;
    border-radius: 40px;
  }
}
/* ===============================
   SERVICES – DARK PREMIUM
================================ */
.services-dark {
  background: #1f2933;
  padding: 100px 20px;
  color: #ffffff;
}

/* SECTION HEADING */
.services-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.services-tag {
  display: inline-block;
  background: 111827(196, 22, 28, 0.15);
  color: var(--red-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.services-heading h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  font-weight: 800;
}

.services-heading p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
}

/* GRID */
.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #121212;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(196, 22, 28, 0.4);
}

/* ICON */
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(196, 22, 28, 0.15);
  color: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* TEXT */
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-dark {
    padding: 80px 18px;
  }

  .services-heading h2 {
    font-size: 2.1rem;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 35px 26px;
  }
}
/* ===============================
   WHY CHOOSE US – PREMIUM
================================ */
.why-choose {
  background: #f9fafb; /* light contrast for flow */
  padding: 100px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.why-heading {
  text-align: center;
  margin-bottom: 60px;
}

.why-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 750px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
}

/* CARD */
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--red-primary);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose {
    padding: 80px 18px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   OUR TRACK RECORD – DARK PREMIUM
================================ */
.stats-section {
  background: #1f2933; /* same family as services */
  padding: 100px 20px;
  color: #ffffff;
}

/* SECTION HEADING */
.stats-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.stats-heading .section-title {
  color: #ffffff;
}

.stats-heading .section-title::after {
  background: var(--red-primary);
}

.stats-heading p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-top: 18px;
}

/* GRID */
.stats-container {
  max-width: 1200px;
  margin: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.stat-card {
  background: #111827; /* slightly darker for depth */
  padding: 45px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(196, 22, 28, 0.45);
}

/* NUMBER */
.stat-card h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

/* LABEL */
.stat-card p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 80px 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 2.4rem;
  }
}
/* ===============================
   TESTIMONIALS SECTION
================================ */
.testimonials {
  background: #ffffff;
  padding: 100px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.testimonials-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.testimonials-subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #f9fafb;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* TEXT */
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 80px 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-subtitle {
    font-size: 0.95rem;
  }
}
/* ===============================
   CONTACT CTA – PREMIUM (WITH FORM)
================================ */
.contact-cta {
  background: #1f2933;
  padding: 110px 20px;
  color: #ffffff;
}

.contact-cta-container {
  max-width: 1200px;
  margin: auto;
}

/* CTA BOX */
.contact-cta-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 26px;
  padding: 70px 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.contact-content {
  max-width: 520px;
}

/* TAG */
.cta-tag {
  display: inline-block;
  background: rgba(196, 22, 28, 0.18);
  color: var(--red-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */
.contact-title {
  color: #ffffff;
}

.contact-title::after {
  background: var(--red-primary);
}

/* SUBTITLE */
.contact-subtitle {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #d1d5db;
  line-height: 1.7;
}

/* ACTIONS */
.contact-actions {
  margin-top: 35px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* CTA BUTTON BASE */
.cta-btn {
  min-width: 180px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY CALL */
.btn-primary {
  background: var(--red-primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(196, 22, 28, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(196, 22, 28, 0.6);
}

/* WHATSAPP */
.btn-whatsapp {
  border: 2px solid #25d366;
  color: #25d366;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

/* WHATSAPP ICON */
.whatsapp-icon {
  width: 18px;
  height: 18px;
}

/* NOTE */
.cta-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 35px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 16px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red-primary);
}

/* FORM BUTTON */
.form-btn {
  width: 100%;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-content {
    max-width: 100%;
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-cta {
    padding: 90px 18px;
  }

  .contact-cta-box {
    padding: 45px 25px;
  }

  .contact-form-box {
    padding: 30px 22px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
    margin: auto;
  }
}

/* ===============================
   FOOTER – PREMIUM
================================ */
.site-footer {
  background: #111827; /* darker than stats for closure */
  color: #d1d5db;
  padding: 80px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: var(--red-primary);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #9ca3af;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--red-primary);
}

/* CONTACT */
.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #d1d5db;
}

/* ===============================
   FOOTER BOTTOM BAR (FIXED WHITE TEXT)
================================ */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  background: #111827;
}

.site-footer .footer-bottom,
.site-footer .footer-bottom p,
.site-footer .footer-bottom * {
  color: #ffffff !important;
  opacity: 1 !important;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 18px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul,
  .footer-contact {
    text-align: center;
  }
}
.footer-contact a {
  color: #ffffff;         
  text-decoration: none;  
  transition: 0.3s ease;   
}

.footer-contact a:hover {
  color: #c4161c;          
}



/* ===============================
   FLOATING CALL & WHATSAPP BUTTONS
================================ */
.floating-btn {
  position: fixed;
  left: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CALL BUTTON */
.call-btn {
  bottom: 95px;
  background: #ffffff;
  animation: pulse 2.5s infinite;
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(196, 22, 28, 0.6);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  bottom: 25px;
  background: #25d366;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 22, 28, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(196, 22, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 22, 28, 0);
  }
}

/* MOBILE BUTTON ADJUSTMENTS */
@media (max-width: 600px) {
  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    left: 18px;
  }

  .call-btn {
    bottom: 85px;
  }

  .whatsapp-btn {
    bottom: 20px;
  }
}

/* FORM FEEDBACK */
.form-success,
.form-error {
  display: none;
  margin-top: 15px;
  font-size: 0.95rem;
}

.form-success {
  color: #22c55e;
}

.form-error {
  color: #ef4444;
}

/* FOOTER LOGO */
.footer-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

@media (max-width: 600px) {
  .footer-logo {
    max-height: 42px;
    margin-left: auto;
    margin-right: auto;
  }
}

