/* Gotham Font Family */

/* Gotham Regular */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Gotham Medium */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Gotham Light */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Gotham Thin */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Gotham Extra Light */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Gotham Ultra */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Gotham Rounded */
@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham Narrow */
@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Gotham Extra Narrow */
@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #416ba9;
  --primary-lighter: #0072bb;
  --primary-rgba: rgba(65, 107, 169, 0.64);
  --primary-linear: linear-gradient(90deg,
      #416ba9 0%,
      rgba(0, 114, 187, 0) 100%);
  --primary-linear-reversed: linear-gradient(90deg,
      rgba(0, 114, 187, 0) 0%,
      #416ba9 100%);
  --white: #fff;
  --black: #000;
  --font: "Gotham", sans-serif;
  --youtube-red: #ff0000;
  --transition: all 0.2s ease-in-out;
  --hover-dark: #2f5183;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 100%;
  /* Bootstrap default */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  /* 16px */
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol,
li {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid transparent;
}

input:focus {
  outline: none;
  border: 1px solid transparent;
}

/* Swiper Custom Styles */
.mainSlider .swiper-button-next,
.mainSlider .swiper-button-prev {
  color: #ffffff;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.mainSlider .swiper-button-next:hover,
.mainSlider .swiper-button-prev:hover {
  opacity: 1;
}

.mainSlider .swiper-button-next::after,
.mainSlider .swiper-button-prev::after {
  font-size: 40px !important;
  font-weight: 300;
}

.mainSlider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ffffff;
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.mainSlider .swiper-pagination-bullet-active {
  background: transparent;
  border: 1px solid #ffffff;
  transform: scale(1.5);
}

.mainSlider .swiper-pagination {
  bottom: 30px !important;
}

/* Responsive Font Sizes */
@media (max-width: 992px) {
  .mainSlider h2 {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 768px) {
  .mainSlider h2 {
    font-size: 2.2rem !important;
  }
}

/* Services Tabs Custom Styles */
.custom-tab {
  background-color: rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s ease;
}

.custom-tab:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.custom-tab.active {
  background-color: #f67a22 !important;
  color: #ffffff !important;
}

.service-card-hover img {
  transition: transform 0.5s ease;
}

.service-card-hover:hover img {
  transform: scale(1.05);
}

/* Video Card Hover Styles */
.video-overlay {
  transition: background-color 0.4s ease;
}

.video-card:hover .video-overlay {
  background-color: rgba(30, 30, 40, 0.85) !important;
}

.video-card img {
  transition: transform 0.6s ease;
}

.video-card:hover img {
  transform: scale(1.08);
}

.video-card i.bi-play-circle-fill {
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-card:hover i.bi-play-circle-fill {
  transform: scale(1.15);
  color: #f67a22 !important;
}

/* Location Item Styles */
.location-item {
  padding-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.location-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.location-item.active::after {
  height: 3px;
  background-color: #ffffff;
  z-index: 2;
}

.location-item h5,
.location-item p {
  transition: all 0.3s ease;
}

.location-item:not(.active) h5,
.location-item:not(.active) p {
  opacity: 0.6 !important;
}

/* Header Architecture (BEM) */
.site-header {
  position: absolute;
  width: 100%;
  z-index: 1030;
  transition: all 0.3s ease;
}

.site-header__top-bar {
  padding: 0.5rem 0;
}

.site-header__top-left,
.site-header__top-right {
  display: flex;
  gap: 1.5rem;
}

.site-header__top-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.site-header__top-link:hover, 
.site-header__top-link:focus, 
.site-header__top-link:active {
  color: #f67a22 !important;
}

.site-header__top-contact {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.site-header__top-contact:hover,
.site-header__top-contact:focus,
.site-header__top-contact:active {
  color: #f67a22 !important;
}

.site-header__navbar {
  padding: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.site-header__navbar-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: #ffffff24;
  height: 80px;
  backdrop-filter: blur(7px);
}

.site-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-right: 1px solid #f1f1f1;
  background: transparent;
  padding: 0 1.5rem;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.site-header__brand {
  display: none;
  align-items: center;
  padding: 0 1rem;
  margin: 0;
}

.site-header.is-sticky .site-header__brand {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.site-header__logo {
  max-height: 65px;
  width: 100%;
}

.site-header__nav-list {
  gap: 0.3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-left: .5rem !important;
}

.btn-primary-custom:hover {
    border: 2px solid #f67a22;
    color: #000000 !important;
}

.site-header__hamburger > div > span {
    background-color: #fff !important;
}

.site-header.is-sticky .site-header__hamburger > div > span {
    background-color: #000 !important;
}

.site-header.is-sticky .site-header__nav-link {
    color: #000;
}

.site-header.is-sticky .site-header__search-icon {
    color: #000 !important;
}

.site-header__nav-list .nav-item ul.dropdown-menu li > a.dropdown-item {
    font-size: .8rem !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #f8f9fa !important;
    color: #f67a22 !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #f67a22 !important;
    color: #ffffff !important;
}

.site-header__nav-link:focus {
    color: #f67a22;
}

@media (min-width: 1200px) {
  .site-header__nav-list {
    gap: 0.4rem;
  }
}

@media (min-width: 1400px) {
  .site-header__nav-list {
    gap: 0.8rem;
  }
}

.site-header__nav-link {
  color: #ffffff;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-size: 12.5px;
}

.site-header__nav-link:hover {
  color: #f67a22;
}



.site-header__nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f67a22;
  transition: width 0.3s ease;
}

.site-header__nav-link:hover::before {
  width: 100%;
}

.site-header__search-icon {
  color: #ffffff;
  font-size: 1.25rem;
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.site-header .dropdown-toggle::after {
  display: none !important;
}

.site-header__search-icon:hover {
  color: #f67a22;
}

.site-header__btn-appointment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  font-weight: 700;
  border-radius: 0;
  border: none;
  margin-left: auto;
  white-space: nowrap;
  background-color: #f67a22;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 13px;
  text-decoration: none;
}

.site-header__btn-appointment:hover {
  background-color: #d96818;
  color: #fff;
}

.site-header__search-overlay {
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
  background-color: #fff;
  animation: fadeIn 0.3s ease;
}

.site-header__search-overlay.d-flex {
  display: flex !important;
}

.site-header__search-input {
  border: none;
  box-shadow: none;
  font-size: 1.25rem;
  padding: 0 1.5rem;
  height: 100%;
  color: #6c757d;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-grow: 1;
}

.site-header__search-input:focus {
  box-shadow: none;
  outline: none;
  background: transparent;
}

.site-header__search-close {
  color: #212529;
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.site-header__search-close:hover {
  opacity: 1;
}

/* Sticky Header */
.site-header.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.4s ease forwards;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.site-header.is-sticky .site-header__top-bar {
  display: none !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Services Card (BEM) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 100%;
  width: 100%;
  min-height: 380px; /* Force a minimum height so it never collapses completely */
}

/* Ensure Swiper wrappers and slides take full height */
.servicesSwiper, .servicesSwiper .swiper-wrapper, .servicesSwiper .swiper-slide {
  height: 100%;
}

.services-card {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #333;
  text-decoration: none;
  border-radius: 0;
}

.services-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.services-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
  transition: opacity 0.5s ease;
}

.services-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 2;
}

.services-card__title {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  transition: color 0.3s ease;
}

/* Services Card Hover */
.services-card:hover .services-card__img {
  transform: scale(1.1);
  opacity: 0.8;
}

.services-card:hover .services-card__title {
  color: #f67a22;
}

/* Services Swiper Pagination */
.services-pagination.swiper-pagination-bullets {
  bottom: -10px;
}

.services-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #fff;
  opacity: 0.5;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

/* Home Slider (BEM) */
.home-slider {
  position: relative;
}

.home-slider__slide {
  height: 100vh !important;
  position: relative;
}

.home-slider__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-slider__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.home-slider__content-wrap {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  /* padding-bottom: 8rem; */
  top: 50%;
}

.home-slider__text-box {
  max-width: 800px;
  padding: 0 15px;
  height: 100%;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  text-align: end;
  align-items: end;

}

.home-slider__logo {
  max-height: 70px;
  margin-bottom: 1.5rem;
}

.home-slider__title {
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.25;
  font-family: 'Arial', sans-serif;
  margin: 0;
  text-align: justify;
}

@media (max-width: 992px) {
  .home-slider__title {
    font-size: 2.5rem;
  }

  .home-slider__content-wrap {
    padding-bottom: 6rem;
  }
}

@media (max-width: 768px) {
  .home-slider__title {
    font-size: 2rem;
  }

  .home-slider__content-wrap {
    padding-bottom: 5rem;
    justify-content: center;
  }

  .home-slider__text-box {
    text-align: center;
  }
}

/* Generic Section Styles */
.section-white {
  background-color: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  font-family: 'Arial', sans-serif;
}

.section-subtitle {
  font-size: 1.8rem;
  font-family: 'Arial', sans-serif;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
}

.btn-primary-custom {
  background-color: #f67a22;
  font-size: .8rem;
  letter-spacing: 0.5px;
  padding: .5rem 1rem !important;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary-custom__icon {
  line-height: 1;
}

/* Services Tabs & Video Cards */
.services-tabs-section {
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

.custom-tab__icon {
  margin-top: -2px;
}

.custom-tab__text {
  font-size: 1rem;
  line-height: 1.6;
}

.services-tab-pane {
  min-height: 480px;
}

.video-card {
  height: 220px;
}

.video-card__img {
  z-index: 0;
}

.video-card__overlay {
  background: rgba(90, 90, 100, 0.6);
  z-index: 1;
}

.video-card__content {
  z-index: 2;
}

.video-card__title {
  font-size: 1.2rem;
}

.video-card__play-icon {
  font-size: 2.5rem;
  line-height: 1;
  width: 45px;
  height: 45px;
}

/* Expertise Section */
.bg-light-gray {
  background-color: #f5f6f7;
}

.expertise-section {
  overflow: hidden;
}

.expertise-section__pattern {
  background-position: center;
  background-repeat: repeat;
  opacity: 0.8;
  z-index: 0;
}

.expertise-section__fade-top {
  height: 80px;
  background: linear-gradient(180deg, #f5f6f7 0%, rgba(245, 246, 247, 0) 100%);
  z-index: 1;
}

.expertise-section__fade-bottom {
  height: 80px;
  background: linear-gradient(0deg, #f5f6f7 0%, rgba(245, 246, 247, 0) 100%);
  z-index: 1;
}

.expertise-section__desc {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 900px;
}

/* Team Slider */
.team-card {
  border-color: #e5e5e5 !important;
  height: 320px;
}

.team-card__info {
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;
  width: 85%;
  padding: 0 5px;
}

.team-card__name {
  font-size: 1rem;
}

.team-card__role {
  font-size: .9rem;
}

.team-card__divider {
  width: 80%;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 45px;
}

.team-slider__btn {
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 10;
}

.team-slider__btn--prev {
  left: -10px;
}

.team-slider__btn--next {
  right: -10px;
}

/* Promo Video */
.bg-light-gray-alt {
  background-color: #e6e6e6;
}

/* Contact Map */
.bg-dark-gray {
  background-color: #707070;
}

.contact-map__title {
  font-size: 1.2rem;
}

.contact-map__city {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.contact-map__hours {
  font-size: 1rem;
}

.contact-map__icon {
  font-size: 2.5rem;
}

.contact-map__iframe-container {
  height: 400px;
  background-color: #ccc;
}

.contact-map__iframe {
  border: 0;
}

/* Footer Architecture (BEM) */
.site-footer {
  padding: 3rem 0 1rem;
  background-color: #6c6c6c;
}

.site-footer__container {
  padding-top: 1.5rem;
}

.site-footer__row {
  color: #fff;
  margin-bottom: 1.5rem;
}

.site-footer__col-about {
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .site-footer__col-about {
    margin-bottom: 0;
    padding-right: 1.5rem;
  }
}

.site-footer__logo {
  max-height: 110px;
  margin-bottom: 1.5rem;
}

.site-footer__text {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6;
}

.site-footer__socials {
  display: flex;
  gap: 1rem;
}

.site-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.site-footer__social-icon:hover {
  background-color: #f67a22;
  border-color: #f67a22;
  color: #fff;
}

.site-footer__col-menu {
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .site-footer__col-menu {
    margin-bottom: 0;
    padding: 0 1.5rem;
  }
}

.site-footer__heading {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #fff;
}

.site-footer__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__menu-item {
  margin-bottom: 1rem;
}

.site-footer__menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.site-footer__menu-link::before {
  content: "\2192";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #f67a22;
}

.site-footer__menu-link:hover {
  color: #f67a22;
  padding-left: 15px;
}

.site-footer__menu-link:hover::before {
  left: 0;
  opacity: 1;
}

.site-footer__col-contact {
  /* Contact column styles */
}

@media (min-width: 992px) {
  .site-footer__col-contact {
    padding-left: 1.5rem;
  }
}

.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.site-footer__contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 1rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  color: #fff;
}

.site-footer__contact-icon-wrapper--align-top {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.site-footer__contact-link {
  color: #fff;
  text-decoration: underline;
  font-size: 1.05rem;
  display: block;
  transition: color 0.3s ease;
}

.site-footer__contact-link:hover {
  color: #f67a22;
}

.site-footer__contact-text {
  color: #fff;
  display: block;
  font-size: 1.05rem;
  line-height: 1.6;
}

.site-footer__bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}

.site-footer__copyright {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}