/** START OF GENERAL SETTINGS  **/
:root {
  --aegean-blue: #2f5d7c;
  --deep-blue: #1f4661;
  --sky-blue: #dbeaf4;
  --sun-white: #ffffff;
  --stone: #f6f4ef;
  --sand: #e8dfd1;
  --text: #24323d;
  --muted: #6b7a86;
  --shadow: 0 16px 40px rgba(31, 70, 97, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

.aegeanBlueBg {
  background: linear-gradient(180deg, var(--sky-blue) 0%, #eef5fa 100%);
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

picture {
  width: 100%;
  height: 100%;
}

header.navbar-solid + main {
  padding-top: 90px;
}
/** END OF GENERAL SETTINGS  **/

/**START OF BODY AND HEADINGS **/
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--sun-white);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--aegean-blue);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1rem;
  color: var(--muted);
}
/**END OF BODY AND HEADINGS **/

/** START OF MARGIN & PADDING **/
.section-padding {
  padding: 100px 0;
}

.marginTop {
  margin-top: 120px;
}
/** END OF MARGIN & PADDING **/

/** START OF BUTTONS  **/
.btn-brand {
  background: var(--aegean-blue);
  color: #fff;
  border: 1px solid var(--aegean-blue);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-brand:hover {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-outline-brand:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.blog-filter-btn {
  background: transparent;
  color: var(--aegean-blue);
  border: 1px solid #d3dde4;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.blog-filter-btn:hover {
  border-color: var(--aegean-blue);
  background: var(--sky-blue);
}

.blog-filter-btn.active {
  background: var(--aegean-blue);
  border-color: var(--aegean-blue);
  color: #fff;
}
/** END OF BUTTONS  **/

/* START OF NAVIGATION  */
.navbar {
  padding: 1.25rem 0;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.navbar-solid .navbar {
      background: rgba(31, 70, 97, 0.92) !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
}

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.nav-link:hover,
.navbar-brand:hover {
  color: #fff;
}
/* END OF NAVIGATION  */

/* START OF HERO SECTION  */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient( to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) );
    z-index: 4;
    pointer-events: none;
}

/* Swiper fills the hero */
.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

/* Slide image layer */
.hero-slide-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

/* Overlay sits above image, below content */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(15, 25, 35, 0.35), rgba(15, 25, 35, 0.55) );
    z-index: 2;
}

/* Per-slide content (kicker + h1 + text) */
.hero-slide-content {
    position: relative;
    z-index: 3;
    padding: 7rem 0 10rem;
    color: var(--sun-white);
    width: 100%;
}

/* For video / youtube heroes (no slides) */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero .h1 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.02em;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 0.95;
    margin-bottom: 1.4rem;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

/* Navigation arrows above the overlay */
.hero-swiper .hero-nav-prev,
.hero-swiper .hero-nav-next {
    z-index: 5;
    color: #fff;
}
/* All swiper arrows — white, like the hero */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.8rem;
  font-weight: 700;
}
/* All swiper paginations — relative below the carousel, brand color */
.swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  margin-top: 1.5rem;
  text-align: center;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #b7c9d6;
  opacity: 1;
  transition: background 0.25s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--aegean-blue);
}

/* Static booking card layer (over everything) */
.hero-content-static {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    padding-bottom: 3rem;
}

.booking-card {
    position: relative;
    z-index: 6;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    /* box-shadow: var(--shadow); */
    padding: 1.25rem;
    color: var(--text);
}

.booking-card .form-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.booking-card .form-control,
.booking-card .form-select {
    min-height: 52px;
    border-radius: 14px;
    border-color: #d9e1e7;
    box-shadow: none;
}

.image-card,
.room-card,
.experience-card,
.testimonial-card,
.gallery-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    background: #fff;
}

.room-card img,
.about-image img,
.dining-image img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* END OF HERO  */

/* START OF ABOUT SECTION  */
.about-wrap {
  background: linear-gradient(180deg, #fff 0%, var(--stone) 100%);
}

.about-image {
  display: block;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* box-shadow: var(--shadow); */
}
/* START OF ABOUT SECTION  */

/* START OF WHY SECTION  */
.why-number-box {
  position: relative;
  padding-top: 40px;
}

.why-number {
  font-size: 70px;
  font-weight: 700;
  color: var(--sky-blue);
  display: block;
  margin-bottom: 15px;
}

.why-number-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-number-box p {
  color: var(--muted);
}
/* END OF WHY SECTION  */


/* START OF ROOM SECTION  */
.featured-room {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(31, 70, 97, 0.1);
  height: 100%;
}

.featured-room-image {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #eef3f7;
}

.featured-room-image-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.featured-room-image-layer.is-active {
  opacity: 1;
  z-index: 2;
}

.featured-room-content {
  padding: 2rem;
  transition: opacity 0.4s ease, transform 0.4s ease-in-out;
}

.featured-room-content.is-changing {
  opacity: 0;
  transform: translateY(15px);
}

.featured-room-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-room-details li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
}

.featured-room-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aegean-blue);
}

.room-list-wrap {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(31, 70, 97, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* overflow-y: auto; */
}
.room-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  border-bottom: 1px solid #edf1f4;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.room-list-item:last-child {
  border-bottom: none;
}

.room-list-item:hover {
  background: #f8fbfd;
}

.room-list-item.active {
  background: #f2f8fc;
}

.room-list-thumb {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3f7;
}

.room-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.room-list-item:hover .room-list-thumb img {
  transform: scale(1.04);
}

.room-list-text {
  display: block;
}

.room-list-number {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--aegean-blue);
  margin-bottom: 0.35rem;
}

.room-list-heading {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.room-list-copy {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

.room-card .card-body,
.testimonial-card .card-body {
  padding: 1.75rem;
}

.room-card h3,
.dining-box h2,
.cta-box h2,
.testimonial-card h4 {
  font-size: 2rem;
}

.room-meta {
  font-size: 0.9rem;
  color: var(--aegean-blue);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.rooms-mobile {
  display: none;
}

.mobile-room-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(31, 70, 97, 0.10);
}

.mobile-room-image {
  height: 260px;
  overflow: hidden;
  background: #eef3f7;
}

.mobile-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-room-content {
  padding: 1.5rem;
}

.mobile-room-content h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.rooms-mobile-swiper {
  padding-bottom: 3rem;
}

.rooms-mobile-pagination {
  margin-top: 50px !important;
  text-align: center;
}

.rooms-mobile-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #b7c9d6;
  opacity: 1;
}

.rooms-mobile-pagination .swiper-pagination-bullet-active {
  background: var(--aegean-blue);
}
/* END OF ROOM SECTION  */

/* START OF EXPERIENCES SECTION  */
.experiences-wrap {
  background: linear-gradient(180deg, var(--sky-blue) 0%, #eef5fa 100%);
}

.experience-card {
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.25s ease;
}

.experience-feature {
  position: relative;
  display: block;
  min-height: 580px;
  border-radius: 28px;
  overflow: hidden;
  /* box-shadow: 0 18px 45px rgba(31, 70, 97, 0.12); */
  text-decoration: none;
  transition: background 0.4s ease;
}

.experience-feature-media {
  position: absolute;
  inset: 0;
}

.experience-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-feature::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(18, 31, 43, 0.72) 0%,
    rgba(18, 31, 43, 0.28) 45%,
    rgba(18, 31, 43, 0.1) 100%
  );
  transition: 0.4s ease;
}

.experience-feature:hover::before {
  opacity: 0.8;
}

.experience-feature-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem;
  color: #fff;
}

.experience-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 0.9rem;
  opacity: 0.9;
}

.experience-feature-content h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.8rem;
  color: #fff;
}

.experience-feature-content p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.2rem;
}

.experience-link {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.experience-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.experience-feature:hover .experience-link::after {
  transform: scaleX(1);
}
/* END OF EXPERIENCES SECTION  */

/* START OF IMAGE SECTION  */
.image-break {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-break-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.image-break-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.image-break:hover .image-break-media img {
  transform: scale(1.04);
}

.image-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 70, 97, 0.3);
  z-index: 2;
}

.image-break-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.image-break h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  max-width: 850px;
  margin: 0 auto;
}
/* END OF IMAGE SECTION  */

/* START OF DINING SECTION  */
.dining-box {
  padding-right: 2rem;
}

.dining-image {
  display: inline-block;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* box-shadow: var(--shadow); */
}
/* END OF DINING SECTION  */

/* START OF GALLERY SECTION  */
.masonry-gallery {
  column-count: 3;
  column-gap: 1.25rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 22px;
  overflow: hidden;
  /* box-shadow: 0 16px 40px rgba(31, 70, 97, 0.1); */
}

.masonry-item img {
  width: 100%;
  height: auto;
  min-height: 300px;
  display: block;
  transition: 0.35s ease;
  transform: scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.masonry-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.8);
}
/* END OF GALLERY SECTION  */

/* START OF TESTIMONIAL SECTION  */
.testimonials-swiper {
  padding-top: 4px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonials-wrap {
  background: var(--stone);
}

.testimonial-card {
  height: 100%;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.testimonial-from {
  color: var(--muted);
  font-size: 0.95rem;
}
/* END OF TESTIMONIAL SECTION  */

/* START OF CONTACT SECTION  */
.cta-wrap {
  padding: 0 0 100px;
  /* background: linear-gradient(180deg, var(--stone) 0%, #fff 100%); */
}

.cta-wrap .section-text {
  color: var(--sun-white);
}

.cta-box {
  background: linear-gradient(135deg, var(--deep-blue), var(--aegean-blue));
  color: #fff;
  border-radius: 32px;
  padding: 4rem 2rem;
  /* box-shadow: var(--shadow); */
  text-align: center;
}

.cta-box .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.cta-box .form-control {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.cta-box textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.cta-box .form-control:focus {
  border-color: #ffffff;
  /* box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15); */
}
/* END OF CONTACT SECTION  */

/* START OF FOOTER */
footer {
  background: #fff;
  padding: 80px 0 30px;
  border-top: 1px solid #ebeff3;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-link,
.footer-text {
  display: block;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.footer-link:hover {
  color: var(--aegean-blue);
}

.footer-brand {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ebeff3;
  color: var(--muted);
  font-size: 0.95rem;
}
/* END OF FOOTER */

/* START SCROLL UP  */
#progress {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  cursor: pointer;
}

#progress-value {
    display: block;
    height: calc(100% - 5px);
    width: calc(100% - 5px);
    background-color: var(--sun-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aegean-blue);
}

/*#progress-value img {
  width: 20px;
  filter: brightness(0);
}*/
/* END SCROLL UP  */

/* START OF RESPONSIVE 992PX MAX  */
@media (max-width: 991.98px) {
  .booking-card {
    display: none;
  }

  footer {
    padding: 50px 0 30px;
  }

  .navbar {
    background: rgba(31, 70, 97, 0.92) !important;
  }

  .dining-box {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.large {
    grid-column: span 2;
  }

  .hero h1 {
    max-width: 100%;
  }

  .masonry-gallery {
    column-count: 2;
  }

  .experience-feature {
    min-height: 480px;
  }

  .featured-room-image {
    height: 420px;
  }

  .marginTop {
    margin-top: 80px;
  }

  .rooms-desktop {
    display: none;
  }

  .rooms-mobile {
    display: block;
  }
}
/* END OF RESPONSIVE 992PX MAX  */

/* START OF RESPONSIVE 768PX MAX  */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 72px 0;
  }

  .hero-content {
    padding: 7rem 2rem 5rem;
  }

  .about-image,
  .dining-image,
  .gallery-card.large,
  .gallery-card.small {
    min-height: 320px;
    height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .why-number-box {
    padding-top: 0px;
  }

  .masonry-gallery {
    column-count: 2;
  }

  .masonry-item img {
    min-height: auto;
  }

  .experience-feature {
    min-height: 400px;
    border-radius: 22px;
  }

  .experience-feature-content {
    padding: 1.5rem;
  }

  .featured-room,
  .room-list-wrap {
    border-radius: 22px;
  }

  .featured-room-image {
    height: 300px;
  }

  .featured-room-content {
    padding: 1.5rem;
  }

  .room-list-item {
    padding: 1rem;
    gap: 0.85rem;
  }

  .room-list-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }
}
/* END OF RESPONSIVE 768PX MAX  */
/* START OF ARTICLE */
.article-head {
  margin-bottom: 2.5rem;
}

.article-figure {
  margin: 0 auto 3rem auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* box-shadow: var(--shadow); */
}

.article-figure picture {
  display: block;
  width: 100%;
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  max-width: 100%;
}

.article-body p {
  margin-bottom: 1.4rem;
  line-height: 1.85;
  font-size: 1.08rem;
}

.article-body h2,
.article-body h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

@media (max-width: 767.98px) {
  .article-figure {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
  }
}
/* END OF ARTICLE */

/* START OF RELATED ARTICLES */
.related-mobile {
  display: none;
}

.related-swiper {
  padding-bottom: 3rem;
}

.related-pagination {
  margin-top: 1rem !important;
  text-align: center;
}

.related-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #b7c9d6;
  opacity: 1;
}

.related-pagination .swiper-pagination-bullet-active {
  background: var(--aegean-blue);
}

@media (max-width: 767.98px) {
  .related-desktop {
    display: none;
  }
  .related-mobile {
    display: block;
  }
}
/* END OF RELATED ARTICLES */

/* START OF BLOG GRID */
.article-card {
  min-height: 420px;
}

.article-card-wrap[hidden] {
  display: none !important;
}

.article-card .experience-feature-content h2.h3,
.h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: #fff;
}

.article-card .experience-feature-content p {
  font-size: 0.95rem;
  max-width: 100%;
}
/* END OF BLOG GRID */

/* START OF BLOG PAGINATION */
.blog-pagination .pagination {
  gap: 0.5rem;
  margin-bottom: 0;
}

.blog-pagination .page-item .page-link {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3dde4;
  border-radius: 999px;
  color: var(--aegean-blue);
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 0.5rem;
  transition: all 0.25s ease;
  box-shadow: none;
}

.blog-pagination .page-item .page-link:hover {
  border-color: var(--aegean-blue);
  background: var(--sky-blue);
  color: var(--deep-blue);
}

.blog-pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 93, 124, 0.15);
}

.blog-pagination .page-item.active .page-link {
  background: var(--aegean-blue);
  border-color: var(--aegean-blue);
  color: #fff;
}

.blog-pagination .page-item.disabled .page-link {
  color: #b7c4cd;
  border-color: #e6ebef;
  background: transparent;
  pointer-events: none;
  opacity: 0.7;
}
/* END OF BLOG PAGINATION */
/* START OF POPUP */
.site-popup .modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.site-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    padding: 0.6rem;
}

.site-popup-image img {
    width: 100%;
    height: auto;
    display: block;
}

.site-popup-body {
    padding: 2rem;
    text-align: center;
}

.site-popup-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.site-popup-text {
    color: var(--muted);
}
/* END OF POPUP */