
:root {
  --navy: #082443;
  --navy-soft: #12375f;
  --blue: #0b71d1;
  --blue-dark: #0759a6;
  --cyan: #eaf6ff;
  --cyan-deep: #d6edff;
  --green: #22c55e;
  --gold: #f6b72c;
  --white: #ffffff;
  --ink: #10243a;
  --muted: #5e7186;
  --line: #dbe8f4;
  --surface: #f7fbff;
  --shadow: 0 26px 72px rgba(8, 36, 67, .14);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  direction: rtl;
  background:
    radial-gradient(circle at top right, rgba(11, 113, 209, .10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f6fbff 100%);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cfe6fb;
  background: var(--cyan);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 900;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.section-heading h2,
.about-copy h2,
.booking-copy h2,
.cta-card h2 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
  font-weight: 900;
}

.section-heading p,
.about-copy p,
.booking-copy p,
.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(5, 27, 52, .90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 28px;
  background: linear-gradient(135deg, #ffd56a, var(--gold));
  box-shadow: 0 18px 42px rgba(246, 183, 44, .24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.brand-copy em {
  font-style: normal;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  transition: .25s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(11, 113, 209, .28);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}

/* Hero */
.hero-section {
  padding: 142px 0 74px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -200px;
  top: -160px;
  background: rgba(11, 113, 209, .12);
  border-radius: 50%;
  filter: blur(12px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .98fr;
  gap: 38px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -.4px;
}

.hero-content > p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2.05;
}

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

.btn {
  min-width: 164px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  transition: .25s ease;
}

.btn:hover,
.header-call:hover,
.cta-actions a:hover,
.service-body a:hover,
.booking-form button:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 22px 48px rgba(11, 113, 209, .26);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #28d866, #16994a);
  box-shadow: 0 22px 48px rgba(34, 197, 94, .22);
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-highlights article {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(8, 36, 67, .07);
}

.hero-highlights strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.hero-highlights span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* Slider */
.hero-slider {
  position: relative;
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slider-track {
  position: relative;
  min-height: 620px;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .6s ease, visibility .6s ease, transform .6s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.slide figcaption {
  position: absolute;
  inset: auto 18px 18px 18px;
  color: var(--white);
  background: rgba(8, 36, 67, .86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 900;
}

.slider-controls {
  position: absolute;
  inset: auto 0 28px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  z-index: 4;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8, 36, 67, .16);
}

.slider-dots {
  display: inline-flex;
  gap: 8px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #a9c5df;
  cursor: pointer;
  transition: .25s ease;
}

.slider-dots button.is-active {
  width: 30px;
  background: var(--blue);
}

/* Trust */
.trust-strip {
  padding: 0 0 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-grid div {
  min-height: 108px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(8, 36, 67, .07);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.trust-grid span {
  color: var(--muted);
  margin-top: 7px;
  font-size: 13px;
}

/* About */
.about-section {
  background: linear-gradient(180deg, rgba(234, 246, 255, .56), rgba(255, 255, 255, .96));
}

.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  inset: auto 20px 20px 20px;
  color: var(--white);
  background: rgba(8, 36, 67, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  padding: 22px;
  backdrop-filter: blur(14px);
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  font-size: 22px;
  font-weight: 900;
}

.about-badge span {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}

.about-copy p + p {
  margin-top: 16px;
}

.about-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-points div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 16px 38px rgba(8, 36, 67, .06);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 6px;
}

.about-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* Services */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 22px 54px rgba(8, 36, 67, .08);
  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(8, 36, 67, .15);
}

.service-image {
  height: 305px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.service-body {
  padding: 24px;
}

.service-body > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
}

.service-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.35;
  font-weight: 900;
}

.service-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.service-body ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #32485f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.service-body li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.service-body a {
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  font-weight: 900;
  transition: .25s ease;
}

/* Booking */
.booking-section {
  background: linear-gradient(180deg, #eef8ff, #ffffff);
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.booking-notes {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.booking-notes div {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  color: #36506b;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(8, 36, 67, .06);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  padding: 0 16px;
  transition: .25s ease;
}

.booking-form input,
.booking-form select {
  height: 56px;
}

.booking-form textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(11, 113, 209, .11);
}

.form-full,
.booking-form button,
.booking-form small {
  grid-column: 1 / -1;
}

.booking-form button {
  min-height: 60px;
  border: 0;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, #27d867, #149647);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.booking-form small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advantages-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(8, 36, 67, .07);
}

.advantages-grid span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  font-size: 32px;
}

.advantages-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.advantages-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

/* Reviews */
.reviews-section {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews-grid article {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 26px;
  box-shadow: 0 18px 48px rgba(8, 36, 67, .07);
}

.stars {
  color: #f2a900;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.reviews-grid p {
  margin: 0 0 18px;
  color: #35506b;
  font-size: 14px;
  line-height: 2.05;
}

.reviews-grid strong {
  color: var(--navy);
  font-weight: 900;
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, #eef8ff, #ffffff);
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(8, 36, 67, .05);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  cursor: pointer;
  text-align: right;
  font-size: 16px;
  font-weight: 900;
}

.faq-question span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 15px;
  color: var(--blue-dark);
  background: var(--cyan);
  transition: .25s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.05;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
  color: var(--white);
  background: var(--blue);
}

/* Privacy */
.privacy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow);
}

.section-heading.compact {
  margin-bottom: 34px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.privacy-grid article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.privacy-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

/* CTA */
.cta-section {
  padding: 0 0 92px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  color: var(--white);
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(246, 183, 44, .25), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue-dark));
  box-shadow: var(--shadow);
}

.cta-card span {
  display: inline-block;
  font-weight: 900;
  color: #dff1ff;
}

.cta-card h2 {
  color: var(--white);
}

.cta-card p {
  color: rgba(255, 255, 255, .8);
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.cta-actions a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  transition: .25s ease;
}

.cta-actions a:first-child {
  color: var(--navy);
  background: var(--white);
}

.cta-actions a:last-child {
  color: var(--white);
  background: var(--green);
}

/* Footer */
.site-footer {
  background: #06182d;
  color: rgba(255, 255, 255, .78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.footer-brand span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffd56a, var(--gold));
  color: var(--navy);
  border-radius: 18px;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 2;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
}

.site-footer .footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.footer-bottom p {
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}

/* Floating buttons */
.floating-contact {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1200;
  display: grid;
  gap: 12px;
}

.floating-contact a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 20px 44px rgba(8, 36, 67, .26);
  transition: .25s ease;
}

.floating-contact a:hover {
  transform: translateY(-3px);
}

.float-phone {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.float-whatsapp {
  background: linear-gradient(135deg, #29dc69, #159a49);
}

/* Responsive */
@media (max-width: 1120px) {
  .main-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: absolute;
    top: 92px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(5, 27, 52, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 13px 16px;
    border-radius: 18px;
  }

  .hero-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
  }

  .hero-slider {
    order: 2;
  }

  .hero-highlights,
  .trust-grid,
  .services-grid,
  .advantages-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 70px 0;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy em {
    font-size: 11px;
  }

  .hero-section {
    padding-top: 112px;
  }

  .hero-content h1 {
    font-size: 35px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights,
  .trust-grid,
  .services-grid,
  .about-points,
  .advantages-grid,
  .reviews-grid,
  .privacy-grid,
  .footer-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .slider-track,
  .slide img {
    min-height: 470px;
    height: 470px;
  }

  .slide figcaption {
    font-size: 13px;
    padding: 14px 16px;
  }

  .slider-controls {
    bottom: 24px;
  }

  .about-image-wrap img {
    min-height: 480px;
  }

  .service-image {
    height: 260px;
  }

  .privacy-card,
  .booking-form,
  .cta-card {
    padding: 24px;
    border-radius: 30px;
  }

  .booking-form button,
  .booking-form small {
    grid-column: auto;
  }

  .form-full {
    grid-column: auto;
  }

  .floating-contact {
    left: 14px;
    bottom: 14px;
  }

  .floating-contact a {
    width: 56px;
    height: 56px;
    font-size: 23px;
  }
}
