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

:root {
  --text-main: #1f2530;
  --text-primary: #6ec1e4;
  --text-muted: #4a5d78;
  --border: #d5d8dc;
  --card-bg: #eff1f3;
  --section-bg: #ffffff;
  --title: #1d324d;
}

body {
  margin: 0;
  font-family: "Alexandria", sans-serif;
  background-color: #fff;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p {
  color: #192a3d;
}
.faq-section,
.about-section,
.why-section {
  padding-block: 80px;
  background-color: var(--section-bg);
}

.container {
  width: min(1200px, 100% - clamp(16px, 4vw, 32px) * 2);
  margin-inline: auto;
}

.main-title {
  text-align: center;
  margin-bottom: 46px;
}

.main-title h2 {
  margin: 0;
  color: var(--title);
  font-size: 35px;
  line-height: 43px;
  font-weight: 700;
}

.hero-section {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  background-color: transparent;
  background-image: linear-gradient(45deg, #e40313 58%, #f49909 100%);
  position: relative;
}
.hero-section header {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
.hero-section header a {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-section header a:hover {
  color: #1559ed;
}

.hero-section header .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hero-section header .flex a {
  background-color: #075e54;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 50px;
  transition: all 0.3s ease;
}
.hero-section header .flex a:last-child {
  background-color: #1559ed;
}
.hero-section header .flex a svg {
  width: 27px;
  height: 27px;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.hero-section header .flex a:hover {
  transform: translateY(-5px);
  background-color: #0a7a6d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.hero-section header .flex a:last-child:hover {
  transform: translateY(-5px);
  background-color: #2f6df5;
  box-shadow: 0 12px 30px rgba(21, 89, 237, 0.35);
}
.hero-content .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  padding: 0 20px;
  margin-inline-start: 60px;
}
.hero-content .title h2 {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
}
.hero-content .title h2 span {
  font-size: 90px;
  font-weight: 900;
}
.hero-content .title h2:last-child {
  font-size: 32px;
  color: #f6d41f;
  margin: 0;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.testimonials-section {
  padding-block: 70px;
}

.testimonials-carousel {
  --testimonials-per-view: 4;
  --scrollbar-thumb-size: 34%;
  --scrollbar-progress: 0%;
  position: relative;
  padding-top: 8px;
  direction: ltr;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  height: 4px;
}

.testimonials-carousel::before {
  left: 0;
  right: 0;
  background: #aeb5bd;
}

.testimonials-carousel::after {
  right: var(--scrollbar-progress);
  width: var(--scrollbar-thumb-size);
  background: #111418;
  transition:
    right 0.45s ease,
    width 0.25s ease;
}

.testimonials-carousel.is-dragging::after {
  transition: none;
}

.testimonials-viewport {
  overflow: hidden;
  margin-inline: auto;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 260px;
  width: 260px;
  background-color: #eef2f6;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.why-section {
  padding-bottom: 40px;
}
.booking-cta-section {
  position: relative;
  background-color: #c6effb;
  overflow: hidden;
  isolation: isolate;
  direction: rtl;
}

.booking-cta-section .booking-shape {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.booking-cta-section .booking-shape-top {
  top: 0;
}

.booking-cta-section .booking-shape-bottom {
  bottom: 0;
}

.booking-cta-section .booking-shape svg {
  width: 100%;
  height: clamp(88px, 8.2vw, 156px);
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.booking-cta-section .booking-shape-bottom svg {
  transform: translateX(-50%) rotate(180deg);
}

.booking-cta-section .booking-shape-fill {
  fill: #fff;
}

.booking-cta-section .booking-cta-layout {
  width: 100%;
  margin-inline: auto;
  padding: clamp(110px, 9.5vw, 154px) 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 86px);
}

.booking-cta-section .booking-cta-content {
  flex: 1 1 54%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  text-align: center;
}

.booking-cta-section .booking-cta-media {
  flex: 1 1 46%;
  display: flex;
  justify-content: center;
}

.booking-cta-section .booking-cta-image-wrap {
  width: min(100%, 820px);
  aspect-ratio: 1.42 / 1;
  background: #fff;
  clip-path: polygon(
    18% 0%,
    73% 0%,
    83% 13%,
    100% 34%,
    84% 52%,
    92% 62%,
    80% 79%,
    70% 100%,
    36% 100%,
    24% 86%,
    16% 92%,
    0% 69%,
    8% 48%,
    0% 34%,
    14% 18%
  );
  overflow: hidden;
}

.booking-cta-section .booking-cta-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  clip-path: inherit;
}

.booking-cta-section .booking-cta-icon-wrap,
.booking-cta-section .booking-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-cta-section .booking-cta-icon svg {
  width: clamp(82px, 6vw, 122px);
  height: clamp(82px, 6vw, 122px);
}

.booking-cta-section .booking-cta-title {
  margin: 0;
  color: #172741;
  font-size: clamp(38px, 3.45vw, 66px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 920px;
}

.booking-cta-section .booking-cta-description {
  margin: 0;
  color: #1a2f49;
  font-size: clamp(19px, 1.52vw, 30px);
  line-height: 1.5;
  max-width: 1000px;
  font-weight: 500;
}

.booking-cta-section .booking-cta-description strong {
  font-weight: 800;
}

.booking-cta-section .booking-cta-action {
  width: 100%;
  display: flex;
  justify-content: center;
}

.booking-cta-section .booking-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(330px, 30vw, 610px);
  padding: clamp(14px, 1.2vw, 24px) clamp(26px, 2.2vw, 54px);
  border-radius: 4px;
  background-color: #58c96a;
  color: #fff;
  font-size: clamp(22px, 1.62vw, 34px);
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.booking-cta-section .booking-cta-button:hover {
  background-color: #4cbc5f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(41, 112, 60, 0.2);
}

.faq-section {
  background-color: #fdfeff;
}
.why-section {
  padding-bottom: 40px;
}
.booking-cta-section {
  position: relative;
  background-color: #c6effb;
  overflow: hidden;
  isolation: isolate;
}

.booking-cta-section .elementor-shape {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.booking-cta-section .elementor-shape-top {
  top: 0;
}

.booking-cta-section .elementor-shape-bottom {
  bottom: 0;
}

.booking-cta-section .elementor-shape svg {
  width: 100%;
  height: clamp(90px, 9vw, 170px);
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.booking-cta-section .elementor-shape-bottom svg {
  transform: translateX(-50%) rotate(180deg);
}

.booking-cta-section .elementor-shape-fill {
  fill: #fff;
}

.booking-cta-section .elementor-element-021f816 {
  max-width: 1124px;
  margin-inline: auto;
  padding: clamp(95px, 8.5vw, 145px) 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.booking-cta-section .elementor-element-fb0b72f {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.booking-cta-section .elementor-icon-wrapper,
.booking-cta-section .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-cta-section .elementor-icon svg {
  width: 131px;
  height: 131px;
}

.booking-cta-section .elementor-heading-title {
  margin: 0;
  color: #172741;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;
}

.booking-cta-section .elementor-element-9bd3b30 p {
  margin: 0;
  color: #1a2f49;
  font-size: 16px;
  line-height: 1.5;
  max-width: 1600px;
  font-weight: 500;
}

.booking-cta-section .elementor-element-9bd3b30 strong {
  font-weight: 800;
}

.booking-cta-section .elementor-element-6b07997 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.booking-cta-section .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: clamp(15px, 1.25vw, 28px) clamp(28px, 2.7vw, 64px);
  border-radius: 4px;
  background-color: #58c96a;
  color: #fff;
  font-size: clamp(22px, 2vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.booking-cta-section .elementor-button:hover {
  background-color: #4cbc5f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(41, 112, 60, 0.2);
}

.faq-section {
  background-color: #fdfeff;
}
.faq-container {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: auto;
}

.faq-item {
  display: grid;
  gap: 8px;
}

.faq-item[open] {
  border-color: var(--border);
}

.faq-item summary {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  padding: 20px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background-color: transparent;
}

.faq-item[open] > summary {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #23262e;
  overflow-wrap: anywhere;
}
.faq-item summary:hover .faq-question {
  color: var(--text-primary);
}
.faq-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 0;
  color: #1f2228;
  background: transparent;
}
.faq-item summary:hover .faq-icon {
  color: var(--text-primary);
}

.faq-icon .e-opened,
.faq-icon .e-closed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-icon .e-opened {
  display: none;
}

.faq-item[open] .faq-icon .e-opened {
  display: inline-flex;
}

.faq-item[open] .faq-icon .e-closed {
  display: none;
}

.faq-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.faq-icon svg path {
  fill: currentColor;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.faq-item[open] .faq-answer {
  max-height: 900px;
}

.faq-answer-inner {
  padding: 20px;
}

.faq-answer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.faq-answer-inner p + p {
  margin-top: 12px;
}

.faq-answer-inner ul {
  margin: 10px 0 0;
  padding-inline-start: 22px;
  color: var(--text-muted);
  font-size: 16px;
}

.faq-answer-inner li + li {
  margin-top: 6px;
}

.faq-answer-inner strong {
  color: #364a67;
  font-weight: 800;
}
.why-container {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  align-items: stretch;
}
.why-container.two-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.why-section p {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin: 24px auto;
  line-height: 1.7;
}
.why-container .card {
  width: 100%;
  text-align: center;
  background-color: #c6effb;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.why-container a.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.why-container .card span svg {
  width: 40px;
  height: 40px;
}

.why-container .card h3 {
  color: var(--title);
  font-size: 20px;
  line-height: 28px;
  margin: 14px 0 0;
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.about-container .flex {
  display: flex;
  flex-direction: column;
}

.about-container .flex p {
  font-size: 16px;
  margin: 0;
  margin-bottom: 34px;
  color: #3a4f66;
  line-height: 1.65;
}
.about-container .flex p span {
  font-weight: 700;
}

.about-container .flex a,
.contact-us {
  background-color: #61ce70;
  padding: 20px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  width: fit-content;
  border-radius: 3px;
  text-align: center;
}

.about-container .image img {
  width: 100%;
  max-width: 477px;
  min-width: 477px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .testimonials-carousel {
    --testimonials-per-view: 2;
  }

  .booking-cta-section .booking-cta-layout {
    width: 100%;
    padding: 96px 0;
    gap: 34px;
  }

  .booking-cta-section .booking-cta-title {
    font-size: clamp(34px, 4.6vw, 54px);
  }

  .booking-cta-section .booking-cta-description {
    font-size: clamp(18px, 2vw, 24px);
  }

  .booking-cta-section .booking-cta-image-wrap {
    width: min(100%, 620px);
  }

  .booking-cta-section .booking-cta-button {
    min-width: clamp(280px, 38vw, 460px);
    font-size: clamp(20px, 2vw, 28px);
  }

  .hero-section {
    padding-bottom: 36px;
  }

  .hero-section header {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
  }

  .hero-section header > a {
    width: 100%;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .hero-content .title {
    align-items: center;
  }

  .hero-section header .flex a {
    height: 46px;
    padding: 10px 22px;
  }

  .why-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-container .card {
    padding: 24px;
    max-width: 330px;
    margin: auto;
  }

  .why-container .card h3 {
    font-size: 18px;
    line-height: 1.55;
  }

  .why-section p {
    font-size: 17px;
  }
  .about-container .image img {
    min-width: 370px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0 44px;
  }

  .booking-cta-section .booking-shape svg {
    height: clamp(82px, 16vw, 110px);
  }

  .booking-cta-section .booking-cta-layout {
    width: 100%;
    padding: 80px 0;
    gap: 24px;
    flex-direction: column-reverse;
  }
  .booking-cta-section .elementor-heading-title {
    font-size: 20px;
  }

  .booking-cta-section .booking-cta-content {
    max-width: 920px;
  }

  .booking-cta-section .booking-cta-title {
    font-size: clamp(30px, 6vw, 44px);
  }

  .booking-cta-section .booking-cta-description {
    font-size: clamp(16px, 3vw, 21px);
  }

  .booking-cta-section .booking-cta-image-wrap {
    width: min(100%, 720px);
  }

  .booking-cta-section .booking-cta-button {
    min-width: min(100%, 420px);
    font-size: clamp(18px, 3.6vw, 26px);
    padding: 14px 20px;
  }

  .hero-section {
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .hero-section header {
    padding-top: 10px;
  }

  .hero-section header a {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.35;
  }

  .hero-section header .flex {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-section header .flex a {
    min-height: 42px;
    height: auto;
    padding: 9px 16px;
    font-size: 14px;
  }

  .hero-section header .flex a:last-child {
    padding-inline: 14px;
  }

  .hero-content .title h2:last-child {
    margin-top: 10px;
  }

  .faq-section,
  .why-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .container {
    width: min(100% - 24px, 1020px);
  }

  .main-title {
    margin-bottom: 24px;
  }

  .main-title h2 {
    font-size: clamp(1.55rem, 7vw, 2.3rem);
  }

  .faq-container {
    gap: 12px;
  }

  .faq-item summary {
    padding: 16px 14px;
    gap: 10px;
  }

  .faq-question {
    font-size: clamp(1rem, 4.5vw, 1.23rem);
    line-height: 1.55;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-answer-inner {
    padding: 16px;
  }

  .faq-answer-inner p,
  .faq-answer-inner ul {
    font-size: 1rem;
  }

  .why-container {
    grid-template-columns: 1fr;
  }
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  .about-container .image img {
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .testimonials-carousel {
    --testimonials-per-view: 1;
  }

  .booking-cta-section .booking-cta-layout {
    width: 100%;
    padding: 74px 0;
    gap: 18px;
  }

  .booking-cta-section .booking-cta-icon svg {
    width: 52px;
    height: 52px;
  }

  .booking-cta-section .booking-cta-title {
    font-size: clamp(24px, 7.3vw, 33px);
  }

  .booking-cta-section .booking-cta-description {
    font-size: clamp(14px, 4.4vw, 18px);
    line-height: 1.6;
  }

  .booking-cta-section .booking-cta-image-wrap {
    width: min(100%, 540px);
  }

  .booking-cta-section .booking-cta-button {
    min-width: min(100%, 360px);
    font-size: 20px;
  }

  .hero-section header .flex a {
    width: 100%;
    max-width: 280px;
  }

  .hero-img img {
    width: min(100%, 500px);
  }

  .faq-section,
  .why-section {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .container {
    width: min(100% - 20px, 1020px);
  }

  .main-title {
    margin-bottom: 18px;
  }

  .main-title h2 {
    font-size: 1.4rem;
    line-height: 1.45;
  }

  .faq-container {
    gap: 10px;
  }

  .faq-item {
    gap: 6px;
  }

  .faq-item summary {
    padding: 13px 12px;
    gap: 8px;
    border-radius: 7px;
  }

  .faq-question {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
  }

  .faq-answer {
    border-radius: 7px;
  }

  .faq-answer-inner {
    padding: 13px 12px;
  }

  .faq-answer-inner p,
  .faq-answer-inner ul {
    font-size: 0.93rem;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .testimonials-section {
    padding: 40px 0 46px;
  }

  .booking-cta-section .booking-shape svg {
    height: 90px;
  }

  .booking-cta-section .booking-cta-layout {
    width: 100%;
    padding: 64px 0;
  }

  .booking-cta-section .booking-cta-title {
    font-size: 22px;
  }

  .booking-cta-section .booking-cta-image-wrap {
    width: min(100%, 430px);
    padding: 10px;
  }

  .booking-cta-section .booking-cta-button {
    font-size: 18px;
    padding: 13px 16px;
  }

  .hero-section header > a {
    font-size: 19px;
  }

  .hero-content .title h2 {
    font-size: 24px;
  }

  .hero-content .title h2 span {
    font-size: 50px;
  }

  .hero-content .title h2:last-child {
    font-size: 20px;
  }

  .container {
    width: min(100% - 16px, 1020px);
  }

  .main-title h2 {
    font-size: 1.22rem;
    line-height: 1.5;
  }

  .faq-item summary {
    padding: 12px 10px;
    gap: 7px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 16px;
    height: 16px;
  }

  .faq-icon svg {
    width: 13px;
    height: 13px;
  }

  .faq-answer-inner {
    padding: 12px 10px;
  }

  .faq-answer-inner p,
  .faq-answer-inner ul {
    font-size: 0.88rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 25px 0;
  position: relative;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Social Links Footer */
.social-links-footer {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links-footer a {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links-footer a.facebook {
  background-color: #557dbc;
}
.social-links-footer a.x {
  background-color: #000;
}
.social-links-footer a.instagram {
  background-color: #e4405f;
}
.social-links-footer a.youtube {
  background-color: #ff0000;
}

.social-links-footer svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* Footer Text Paragraph */
.footer-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e40313;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-to-top:hover {
  background-color: #c1020e;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(227, 3, 19, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Contact Widget */
.contact-widget {
  position: fixed;
  inset-inline-end: 30px;
  inset-block-end: 30px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.contact-widget-action {
  opacity: 1;
  transform: none;
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.contact-widget-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.contact-widget-bottom {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}

.contact-widget-action {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.contact-widget-action svg {
  width: 60px;
  height: 60px;
}

.contact-widget-label {
  position: relative;
  background-color: #ededed;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1;
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  unicode-bidi: plaintext;
}

.contact-widget-label::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  background: #ededed;
  transform: translateY(-50%) rotate(45deg);
  left: -6.8px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .scroll-to-top {
    display: none;
  }

  .footer .container {
    flex-direction: column;
    gap: 10px;
  }

  .social-links-footer {
    justify-content: space-between;
  }

  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }

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

  .contact-widget {
    inset-inline-end: 20px;
    inset-block-end: 20px;
    gap: 10px;
  }

  .contact-widget-actions {
    gap: 10px;
    max-height: 0;
  }

  .contact-widget-toggle,
  .contact-widget-action {
    width: 44px;
    height: 44px;
  }

  .contact-widget-action svg {
    width: 44px;
    height: 44px;
  }

  .contact-widget-label {
    font-size: 16px;
    /* padding: 10px 14px; */
  }
  .hero-content .title {
    margin-inline-start: 0;
  }
}

.youtube-section .flex {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: auto;
  justify-content: center;
  flex-wrap: wrap;
}
.flex > div {
  flex: 1;
  min-width: 250px;
}

.video-frame {
  width: 100%;
  position: relative;
  aspect-ratio: 6 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
  max-height: 500px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-section .flex h3 {
  margin: 0;
  color: var(--title);
  font-size: 30px;
  line-height: 43px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
