/*global reset*/
body,
main {
  margin: 0;
  padding: 0;
}

/*typography*/
body {
  padding-top: 90px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #071322;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.hero-stat-label,
.bay-label,
.bay-footer,
.dog-meta,
.footer-links h3 {
  font-weight: 600;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}


html {
  scroll-padding-top: 90px;
}

/*used to stop horizontal scrolling*/
html,
body {
  overflow-x: hidden;
}

/*used to sizing adjusts on smaller screens for images and iframes*/
img,
iframe {
  max-width: 100%;
}

/*prevents borders and padding from making sections wider than expected*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*global overflow protection*/
.hero,
.wash-menu,
.self-service,
.dog-wash,
.location,
.faq,
.self-grid,
.dog-layout,
.location-grid,
.self-info,
.self-bays-wrapper,
.dog-info,
.dog-image,
.location-details,
.location-map,
.wash-card,
.bay-card {
  min-width: 0;
}

/*text wrapping protection*/
h1,
h2,
h3,
p,
span,
td,
a,
li {
  overflow-wrap: break-word;
}


/*spacing for each section on desktop and mobile*/
.hero,
.facility,
.wash-menu,
.self-service,
.dog-wash,
.location,
.faq {
  margin: 24px;
}

@media (max-width: 768px) {

  .hero,
  .facility,
  .wash-menu,
  .self-service,
  .dog-wash,
  .location,
  .faq {
    margin: 16px;
  }

}

/*top bar desktop*/
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #062b3d;
  border-bottom: 1px solid #0d3a52;
}


.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}


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


.hero-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.hero-menu a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hero-menu a:hover {
  color: #ffffff;
}

.hero-menu a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.hero-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-drive {
  background-color: #3dbff3;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-drive:hover {
  background-color: #5cd3ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*top bar mobile*/
@media (max-width: 768px) {

  .hero-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 0;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transform-origin: center;
    transition:
      transform 0.28s ease,
      opacity 0.28s ease,
      background-color 0.28s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .btn-drive {
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-menu {
    order: 3;
    width: 100%;
    flex: none;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 1rem;
    padding: 0;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition:
      max-height 0.28s ease,
      opacity 0.28s ease,
      padding 0.28s ease;

    background: #062b3d;
    box-sizing: border-box;
  }

  .hero-nav.open .hero-menu {
    max-height: 260px;
    opacity: 1;
    padding: 1rem 0;
  }

  .hero-menu a {
    display: block;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    padding: 0.4rem 0;
    margin: 0;
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }

  .hero-menu a:hover {
    transform: translateX(4px);
  }

  .hero-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 6px;
    padding: 0.4rem 0;
  }

}

/*revive ride desktop*/
.hero {
  background: #f4f4f4;
  border: 1px solid #e1e1e1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.hero-text {
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 700;
  color: #071322;
}

.hero h1 span {
  background: linear-gradient(90deg,
      #0c4a6e 0%,
      #1976a5 40%,
      #3dbff3 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 520px;
  margin-top: 1.25rem;

  font-size: 1rem;
  line-height: 1.7;
  color: #3b4654;
}

.hero-stats {
  width: 100%;
  margin-top: 1.5rem;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border: 1px solid #dddddd;
}

.hero-stat {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dddddd;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #888;
  margin-bottom: 0.75rem;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #071322;
}

.hero-stat-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}

/*revive ride mobile*/
@media (max-width: 768px) {

  .hero {
    padding: 1.5rem 1.25rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }

  .hero-stat {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    min-width: 0;
  }

  .hero-stat-value {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    line-height: 1.2;
  }

  .hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/*facility photos desktop*/
.facility {
  background: #f4f4f4;
  border: 1px solid #dddddd;
}

.facility .section-header {
  padding: 32px 32px 0;
}

.facility .section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: #071322;
  margin: 0.5rem 0 0.75rem;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.facility-item {
  display: flex;
  flex-direction: column;
}

.facility-item img {
  width: 100%;
  border-radius: 6px;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}

.facility-label {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #071322;
  text-align: center;
  letter-spacing: 0.02em;
}

/*facility photos mobile*/
@media (max-width: 768px) {
  .facility {
    margin: 16px;
  }

  .facility-item img {
    height: 180px;
  }
}

@media (max-width: 1024px) {
  .facility-grid {
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    padding: 24px 32px;
  }
}

@media (max-width: 480px) {
  .facility-grid {
    grid-template-columns: 1fr; 
    gap: 16px;
    padding: 16px;
  }

  .facility-item img {
    height: 160px;
    object-fit: cover;
  }
}


/*wash menu desktop*/
.wash-menu {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  min-width: 0;
}

.wash-menu .section-header {
  padding: 2rem;
  border-bottom: 1px solid #dddddd;
}

.wash-menu h2 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
  color: #071322;
}

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

.wash-card {
  padding: 2.5rem;
  border-right: 1px solid #dddddd;
}

.wash-card:last-child {
  border-right: none;
}

.wash-card h3 {
  margin: 0;
  font-size: 2rem;
  color: #071322;
}

.wash-price {
  margin: 1rem 0 2rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #071322;
}

.wash-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wash-features li {
  padding: 0.85rem 0;
  border-bottom: 1px solid #e5e5e5;
  color: #444;
  font-size: 0.95rem;
}

.wash-features li::before {
  content: "✓ ";
  color: #3dbff3;
  font-weight: bold;
}

.recommended {
  border-top: 4px solid #3dbff3;
}

.wash-pill {
  display: inline-block;

  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;

  background: #0c4a6e;
  color: white;

  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

/*wash menu mobile*/
@media (max-width: 768px) {

  .wash-menu {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .wash-menu .section-header {
    padding: 1.5rem;
  }

  .wash-menu h2 {
    font-size: 2rem;
  }

  .wash-packages {
    grid-template-columns: 1fr;
  }

  .wash-card {
    border-right: none;
    border-bottom: 1px solid #dddddd;
    padding: 1.75rem;
    min-width: 0;
  }

   .wash-card:first-child {
    border-top: none;
  }

  .wash-card:last-child {
    border-bottom: none; 
  }

  .wash-price {
    font-size: clamp(2.5rem, 12vw, 3rem);
  }

}


/*self service desktop*/
.self-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px;
}

/*self service left panel desktop*/
.self-info {
  background: #f4f4f4;
  border: 1px solid #ddd;
}

.self-info,
.self-bays-wrapper {
  padding: 24px;
}

.self-info h2 {
  margin-top: 20px;
  font-size: 3rem;
  line-height: 0.9;
  color: #071322;
}

.self-description {
  margin-top: 24px;
  line-height: 1.8;
  color: #444;
}


.self-pricing {
  margin-top: 40px;

  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
}

.price-box {
  flex: 1;
  padding: 12px 16px;
  border-right: 1px solid #ddd;
  min-width: 0;
}

.price-box:last-child {
  border-right: none;
}

.price-box strong {
  display: block;
  font-size: 2rem;
  color: #071322;
}

.price-box span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #666;
}

/*self service right panel desktop*/
.self-bays-wrapper {
  background: #f4f4f4;
  border: 1px solid #ddd;
  padding: 24px;
}

.bays-header {
  display: flex;
  justify-content: space-between;

  margin-bottom: 16px;

  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #777;
}

.self-bays {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  min-width: 0;
}

.bay-card {
  min-height: 250px;

  padding: 16px;

  background: #dff2fb;

  border: 2px solid #3dbff3;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-width: 0;
}

.bay-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #1976a5;
}

.bay-number {
  font-size: 4rem;
  font-weight: 700;
  color: #062b3d;
}

/* .bay-footer {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #1976a5;
} */

.bay-footer {
  font-size: 0.7rem;
  text-align: left;
  line-height: 1.5rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.5rem;
  white-space: normal; /* allows wrapping */
  color: #1976a5;
}


.self-extras {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}


.self-extras div {
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 0.75rem;
  color: #666;
  min-width: 0;
}

/*self service mobile*/
@media (max-width: 768px) {

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

  .self-info,
  .self-bays-wrapper {
    padding: 24px;
  }

  .self-info h2 {
    font-size: 2.5rem;
  }

  .self-pricing {
    grid-template-columns: 1fr;
  }

  .price-box {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .price-box:last-child {
    border-bottom: none;
  }

  .self-bays {
    grid-template-columns: 1fr;
  }

  .bay-card {
    min-height: 160px;
  }

  .bay-number {
    font-size: 3rem;
  }

  .self-extras {
    grid-template-columns: 1fr;
  }

}

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

  .self-info,
  .self-bays-wrapper {
    padding: 24px;
  }

  .bay-card {
    min-height: 180px;
  }
}

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

  .self-info,
  .self-bays-wrapper {
    padding: 24px;
  }

  .bay-card {
    min-height: 180px;
  }
}

@media (max-width: 1440px) {
  .self-info,
  .self-bays-wrapper {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .bay-footer {
    font-size: 0.6rem;
    line-height: 1.1rem;
  }
}

/*dog wash desktop*/
.dog-row span:last-child {
  word-break: break-word;
}

.dog-wash .dog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* left panel */
.dog-info {
  background: #062b3d;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #0d3a52;
}

.dog-wash .section-tag {
  color: #ffffff; 
}

.dog-info h2 {
  font-size: 3rem;
  line-height: 0.95;
  margin: 0;
  color: #ffffff;
}

.dog-info .section-subtitle {
  color: #cfe6f3;
  line-height: 1.7;
}

.dog-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.dog-price {
  font-size: 3rem;
  font-weight: 700;
  color: #3dbff3;
}

.dog-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #b7d7e6;
}

.dog-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dog-row span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #9ccfe6;
}

.dog-row span:last-child {
  font-size: 0.95rem;
  color: #e6f3fb;
}

.dog-image {
  background: #000;
  border: 1px solid #ddd;
  overflow: hidden;
  position: relative;
}

.dog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dog-image::after {
  content: "K9000 • raised tub, sprayer, dryer";
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

/*dog wash mobile*/
@media (max-width: 768px) {
  .dog-wash .dog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dog-pricing {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .dog-info {
    padding: 24px;
  }

  .dog-info h2 {
    font-size: 2.4rem;
  }

  .dog-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dog-image {
    min-height: 260px;
  }
}

/*location section desktop*/
.location-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px;
  align-items: stretch;
}

.location-details {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.location-details h2 {
  margin: 0.75rem 0 0.25rem;

  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.9;

  color: #071322;
}

.location-city {
  margin-bottom: 1.25rem;
  color: #666;
}

.location-details table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.location-details td {
  padding: 0.7rem 0;
  border-bottom: 1px solid #dddddd;
  word-break: break-word;
}

.location-details td:first-child {
  width: 90px;

  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #777;
}

.location-details td:last-child {
  color: #333;
}

.location-details a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.location-details table a {
  color: #071322;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-details table a:hover {
  color: #3dbff3;
}

.location-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.location-actions .btn {
  flex: 1;

  background: #0c4a6e;
  color: #fff;

  text-align: center;
  text-decoration: none;
  font-weight: 600;

  padding: 0.8rem 1rem;
  border-radius: 6px;

  transition: background-color 0.2s ease;
}

.location-actions .btn:hover {
  background: #3dbff3;
}

.location-actions .btn-secondary {
  background: #e5e5e5;
  color: #071322;
}

.location-actions .btn-secondary:hover {
  background: #d8d8d8;
}

.location-map {
  border: 1px solid #dddddd;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;

  display: block;
  border: 0;
}

/*location section mobile*/
@media (max-width: 768px) {

  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-details {
    padding: 24px;
  }

  .location-details h2 {
    font-size: 2.5rem;
  }

  .location-details td:first-child {
    width: 65px;
  }

  .location-map iframe {
    height: 320px;
    min-height: 320px;
  }

  .location-actions {
    flex-direction: column;
  }

}

@media (max-width: 1024px) {

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

}

@media (max-width: 1400px) {
  .location-actions {
    flex-direction: column;
  }
}

/*FAQ section desktop*/
.faq {
  background: #f4f4f4;
  border: 1px solid #dddddd;  
}

.faq .section-header {
  padding: 32px;
  border-bottom: 1px solid #dddddd;
}

.faq .section-header h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.1;
  color: #071322;
}

/*FAQ list*/
.faq-list {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/*FAQ item*/
.faq-item {
  border: 1px solid #dddddd;
  background: #ffffff;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/*active FAQ*/
.faq-item.active {
  background: #dff2fb;
  border-color: #3dbff3;
}

/*question button*/
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  padding: 1.25rem 1.5rem;

  background: transparent;
  border: none;

  cursor: pointer;

  text-align: left;

  font-size: 1rem;
  font-weight: 600;
  color: #071322;

  transition: color 0.25s ease;
}

.faq-question span:first-child {
  overflow-wrap: break-word;
}

.faq-item.active .faq-question {
  color: #062b3d;
}

/*plus icon*/
.faq-toggle {
  flex-shrink: 0;

  font-size: 1.5rem;
  font-weight: 400;

  color: #3dbff3;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/*rotate plus into x*/
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/*answer*/
.faq-answer {
  max-height: 0;
  overflow: hidden;

  opacity: 0;

  padding: 0 1.5rem;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #444;
}

/*open state*/
.faq-item.active .faq-answer {
  max-height: 250px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem;
}

/*FAQ section mobile*/
@media (max-width: 768px) {

  .faq .section-header {
    padding: 24px;
  }

  .faq-list {
    padding: 24px;
    gap: 10px;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-toggle {
    font-size: 1.3rem;
  }
}

/*footer section desktop*/
.site-footer {
  background: #062b3d;
  color: #cfe6f3;

  margin-top: 24px;
  padding: 48px 0 24px;

  border-top: 1px solid #0d3a52;
}

/*top section*/
.footer-top {
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;

  align-items: start;
}

/*brand column*/
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  line-height: 0;
}

.footer-logo img {
  display: block;

  width: 220px;
  height: auto;

  object-fit: contain;
}

/*socials*/
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;

  margin-top: 20px;
}

.footer-social .social-icon:nth-child(2) svg {
  width: 26px;
  height: 26px;
}

.footer-social .social-icon {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #3dbff3;
  transition: 0.2s ease;
}

.footer-social .social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social .social-icon:hover {
  background: #e9e9e9;
  border-color: #c8c8c8;
  color: #5cd3ff;
}

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

.footer-links h3 {
  margin: 0 0 12px;

  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #9ccfe6;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfe6f3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #3dbff3;
}

.footer-links p {
  margin: 0;
  line-height: 1.8;
}

/*divider*/
.footer-bar {
  max-width: 1200px;

  margin: 32px auto 0;
  padding: 0 24px;

  position: relative;
}

.footer-bar::before {
  content: "";

  display: block;
  width: 100%;
  height: 1px;

  background: #0d3a52;
}

/*footer section mobile*/
@media (max-width: 1024px) {

  .footer-top {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-links {
    gap: 32px;
  }

}

@media (max-width: 768px) {

  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;

    text-align: center;
  }

  .footer-logo img {
    width: 160px;
  }

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

    text-align: center;
  }

  .footer-bar {
    margin-top: 24px;
  }

  .footer-bottom {
    padding: 12px 16px 0;
  }

  .footer-desc {
    font-size: 0.8rem;
  }
/* 
  .footer-social .social-icon:nth-child(2) svg {
    transform: translateX(0px) translateY(-0.5px);

  } */

}