@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Open+Sans:wght@300;400;500;600;700;800&family=Cormorant:wght@300;400;700&display=swap');

:root {
  --clr-green-dark: #1A3C1A;
  --clr-green-main: #2C5F2E;
  --clr-green-mid: #4A7C4E;
  --clr-green-light: #7FB069;
  --clr-green-pale: #D4E6D1;
  --clr-cream: #F8F4EE;
  --clr-cream-dark: #EDE7DC;
  --clr-white: #FFFFFF;
  --clr-off-white: #FAFAF8;
  --clr-text-dark: #1A1A1A;
  --clr-text-body: #4A4A4A;
  --clr-text-muted: #888888;
  --clr-text-light: rgba(255, 255, 255, 0.85);
  --clr-dark-bg: #1A1A1A;
  --clr-dark-alt: #162416;
  --overlay-hero: linear-gradient(135deg, rgba(15, 30, 15, 0.80) 0%, rgba(15, 30, 15, 0.35) 100%);
  --overlay-card: linear-gradient(to top, rgba(15, 30, 15, 0.90) 0%, transparent 60%);
  --clr-gold-accent: #C9A84C;
  --clr-border: rgba(44, 95, 46, 0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  --font-label: 'Open Sans', sans-serif;
  --fs-hero: clamp(48px, 6vw, 84px);
  --fs-h2: clamp(32px, 4vw, 48px);
  --fs-h3: clamp(20px, 2.5vw, 28px);
  --fs-h4: 18px;
  --fs-label: 12px;
  --fs-body: 15px;
  --fs-body-lg: 17px;
  --fs-small: 13px;
  --fs-price: clamp(26px, 3vw, 38px);
  --lh-tight: 1.1;
  --lh-heading: 1.25;
  --lh-body: 1.75;
}

.hp-section-padding {
  padding: 60px 0 !important;
}

.display-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: var(--lh-tight);
  letter-spacing: -1.5px;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  color: var(--clr-text-dark);
}

.section-eyebrow {
  font-family: var(--font-label);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-green-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--clr-green-light);
}

p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--clr-text-body);
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn-antila {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--clr-green-light);
  color: var(--clr-white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.btn-antila i {
  font-size: 12px;
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-antila::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--clr-green-dark);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-antila:hover {
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-antila:hover::before {
  width: 100%;
}

.btn-antila:hover i {
  transform: translateX(4px);
}

/* ── HEADER ── */
.antila-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.antila-header.sticky {
  background: var(--clr-dark-bg);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
}

.antila-nav-link,
.uk-navbar-nav>li>a {
  color: var(--clr-white) !important;
  font-family: var(--font-body);
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  margin: 0 5px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.antila-nav-link:hover,
.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li.uk-active>a {
  opacity: 1;
  color: var(--clr-green-main) !important;
  text-decoration: none;
}

.antila-logo img {
  max-height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.antila-header.sticky .antila-logo img {
  max-height: 40px;
}

/* ── HERO SECTION ── */
.antila-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--clr-dark-bg);
  padding-top: 100px;
}

.hero-bg-dark {
  position: absolute;
  inset: 0;
  background-image: url('../img/dark-section-bg-image.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg-image.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--clr-white);
}

.hero-watermark {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(150px, 25vw, 400px);
  color: var(--clr-white);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--clr-white);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.hero-badge i {
  font-size: 8px;
  color: var(--clr-green-light);
}

.hero-badge-dark {
  background: var(--clr-cream);
  border-color: var(--clr-border);
  color: var(--clr-green-main);
}

.hero-title {
  color: var(--clr-white);
  margin-bottom: 24px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: var(--fs-body-lg);
}

.hero-property-img {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0;
  z-index: 5;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.hero-property-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ── VIDEO SECTION UPDATES ── */
.hp-btn-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hp-btn-play-pulse {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--clr-green-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.7);
  animation: pulse-border 2s infinite;
}

.hp-btn-play-pulse:hover {
  transform: scale(1.1);
  background: var(--clr-green-main);
}

.hp-btn-play-pulse:hover .hp-play-text {
  color: var(--clr-white);
}

.hp-play-text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-white);
}

.hp-video-wrap img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: all 0.4s ease;
}

.hp-video-wrap:hover img {
  transform: translateY(-5px);
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.7);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(127, 176, 105, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(127, 176, 105, 0);
  }
}

/* ── WHY CHOOSE SECTION ── */
.antila-why-choose {
  background-color: #F8F9F5;
  padding: 60px 0;
}

.why-header {
  margin-bottom: 70px;
}

.why-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.why-header-left {
  flex: 1;
}

.why-header-right {
  width: 45%;
  padding-bottom: 10px;
}

.why-header-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text-body);
  margin-bottom: 30px;
}

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

/* Card 1: Info with BG Image */
.why-card-info {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 600px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.why-card-info .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.why-card-info:hover .bg-img {
  transform: scale(1.1);
}

.why-card-info .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.why-info-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  color: var(--clr-white);
}

.why-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-info-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.why-info-item:last-child {
  border-bottom: none;
}

.why-info-label {
  opacity: 0.8;
  font-weight: 300;
}

.why-info-value {
  font-weight: 600;
  color: var(--clr-white);
}

/* Card 2: Dark Content */
.why-card-dark {
  background-color: var(--clr-dark-bg);
  border-radius: 30px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--clr-white);
  height: 600px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.why-logo {
  margin-bottom: 30px;
}

.why-dark-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  color: var(--clr-white);
}

.why-dark-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.why-dark-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: auto;
  transition: transform 0.5s ease;
}

.why-card-dark:hover .why-dark-img {
  transform: translateY(-5px);
}

.hp-pattern-dots.section-01-dots {
  top: -30px;
  right: -30px;
}

.antila-about-project {
  padding: 60px 0;
  background-color: var(--clr-white);
}

.about-main-title {
  margin-top: 20px;
  font-size: var(--fs-h2);
  color: var(--clr-text-dark);
}

.about-full-desc {
  line-height: 1.8;
  color: var(--clr-text-body);
  font-size: 16px;
}

.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-img-main {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-img-main {
  transform: scale(1.05);
}

.about-stats-grid {
  margin-top: 80px;
  border-top: 1px solid var(--clr-border);
  padding-top: 40px;
}

.about-stat-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.about-stat-item:hover {
  transform: translateY(-5px);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--clr-green-main);
  margin-bottom: 15px;
  line-height: 1;
}

.about-stat-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-stat-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .about-stats-grid .uk-width-large-1-5 {
    width: 20%;
  }
}

.about-trusted-text {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
  opacity: 0.7;
}

@media (max-width: 959px) {
  .about-stats-grid .uk-grid-divider>[class*='uk-width-']:not(:first-child)::before {
    display: none;
  }
}

.why-card-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 600px;
}

.stat-box {
  flex: 1;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.stat-box.white {
  background: var(--clr-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-box.green {
  background: var(--clr-green-main);
  color: var(--clr-white);
  box-shadow: 0 20px 50px rgba(44, 95, 46, 0.15);
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-box.white .stat-num {
  color: var(--clr-text-dark);
}

.stat-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: inherit;
}

.stat-desc {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  color: inherit;
}

@media (max-width: 1200px) {
  .why-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .why-header-right {
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card-info,
  .why-card-dark,
  .why-card-stats {
    height: auto;
    min-height: 500px;
  }
}

/* ── FOOTER ── */
.antila-footer {
  background-color: var(--clr-dark-bg);
  color: var(--clr-white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  background-image: url('../img/dark-section-bg-image.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.antila-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg-image.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
}

.antila-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(44, 95, 46, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
}

/* Footer CTA */
.footer-cta-wrap {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--clr-white);
  max-width: 600px;
  line-height: 1.1;
  font-weight: 300;
}

.footer-stamp {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-stamp-text {
  padding: 10px;
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.footer-stamp-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 20px;
  z-index: 2;
}

/* Footer Main */
.footer-main {
  position: relative;
  z-index: 5;
}

.footer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  backdrop-filter: blur(10px);
}

.footer-logo-small img {
  max-height: 40px;
  margin-bottom: 24px;
}

.footer-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-social-label {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--clr-green-light);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer-column-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--clr-white);
}

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

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-list a::before {
  content: '·';
  font-weight: bold;
  color: var(--clr-green-main);
}

.footer-list a:hover {
  color: var(--clr-green-main);
  text-decoration: none;
}

.contact-info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(127, 176, 105, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green-light);
  flex-shrink: 0;
}

.contact-info-content label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--clr-white);
}

.contact-info-content span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom-wrap {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legals {
  display: flex;
  gap: 24px;
}

.footer-legals a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  text-decoration: none;
}

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

@media (max-width: 959px) {
  .footer-cta-wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ── BLOG SECTION ── */
.antila-blog {
  background-color: #F2F3EE;
  padding: 60px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-card {
  padding: 0 20px;
  background: transparent;
  transition: transform 0.4s ease;
}

.blog-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16 / 10;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Light Streak Effect */
.blog-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 2;
}

.blog-card:hover .blog-img-wrap::after {
  left: 150%;
}

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

.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--clr-green-light);
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--clr-text-dark);
}

.blog-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--clr-green-light);
  text-decoration: none;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-dark);
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.blog-link-icon {
  color: var(--clr-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
  transform: rotate(-45deg);

}

.blog-link:hover {
  color: var(--clr-green-light);
  text-decoration: none;
}

.blog-link:hover .blog-link-icon {
  transform: rotate(0deg);
}

/* ── CONTACT SECTION ── */
.antila-contact {
  background-color: var(--clr-white);
  padding: 60px 0;
  position: relative;
}

.contact-broker-card {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--clr-cream);
  border-radius: 16px;
  max-width: 400px;
}

.broker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.broker-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--clr-text-dark);
}

.broker-info p {
  font-size: 13px;
  margin: 0 0 10px;
  color: var(--clr-green-light);
  font-weight: 500;
}

.broker-contact-items {
  display: flex;
  gap: 12px;
}

.broker-contact-link {
  color: var(--clr-text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.broker-contact-link:hover {
  color: var(--clr-green-light);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--clr-off-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--clr-text-dark);
}

.antila-field-group {
  margin-bottom: 20px;
}

.antila-field-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--clr-text-dark);
  font-weight: 600;
}

.antila-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--clr-text-body);
}

.antila-input:focus {
  outline: none;
  border-color: var(--clr-green-light);
  box-shadow: 0 0 0 4px rgba(44, 95, 46, 0.05);
}

.antila-input::placeholder {
  color: #BBB;
}

textarea.antila-input {
  height: 120px;
  resize: none;
}

/* ── GALLERY SECTION ── */
.antila-gallery {
  /* background-color: #F2F3EE; */
  padding: 60px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-slider-wrap {
  position: relative;
  padding: 0 15px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.6s ease-in-out;
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-img-wrap::after {
  left: 150%;
}

.gallery-footer-link {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--clr-text-body);
}

.gallery-footer-link a {
  color: var(--clr-text-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--clr-green-main);
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.gallery-footer-link a:hover {
  color: var(--clr-green-main);
  border-color: transparent;
}

.antila-gallery .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.antila-gallery .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--clr-text-muted);
  opacity: 0.3;
  margin: 0 6px !important;
}

/* ── FLOORPLAN SECTION ── */
.antila-floorplan {
  background-color: #F2F3EE;
  padding: 60px 0;
}

.floorplan-header {
  text-align: center;
  margin-bottom: 60px;
}

.fp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.fp-item {
  flex: 1 1 300px;
  max-width: calc(33.333% - 20px);
  background: var(--clr-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.fp-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Logic for 1 or 2 items */
.fp-grid[data-count="1"] .fp-item {
  max-width: 100%;
}

.fp-grid[data-count="2"] .fp-item {
  max-width: calc(50% - 15px);
}

.fp-card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: var(--clr-text-dark);
}

.fp-img-wrap {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.fp-img-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.fp-room-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fp-room-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.fp-room-item:last-child {
  border-bottom: none;
}

.fp-room-name {
  color: var(--clr-text-body);
  font-weight: 500;
}

.fp-room-area {
  color: var(--clr-green-main);
  font-weight: 600;
}

@media (max-width: 959px) {
  .fp-item {
    max-width: 100% !important;
    flex: 1 1 100%;
  }
}

.gallery-nav-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  height: 50px !important;
  background: var(--clr-white) !important;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-nav-btn::after {
  font-size: 18px !important;
  font-weight: 900;
  color: var(--clr-green-main);
}

.gallery-nav-btn:hover {
  background: var(--clr-green-main) !important;
  transform: translateY(-2px);
}

.gallery-nav-btn:hover::after {
  color: var(--clr-white);
}

.swiper-button-prev.gallery-nav-btn {
  left: -25px !important;
}

.swiper-button-next.gallery-nav-btn {
  right: -25px !important;
}

.swiper-button-prev::before {
  display: none;
}

.swiper-button-next::before {
  display: none;
}

@media (max-width: 1300px) {
  .swiper-button-prev.gallery-nav-btn {
    left: 5px !important;
  }

  .swiper-button-next.gallery-nav-btn {
    right: 5px !important;
  }
}

.antila-gallery .swiper-pagination {
  display: none !important;
}

.antila-gallery .swiper-pagination-bullet-active {
  background: var(--clr-green-main);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ── INNER HEADER (ABOUT, BLOG, ETC.) ── */
.antila-inner-header {
  position: relative;
  padding: 160px 0 100px;
  background-color: #111;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

/* Grid Pattern Overlay */
.antila-inner-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.antila-inner-header__content {
  position: relative;
  z-index: 2;
}

.antila-inner-header__title {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--clr-white);
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.inner-breadcrumb a {
  color: var(--clr-white);
  transition: color 0.3s ease;
}

.inner-breadcrumb a:hover {
  color: var(--clr-green-light);
  text-decoration: none;
}

.inner-breadcrumb .separator {
  opacity: 0.5;
}

.inner-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 959px) {
  .antila-inner-header__title {
    font-size: 42px;
  }
}

/* ── ABOUT AMENITIES ADVANCED LAYOUT ── */
.about-amenity-tall {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 600px;
}

.about-amenity-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-amenity-tall:hover img {
  transform: scale(1.05);
}

.about-amenity-overlay-box {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--clr-white);
}

.about-amenity-overlay-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-amenity-overlay-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

/* Right Content Area */
.about-amenity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--clr-white);
  border-radius: 50px;
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}


/* ── AMENITY FEATURE LIST & GLASS OVERLAY ── */
.amenity-glass-box {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--clr-white);
  z-index: 3;
}

.amenity-glass-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clr-white);
}

.amenity-glass-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.amenity-glass-row:last-child {
  margin-bottom: 0;
}

.amenity-glass-label {
  opacity: 0.8;
  font-weight: 400;
}

.amenity-glass-value {
  font-weight: 600;
}

/* Feature List on the right */
.amenity-feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.amenity-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.3s ease;
}

.amenity-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--clr-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-green-dark);
  font-size: 24px;
  transition: all 0.3s ease;
}

.amenity-feature-item:hover .amenity-feature-icon {
  background: var(--clr-green-dark);
  color: var(--clr-white);
  transform: scale(1.05);
}

.amenity-feature-content {
  flex: 1;
}

.amenity-feature-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}

.amenity-feature-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-text-body);
}

.about-amenity-badge span {
  width: 6px;
  height: 6px;
  background: var(--clr-green-light);
  border-radius: 50%;
}

.about-amenity-main-title {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-text-dark);
  margin-bottom: 30px;
}

.about-amenity-grid-small {
  margin-top: 40px;
}

.about-amenity-img-small {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.about-amenity-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Amenity Cards Style */
.about-amenity-card {
  background: var(--clr-off-white);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-amenity-card:hover {
  background: var(--clr-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.amenity-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(127, 176, 105, 0.1);
  color: var(--clr-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.amenity-card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--clr-text-dark);
}

.amenity-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-text-body);
}

/* Light Streak Animation Effect */
.img-streak-effect {
  position: relative;
  overflow: hidden;
}

.img-streak-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.img-streak-effect:hover::after {
  left: 150%;
}

/* ── AROUND PROJECT SECTION (BG FULL + SPLIT LAYOUT) ── */
.around-project-wrapper {
  position: relative;
  width: 100%;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.around-split-container {
  display: flex;
  background: var(--clr-white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.around-contact-side {
  width: 45%;
  padding: 60px;
  background: #fdfdfb;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.around-slider-side {
  width: 55%;
  padding: 60px;
  position: relative;
  background: var(--clr-white);
}

/* Tùy chỉnh form trong section này */
.around-contact-side h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--clr-text-dark);
}

/* Overlay cho background */
.around-project-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}


.around-slider-container {
  position: relative;
  margin-top: 30px;
}

.around-item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}

.around-item-distance {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--clr-green-light);
  background: rgba(127, 176, 105, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.around-item-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text-body);
  margin-bottom: 40px;
}

/* Grouped Swiper Navigation in Card */
.around-nav-group {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.swiper-button-around {
  position: static !important;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: var(--clr-white) !important;
  border-radius: 50% !important;
  color: var(--clr-text-dark) !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

.swiper-button-around:after {
  font-family: 'FontAwesome' !important;
  font-size: 18px !important;
  font-weight: normal !important;
}

.swiper-button-around-prev:after {
  content: '\f104' !important;
  /* fa-angle-left */
}

.swiper-button-around-next:after {
  content: '\f105' !important;
  /* fa-angle-right */
}

.swiper-button-around:hover {
  background: var(--clr-green-light) !important;
  border-color: var(--clr-green-light) !important;
  color: var(--clr-white) !important;
}

@media (max-width: 1199px) {
  .around-split-container {
    flex-direction: column;
    max-width: 700px;
  }

  .around-contact-side,
  .around-slider-side {
    width: 100%;
    padding: 40px;
  }

  .around-contact-side {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 959px) {
  .around-project-wrapper {
    height: auto;
    padding: 60px 0;
  }
}

.about-amenity-extra-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  align-items: center;
}

.about-amenity-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-amenity-extra-icon {
  width: 24px;
  height: 24px;
  background: rgba(127, 176, 105, 0.1);
  color: var(--clr-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.about-amenity-extra-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text-dark);
}

.about-amenity-extra-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-green-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.about-amenity-extra-more:hover {
  transform: translateX(5px);
  color: var(--clr-green-light);
}

@media (max-width: 639px) {
  .about-amenity-extra-list {
    gap: 10px 20px;
  }

  .about-amenity-extra-name {
    font-size: 14px;
  }
}

.antila-gallery-page {
  padding: 60px 0;
}

.hp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
}

.hp-gallery-grid__item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.hp-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-gallery-grid__item:hover img {
  transform: scale(1.1);
}

.hp-gallery-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
  font-size: 24px;
}

.hp-gallery-grid__item:hover .hp-gallery-grid__overlay {
  opacity: 1;
}

.hp-gallery-contact {
  background: #fdfaf7;
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid #eee;
}

.hp-gallery-contact__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 32px;
  margin-bottom: 30px;
  color: #1a1a1a;
  text-align: center;
}

.hp-gallery-contact__icon {
  color: var(--clr-green-light, #7FB069);
  font-size: 20px;
  margin-right: 10px;
}

/* ── AMENITIES PAGE redesign ── */
.hp-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (min-width: 1220px) {
  .hp-amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hp-amenity-item {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hp-amenity-item:hover {
  transform: translateY(-8px);
}

.hp-amenity-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hp-amenity-item:hover .hp-amenity-item__img {
  transform: scale(1.1);
}

/* Hover Button Effect (Synced with Homepage Post) */
.hp-amenity-item__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-amenity-item:hover .hp-amenity-item__btn {
  opacity: 1;
  transform: scale(1) rotate(0);
  background: var(--clr-green-light, #7FB069);
  color: #fff;
}

.hp-amenity-item__overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  z-index: 2;
  transition: all 0.4s ease;
}

.hp-amenity-item:hover .hp-amenity-item__overlay {
  background: rgba(30, 30, 30, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-amenity-item__title {
  display: block;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff !important;
}

.hp-amenity-item__desc {
  display: block;
  font-size: 15px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  font-weight: 500;
}

/* ── NEIGHBOURHOOD PAGE redesign ── */
.hp-nb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.antila-location {
  background-color: #F2F3EE;
}

@media (min-width: 1220px) {
  .hp-nb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hp-nb-item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 35px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid #f0f0f0;
}

.hp-nb-item__icon {
  width: 50px;
  height: 50px;
  background: #f7f6f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--clr-green-light, #7FB069);
  font-size: 20px;
}

.hp-nb-item__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.4s ease;
  line-height: 1.3;
}

.hp-nb-item__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.hp-nb-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  transition: border-color 0.4s ease;
}

.hp-nb-item__link-text {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  transition: color 0.4s ease;
}

.hp-nb-item__link-btn {
  width: 32px;
  height: 32px;
  background: var(--clr-green-light, #7FB069);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.4s ease;
}

/* Hover Image Slide Up */
.hp-nb-item__hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.hp-nb-item__hover-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.hp-nb-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hp-nb-item:hover .hp-nb-item__hover-bg {
  transform: translateY(0);
}

.hp-nb-item:hover .hp-nb-item__title,
.hp-nb-item:hover .hp-nb-item__desc,
.hp-nb-item:hover .hp-nb-item__link-text {
  color: #fff !important;
  position: relative;
  z-index: 2;
}

.hp-nb-item:hover .hp-nb-item__icon,
.hp-nb-item:hover .hp-nb-item__footer {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-nb-item:hover .hp-nb-item__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ── BLOG LIST PAGE redesign ── */
.hp-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px 30px;
  margin-top: 50px;
}

@media (min-width: 1220px) {
  .hp-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hp-post-card {
  background: transparent;
  transition: transform 0.4s ease;
}

.hp-post-card:hover {
  transform: translateY(-10px);
}

.hp-post-card__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  aspect-ratio: 1.4 / 1;
}

.hp-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hp-post-card:hover .hp-post-card__img img {
  transform: scale(1.05);
}

.hp-post-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-green-light, #7FB069);
  margin-bottom: 15px;
  font-weight: 500;
}

.hp-post-card__meta i {
  font-size: 16px;
}

.hp-post-card__title {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
}

.hp-post-card__title a {
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.hp-post-card__title a:hover {
  color: var(--clr-green-light, #7FB069);
}

.hp-post-card__footer {
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-readmore__icon {
  width: 32px;
  height: 32px;
  background: #A0A584;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: transform 0.4s ease, background 0.3s ease;
}

.btn-readmore:hover {
  color: var(--clr-green-light, #7FB069);
}

.btn-readmore:hover .btn-readmore__icon {
  transform: rotate(-45deg);
  background: var(--clr-green-light, #7FB069);
}

.hp-post-card__body {
  padding: 20px 0;
}

/* Hover Button Effect for Blog Card */
.hp-post-card__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-post-card:hover .hp-post-card__btn {
  opacity: 1;
  transform: scale(1) rotate(0);
  background: var(--clr-green-light, #7FB069);
  color: #fff;
}

/* ── CONTACT PAGE V2 ── */
.hp-contact-v2 {
  display: flex;
  flex-wrap: wrap;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  margin-top: 60px;
}

.hp-contact-v2__info {
  width: 45%;
  background: #1a1a1a;
  padding: 60px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hp-contact-v2__form-wrap {
  width: 55%;
  padding: 20px 40px;
  background: #fff;
}

@media (max-width: 959px) {

  .hp-contact-v2__info,
  .hp-contact-v2__form-wrap {
    width: 100%;
  }

  .hp-contact-v2__info {
    padding: 40px;
  }
}

.hp-contact-v2__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}

.hp-contact-v2__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
}

.hp-contact-v2__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-contact-v2__item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(50% - 15px);
}

.hp-contact-v2__item.full-width {
  width: 100%;
}

.hp-contact-v2__icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-green-light, #7FB069);
  flex-shrink: 0;
}

.hp-contact-v2__label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.hp-contact-v2__val {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.hp-contact-v2__img {
  margin-top: auto;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.hp-contact-v2__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Form Styles */
.hp-form-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.uk-grid>.ameniti_info {
  padding-left: 30px !important;
}

.hp-form-v2-group {
  margin-bottom: 10px;
}

.hp-form-v2-group.full-width {
  grid-column: span 2;
  width: 100%;
  box-sizing: border-box;
}

.hp-form-v2-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.hp-form-v2-input {
  width: 100%;
  height: 55px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.hp-form-v2-textarea {
  height: 150px;
  padding: 20px;
}

.hp-form-v2-input:focus {
  background: #fff;
  border-color: var(--clr-green-light, #7FB069);
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-contact-v2 {
  background: #A0A584;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact-v2:hover {
  background: var(--clr-green-light, #7FB069);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ── CONTACT MAP SECTION ── */
.hp-contact-map-section {
  padding: 60px 0;
  background: #fdfdfd;
}

.hp-contact-map-header {
  text-align: center;
  margin-bottom: 60px;
}

.hp-contact-map-wrap {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  height: 600px;
}

.hp-contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hp-contact-map-info {
  position: absolute;
  top: 40px;
  left: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-width: 320px;
}

.hp-contact-map-info__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.hp-contact-map-info__address {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hp-contact-map-info__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-green-light, #7FB069);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hp-contact-map-info__link:hover {
  color: #1a1a1a;
  gap: 12px;
}

@media (max-width: 959px) {
  .hp-contact-map-section {
    padding: 60px 0;
  }

  .hp-contact-map-wrap {
    height: 450px;
  }

  .hp-contact-map-info {
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

/* ── BLOG DETAIL PAGE redesign ── */
.hp-post-detail-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.hp-post-detail__img {
  margin-bottom: 50px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hp-post-detail__img img {
  width: 100%;
  display: block;
}

.hp-post-detail__header {
  text-align: left;
  margin-bottom: 40px;
}

.hp-post-detail__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 15px;
  color: #1a1a1a;
}

.hp-post-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #888;
}

.hp-post-detail__content {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.hp-post-detail__content p {
  margin-bottom: 30px;
}

.hp-post-detail__content blockquote {
  background: #fdfdfd;
  border: none;
  padding: 40px !important;
  border-radius: 20px;
  margin: 40px 0 !important;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hp-post-detail__content blockquote p {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 0;
}

.hp-post-detail__content blockquote::before {
  content: '“';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  color: rgba(160, 165, 132, 0.1);
  /* Match btn color */
  font-family: serif;
  line-height: 1;
}

.hp-post-detail__footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hp-post-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-tag-label {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin-right: 5px;
}

.hp-tag-item {
  background: #A0A584;
  /* Project sage color */
  color: #fff;
  padding: 6px 15px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hp-tag-item:hover {
  background: #1a1a1a;
  color: #fff;
}

.hp-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hp-social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hp-social-btn:hover {
  background: #A0A584;
  color: #fff;
  transform: translateY(-3px);
}

.hp-related-section {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid #eee;
}

.hp-related-header {
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 959px) {
  .hp-post-detail__title {
    font-size: 32px;
  }

  .hp-post-detail__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── SIDEBAR CUSTOMIZATION ── */
.hp-offcanvas-bar {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 10px 0 !important;
  display: flex;
  flex-direction: column;
}

.hp-offcanvas-bar * {
  color: inherit;
}

.hp-offcanvas-close {
  top: 25px !important;
  right: 25px !important;
  width: 24px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 10;
}

.hp-offcanvas-close:hover {
  background: var(--clr-green-light);
  transform: rotate(90deg);
  border-color: transparent;
}

.hp-offcanvas-close i {
  font-size: 20px;
}

.hp-offcanvas-logo img {
  filter: brightness(0) invert(1);
  /* Force white logo if needed */
  max-height: 50px;
}

.hp-offcanvas-nav .uk-nav-offcanvas>li>a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hp-offcanvas-nav .uk-nav-offcanvas>li>a:hover {
  color: var(--clr-green-light) !important;
  padding-left: 10px;
}

.hp-offcanvas-contact {
  margin-top: 40px;
}

.hp-offcanvas-contact.uk-padding-left {
  padding-left: 10px !important;
}

.hp-offcanvas-contact a {
  display: block;
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hp-offcanvas-contact a:hover {
  color: var(--clr-green-light) !important;
}

.hp-offcanvas-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.hp-offcanvas-social a:hover {
  background: var(--clr-green-light);
  transform: translateY(-3px);
}

/* ── RESPONSIVE FIXES ── */

/* Fix horizontal overflow for all grids */
.uk-grid {
  margin-left: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.uk-grid>* {
  padding-left: 0 !important;
  box-sizing: border-box !important;
}

/* Property/Contact Forms */
@media (max-width: 767px) {
  .hp-form-v2-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .hp-form-v2-group.full-width {
    grid-column: span 1 !important;
  }

  .hp-contact-v2__form-wrap {
    padding: 20px !important;
  }
}

/* Contact Info Text Wrapping */
.hp-contact-v2__val {
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .hp-contact-v2__item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hp-contact-v2__title {
    font-size: 32px !important;
  }
}

/* Neighbourhood & Blog Cards Overflow */
.hp-nb-card,
.hp-post-card {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hp-nb-card__img img,
.hp-post-card__img img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
}

/* Sidebar Responsive Refinement */
@media (max-width: 767px) {
  .hp-offcanvas-bar {
    padding: 60px 20px 20px !important;
  }

  .hp-offcanvas-contact.uk-padding-left {
    padding-left: 15px !important;
  }

  .hp-offcanvas-nav .uk-nav-offcanvas>li>a {
    font-size: 16px !important;
  }
}

/* ── REFINED RESPONSIVE FIXES ── */

/* Neighbourhood Grid Fix */
@media (max-width: 767px) {
  .hp-nb-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .hp-nb-item {
    min-height: auto !important;
    padding: 25px !important;
  }
}

/* Post List Grid Fix */
@media (max-width: 959px) {
  .hp-post-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .hp-post-grid {
    grid-template-columns: 1fr !important;
  }
}

/* About Page Form (Real Estate Page) Fix */
@media (max-width: 959px) {
  .around-split-container {
    flex-direction: column !important;
    display: flex !important;
  }

  .around-contact-side,
  .around-slider-side {
    width: 100% !important;
    padding: 0 !important;
  }

  .around-contact-side {
    margin-bottom: 50px !important;
  }

  .around-project-wrapper {
    padding: 60px 0 !important;
  }

  /* Ensure fields stack in About page form */
  .around-contact-side .uk-grid>.uk-width-1-2 {
    width: 100% !important;
  }
}

/* General Card Overflow Fix */
.hp-nb-item,
.hp-post-card,
.fp-item {
  max-width: 100% !important;
  overflow: hidden !important;
}

/* Contact Info No-Wrap Fix */
.hp-contact-v2__info {
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  word-break: break-all !important;
  /* Fallback for very long emails/links */
}

@media (max-width: 767px) {
  .hp-contact-v2__info {
    padding: 30px !important;
  }
}


.hp-floating-social {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.hp-float-item {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  color: var(--color-dark) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy pop */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
  border: 2px solid #fff;
  /* White border for contrast */
  position: relative;
}

.hp-float-item:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hp-float-messenger {
  background: #0084ff;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-float-zalo {
  background: #0068ff;
  /* Zalo Blue */
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-float-hotline {
  background: #e31b23;
  /* Hotline Red */
  border-color: rgba(255, 255, 255, 0.2);
}

/* Pulse for Hotline to attract attention */
.hp-float-hotline::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #e31b23;
  animation: hp-pulse 2s infinite;
  opacity: 0.6;
}

.hp-back-to-top {
  background: var(--clr-green-light);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
}

.hp-back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.hp-back-to-top::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  animation: hp-pulse 2s infinite;
  opacity: 0.5;
}

@media (max-width: 639px) {
  .hp-floating-social {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .hp-float-item {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}