/* =====================================================
   FULL CIRCLE YACHT — CHARTER PRICES PAGE
===================================================== */

.fcy-pricing-rows {
  padding: 95px 0 115px;
  background:
    radial-gradient(circle at 12% 12%, rgba(12,90,219,.10), transparent 26%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.fcy-pricing-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.fcy-pricing-heading span,
.fcy-price-seo span {
  color: #e3262e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.fcy-pricing-heading h2,
.fcy-price-seo h2 {
  color: #00194c;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
  margin: 10px 0 12px;
}

.fcy-pricing-heading p,
.fcy-price-seo p {
  color: #5a6a7e;
  font-size: 16px;
  line-height: 28px;
}

.fcy-price-row {
  display: grid;
  grid-template-columns: 280px 1fr 230px;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(12,90,219,.10);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 24px;
  box-shadow: 0 18px 55px rgba(4,20,36,.07);
  transition: .3s ease;
}

.fcy-price-row:hover {
  transform: translateY(-4px);
  border-color: rgba(12,90,219,.25);
  box-shadow: 0 26px 70px rgba(4,20,36,.11);
}

.fcy-price-img {
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
}

.fcy-price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.fcy-price-row:hover .fcy-price-img img {
  transform: scale(1.07);
}

.fcy-price-content span {
  display: inline-block;
  color: #0c5adb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fcy-price-content h3 {
  color: #00194c;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
}

.fcy-price-content p {
  color: #5a6a7e;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 14px;
}

.fcy-price-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.fcy-price-content li {
  color: #00194c;
  font-size: 13px;
  font-weight: 800;
}

.fcy-price-content li i {
  color: #e3262e;
  margin-right: 6px;
}

.fcy-price-action {
  background: #00194c;
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  color: #fff;
}

.fcy-price-action small {
  display: block;
  color: #8cc9ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fcy-price-action strong {
  display: block;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.fcy-price-action span {
  display: block;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.fcy-price-action a {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #0c5adb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fcy-price-action a:hover {
  background: #e3262e;
  color: #fff;
  transform: translateY(-2px);
}

/* SEO CONTENT SECTION */

.fcy-price-seo {
  padding: 100px 0;
  background:
    linear-gradient(rgba(0,25,76,.90), rgba(0,25,76,.94)),
    url("../images/bg/full-circle-yacht_1800x400-04b2.webp") center / cover no-repeat;
}

.fcy-price-seo h2,
.fcy-price-seo h3 {
  color: #fff;
}

.fcy-price-seo p {
  color: rgba(255,255,255,.76);
}

.fcy-price-seo__grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 42px;
  align-items: center;
}

.fcy-price-seo__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fcy-price-seo__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 22px;
}

.fcy-price-seo__card i {
  color: #8cc9ff;
  font-size: 24px;
  margin-bottom: 12px;
}

.fcy-price-seo__card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.fcy-price-seo__card p {
  font-size: 13px;
  line-height: 23px;
  margin: 0;
}

@media (max-width: 1199px) {
  .fcy-price-row {
    grid-template-columns: 240px 1fr 210px;
  }
}

@media (max-width: 991px) {
  .fcy-price-row,
  .fcy-price-seo__grid {
    grid-template-columns: 1fr;
  }

  .fcy-price-img {
    height: 260px;
  }

  .fcy-price-action {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .fcy-pricing-rows,
  .fcy-price-seo {
    padding: 75px 0;
  }

  .fcy-pricing-heading h2,
  .fcy-price-seo h2 {
    font-size: 31px;
  }

  .fcy-price-row {
    padding: 12px;
    border-radius: 16px;
  }

  .fcy-price-img {
    height: 220px;
  }

  .fcy-price-content h3 {
    font-size: 24px;
  }

  .fcy-price-action strong {
    font-size: 32px;
  }

  .fcy-price-seo__cards {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FULL CIRCLE YACHT - PRICING SEO CONTENT
===================================================== */

.fcy-about-content-v1 {
  padding: 110px 0 95px;
  background:
    radial-gradient(circle at 12% 16%, rgba(140,201,255,.18), transparent 26%),
    linear-gradient(135deg, #00194c 0%, #06347f 54%, #0c5adb 100%);
  overflow: hidden;
}

.fcy-about-content-v1-copy {
  border-left: 4px solid #8cc9ff;
  padding-left: 18px;
}

.fcy-about-content-v1-copy span {
  display: block;
  color: #8cc9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fcy-about-content-v1-copy h2 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 16px;
}

.fcy-about-content-v1-copy h3 {
  color: #dcecff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 18px;
}

.fcy-about-content-v1-copy h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin: 20px 0 10px;
}

.fcy-about-content-v1-copy p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 29px;
  margin-bottom: 0;
}

.fcy-about-content-v1-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.fcy-about-content-v1-points div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcy-about-content-v1-points i {
  color: #8cc9ff;
}

.fcy-about-content-v1-image {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.fcy-about-content-v1-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(4,20,36,.32);
}

.fcy-about-content-v1-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 2px dashed rgba(255,255,255,.24);
  border-radius: 34px;
  z-index: -1;
}

.fcy-about-content-v1-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(0,25,76,.28);
}

.fcy-about-content-v1-badge strong {
  display: block;
  color: #00194c;
  font-size: 18px;
  font-weight: 900;
}

.fcy-about-content-v1-badge span {
  color: #5a6a7e;
  font-size: 13px;
}

.fcy-price-secondary-seo {
  padding: 92px 0 105px;
  background: #f6f8fb;
}

.fcy-price-secondary-seo__heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.fcy-price-secondary-seo__heading span {
  color: #e3262e;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fcy-price-secondary-seo__heading h2 {
  color: #00194c;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 14px;
}

.fcy-price-secondary-seo__heading p {
  color: #5a6a7e;
  font-size: 16px;
  line-height: 29px;
}

.fcy-price-secondary-seo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fcy-price-secondary-seo__grid article {
  background: #ffffff;
  border: 1px solid rgba(12,90,219,.10);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 55px rgba(4,20,36,.07);
}

.fcy-price-secondary-seo__grid i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0c5adb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.fcy-price-secondary-seo__grid h3 {
  color: #00194c;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.fcy-price-secondary-seo__grid p {
  color: #5a6a7e;
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

/* =====================================================
   FULL CIRCLE YACHT - BOOKING SECTION CTA FORM
===================================================== */

.fcy-booking-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #f3f7ff;
}

.fcy-booking-section__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,25,76,.72),
      rgba(0,25,76,.28)
    ),
    url("../images/bg/full-circle-yacht_1800x400-04b2.webp") center / cover no-repeat;
}

.fcy-booking-section__wrap {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 70px;
  padding: 70px;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(0,25,76,.42),
      rgba(12,90,219,.16)
    );
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(4,20,36,.30);
}

.fcy-booking-section__content {
  max-width: 520px;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 44px;
  box-shadow: 0 24px 70px rgba(4,20,36,.18);
}

.fcy-booking-section__content span {
  display: inline-block;
  color: #e84545;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fcy-booking-section__content h2 {
  color: #00194c;
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.fcy-booking-section__content p {
  color: #5d6b7d;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 30px;
}

.fcy-booking-section__contact {
  display: grid;
  gap: 12px;
}

.fcy-booking-section__contact a {
  min-height: 64px;
  padding: 0 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: #f4f8ff;
  border: 1px solid rgba(12,90,219,.10);
  color: #00194c;
  transition: .3s ease;
}

.fcy-booking-section__contact a:hover {
  background: #00194c;
  color: #fff;
  transform: translateY(-3px);
}

.fcy-booking-section__contact i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c5adb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcy-booking-section__contact small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .65;
}

.fcy-booking-section__contact strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.fcy-booking-section__form-card {
  background:
    linear-gradient(
      135deg,
      rgba(0,25,76,.78),
      rgba(12,90,219,.44)
    );
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(4,20,36,.24);
}

.fcy-booking-section__form-card h3 {
  color: #fff;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 26px;
}

.fcy-booking-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.fcy-booking-section__field label {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fcy-booking-section__field input,
.fcy-booking-section__field select {
  width: 100%;
  height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.52);
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.fcy-booking-section__field input::placeholder {
  color: rgba(255,255,255,.45);
}

.fcy-booking-section__field select option {
  color: #00194c;
}

.fcy-booking-section__form-card button {
  width: 100%;
  min-height: 56px;
  margin-top: 28px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #e84545,
      #a11428
    );
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s ease;
}

.fcy-booking-section__form-card button:hover {
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #eef4ff
    );
  color: #00194c;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .fcy-about-content-v1 {
    padding: 80px 0;
  }

  .fcy-about-content-v1-image {
    margin: 50px auto 0;
  }

  .fcy-price-secondary-seo__grid {
    grid-template-columns: 1fr;
  }

  .fcy-booking-section__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }

  .fcy-booking-section__content {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .fcy-about-content-v1-copy h2,
  .fcy-price-secondary-seo__heading h2 {
    font-size: 34px;
  }

  .fcy-about-content-v1-copy h3 {
    font-size: 18px;
  }

  .fcy-about-content-v1-points {
    grid-template-columns: 1fr;
  }

  .fcy-about-content-v1-image img {
    height: 330px;
  }

  .fcy-about-content-v1-badge {
    right: 12px;
    bottom: 18px;
  }

  .fcy-price-secondary-seo {
    padding: 70px 0;
  }

  .fcy-booking-section {
    padding: 55px 0;
  }

  .fcy-booking-section__wrap {
    padding: 20px;
    border-radius: 16px;
  }

  .fcy-booking-section__content {
    padding: 28px;
  }

  .fcy-booking-section__content h2 {
    font-size: 32px;
  }

  .fcy-booking-section__form-card {
    padding: 26px;
  }

  .fcy-booking-section__form-card h3 {
    font-size: 28px;
  }

  .fcy-booking-section__grid {
    grid-template-columns: 1fr;
  }
}
