/* =================================================  
   GLOBAL RESET  
================================================= */  
* {  
  box-sizing: border-box;  
}  
html, body {  
  margin: 0;  
  padding: 0;  
  width: 100%;  
  font-family: 'Inter', sans-serif;  
  overflow-x: hidden;  
  background: #ffffff;  
}  
img {  
  max-width: 100%;  
  display: block;  
}  

/* =================================================  
   NAVBAR – ENA STYLE  
================================================= */  
.custom-navbar {  
  position: fixed;  
  top: 0;  
  left: 0;  
  width: 100%;  
  height: 80px;  
  z-index: 1000;  
  display: flex;  
  align-items: center;  
  justify-content: space-between;  
  padding: 0 60px;  
  background: transparent;  
}  
.custom-navbar::before {  
  content: "";  
  position: absolute;  
  inset: 0;  
  background: rgba(0,0,0,0.28);  
  backdrop-filter: blur(8px);  
  z-index: -1;  
}  
.nav-left {  
  display: flex;  
  align-items: center;  
}  
.nav-logo {  
  height: 48px;  
  filter: brightness(0) invert(1);  
  /* optional: max height to avoid overflow on small screens */  
  max-height: 100%;  
}  
.nav-links {  
  list-style: none;  
  display: flex;  
  gap: 28px;  
  margin: 0;  
  padding: 0;  
}  
.nav-links a {  
  color: #ffffff;  
  text-decoration: none;  
  font-size: 13px;  
  font-weight: 500;  
  letter-spacing: 2px;  
  text-transform: uppercase;  
  opacity: 0.85;  
}  

/* =================================================  
   HERO  
================================================= */  
.about-hero {  
  position: relative;  
  min-height: 100vh;  
  padding-top: 80px;  
  background: #1c1c1c url("/image/about.png") center / cover no-repeat;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
}  
.about-hero-overlay {  
  position: absolute;  
  inset: 0;  
  background: rgba(0,0,0,0.35);  
}  
.about-hero-content {  
  position: relative;  
  z-index: 2;  
  max-width: 900px;  
  text-align: center;  
  color: #fff;  
}  
.hero-subtitle {  
  margin-top: 28px;  
  font-size: 13px;  
  letter-spacing: 4px;  
  text-transform: uppercase;  
  color: rgba(255,255,255,0.85);  
}  
@media (max-width: 768px){  
  .about-hero-content h1 {  
    font-size: 36px;  
    line-height: 1.2;  
  }  
  .hero-subtitle {  
    font-size: 11px;  
    letter-spacing: 2px;  
  }  
}  

/* =================================================  
   ABOUT CONTENT  
================================================= */  

.about-content-section {
  padding: 140px 0;   /* më shumë ajër sipër/poshtë */
  background: #ffffff;
}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
 align-items: center; /* ← shumë e rëndësishme */
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;     /* pak më i madh për efekt premium */
  line-height: 1.2;
  margin-bottom: 28px;
  color: #1f1f1f;
  max-width: 520px;   /* ← KY ËSHTË ÇELËSI */
}


.about-text p {
  font-size: 17px;
  line-height: 1.9;
  max-width: 900px;     /* më i gjerë si Ena */
}


.about-image {
  height: 500px;             /* FIX: foto më e shkurtër */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =================================================
   ABOUT SLIDER – SHTESA
================================================= */

.about-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;

  display: flex;
  align-items: center;
}

.about-viewport {
  overflow: hidden;
  width: 100%;
}

.about-track {
  display: flex;
  transition: transform 0.7s ease;
}

/* çdo slide mban grid-in ekzistues */
.about-slide {
  flex: 0 0 100%;
}

/* shigjetat */
.about-arrow {
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 20px;
  color: #222;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.about-arrow:hover {
  opacity: 0.6;
}

.about-arrow.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}




/* =================================================
   DIFFERENCE – VIDEO BACKGROUND
================================================= */

.difference-section.video-bg {
  position: relative;
  padding: 50px 0 140px;
  overflow: hidden;
}

/* VIDEO */
.difference-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.difference-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245,240,232,0.6),
    rgba(245,240,232,0.5)
  );
  z-index: 2;
}

/* CONTENT */
.difference-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

/* =================================================
   HEADER
================================================= */

.difference-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 60px;
}

.difference-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #1f1f1f;
  margin-bottom: 16px;
}

.difference-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

/* =================================================
   SLIDER STRUCTURE – 4 KARTA FIX
================================================= */

.difference-slider-wrapper {
  position: relative;
   padding: 0 80px;   /* ✅ KËTU */
  max-width: 1400px;
  margin: 0 auto;
}

.difference-slider {
  overflow: hidden;
  padding: 0;
}

.difference-track {
  display: flex;
  gap: 50px;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* =================================================
   CARD – 4 KARTA TË PLOTA
================================================= */

.difference-card {
  flex: 0 0 calc((100% - 3 * 50px) / 4);
  background: transparent;
  transition: transform 0.4s ease;
}

.difference-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.difference-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* TEXT */
.difference-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 18px 0 6px;
  color: #1f1f1f;
}

.difference-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* =================================================
   ARROWS
================================================= */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #222;
  padding: 10px;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  opacity: 0.6;
}

/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 1200px) {
  .difference-card {
    flex: 0 0 calc((100% - 2 * 40px) / 3);
  }

  .difference-track {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .difference-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }

  .difference-track {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .difference-slider {
    padding: 0 20px;
  }

  .difference-card {
    flex: 0 0 100%;
  }

  .difference-track {
    gap: 20px;
  }
}

/* =================================================
   ABOUT PAGE REFRESH
================================================= */

.about-hero {
  min-height: 100svh;
  padding: 120px 48px 72px;
  align-items: flex-end;
  justify-content: flex-start;
  background-position: center center;
}

.about-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.24) 0%, rgba(8, 12, 16, 0.44) 44%, rgba(8, 12, 16, 0.82) 100%);
}

.about-hero-content {
  width: min(760px, 100%);
  max-width: 760px;
  margin-left: clamp(0px, 5vw, 72px);
  text-align: left;
  color: #ffffff;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.about-hero-content h1 {
  margin: 0;
  max-width: 12ch;
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-hero-content em {
  color: #dec19c;
  font-style: normal;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.about-hero-note {
  max-width: 48ch;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
}

.about-content-section {
  padding: 120px 0 110px;
  background:
    linear-gradient(180deg, #f5efe7 0%, #ffffff 60%);
}

.about-slider-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 90px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-viewport {
  overflow: hidden;
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  touch-action: pan-y;
}

.about-track {
  display: flex;
  width: 100%;
  align-items: stretch;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.about-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.about-content-wrapper {
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 26px 60px rgba(71, 50, 30, 0.12);
  text-align: center;
}

.about-image {
  order: 0;
  width: 100%;
  max-width: 860px;
  height: clamp(280px, 42vw, 470px);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}

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

.about-text {
  order: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-slide-kicker {
  order: -1;
  display: inline-block;
  width: 100%;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7b56;
  text-align: center;
}

.about-text h2 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 18px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  text-align: center;
}

.about-text p {
  width: 100%;
  max-width: 62ch;
  margin: 0 auto 14px;
  font-size: 17px;
  line-height: 1.85;
  color: #54483c;
  text-align: center;
}

.about-arrow,
.slider-btn {
  position: absolute;
  top: auto;
  bottom: 0;
  z-index: 10;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(77, 59, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #231a14;
  box-shadow: 0 16px 34px rgba(71, 50, 30, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.about-arrow:hover,
.slider-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  opacity: 1;
}

.about-arrow.is-disabled,
.slider-btn.is-disabled {
  opacity: 0.32;
  pointer-events: none;
  transform: none;
}

.about-arrow.prev,
.slider-btn.prev {
  left: calc(50% - 64px);
}

.about-arrow.next,
.slider-btn.next {
  right: calc(50% - 64px);
}

.difference-section.video-bg {
  padding: 110px 0 108px;
}

.difference-overlay {
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.7) 0%, rgba(244, 238, 229, 0.58) 100%);
}

.difference-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.difference-header {
  margin-bottom: 34px;
  padding: 0;
  text-align: center;
}

.difference-title {
  margin: 0 0 12px;
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 1.02;
}

.difference-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #7e6d5a;
}

.difference-slider-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 92px;
  position: relative;
}

.difference-slider {
  overflow: hidden;
  touch-action: pan-y;
}

.difference-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.difference-card {
  flex: 0 0 calc((100% - 48px) / 3);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 52px rgba(71, 50, 30, 0.14);
  transition: transform 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-4px);
}

.difference-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.difference-card-content {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.difference-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
}

.difference-card p {
  max-width: 32ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: #574a3f;
}

.about-contact-section .contact-overlay {
  background: linear-gradient(180deg, rgba(8, 12, 16, 0.66) 0%, rgba(8, 12, 16, 0.84) 100%);
}

.about-contact-wrapper {
  padding: 80px 24px;
}

.about-contact-form {
  max-width: 980px;
  width: 100%;
  padding: 34px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.about-contact-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-contact-form h3 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 48px);
}

.about-contact-copy {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.about-contact-subtitle {
  max-width: 46ch;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.about-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 0 0 24px;
}

.about-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.about-contact-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-contact-fields {
  width: 100%;
  max-width: 420px;
}

.about-contact-fields form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-contact-fields input[name="subject"],
.about-contact-fields textarea,
.about-contact-fields button {
  grid-column: 1 / -1;
}

.about-contact-fields textarea {
  min-height: 148px;
}

.about-host-legacy {
  display: none !important;
}

.about-contact-intro {
  max-width: 1200px;
  margin: 72px auto 0;
  padding: 0 24px;
  text-align: center;
}

.about-contact-intro h2 {
  margin: 0;
  font-family: 'Allura', cursive;
  font-weight: 400;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.1;
  color: #1f1f1f;
}

@media (max-width: 1080px) {
  .difference-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 104px 18px 34px;
    align-items: flex-end;
  }

  .about-hero-content {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .about-hero-content h1 {
    max-width: 10ch;
    font-size: clamp(40px, 12vw, 58px);
  }

  .about-hero-kicker {
    letter-spacing: 3px;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .about-hero-note {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-hero-highlights {
    gap: 10px;
  }

  .about-hero-highlights span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-content-section {
    padding: 34px 0 88px;
  }

  .about-slider-wrapper {
    padding: 0 16px 74px;
  }

  .about-content-wrapper {
    padding: 20px;
    gap: 20px;
    border-radius: 22px;
  }

  .about-image {
    height: 240px;
    border-radius: 18px;
  }

  .about-text h2 {
    font-size: 34px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.72;
  }

  .about-arrow,
  .slider-btn {
    top: auto;
    bottom: 0;
    width: 46px;
    height: 46px;
  }

  .difference-section.video-bg {
    padding: 88px 0 86px;
  }

  .difference-content {
    padding: 0 16px;
  }

  .difference-header {
    margin-bottom: 24px;
  }

  .difference-title {
    font-size: 34px;
  }

  .difference-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .difference-slider-wrapper {
    padding: 0 0 74px;
  }

  .difference-track {
    gap: 18px;
  }

  .difference-card {
    flex: 0 0 100%;
    border-radius: 22px;
  }

  .difference-card img {
    height: 220px;
  }

  .difference-card-content {
    padding: 22px 18px 24px;
  }

  .difference-card h3 {
    font-size: 24px;
  }

  .difference-card p {
    font-size: 15px;
  }

  .about-contact-wrapper {
    padding: 54px 16px;
  }

  .about-contact-form {
    max-width: 760px;
    padding: 26px 20px;
    border-radius: 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-contact-form h3 {
    font-size: 34px;
  }

  .about-contact-copy {
    align-items: center;
    text-align: center;
  }

  .about-contact-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.7;
  }

  .about-contact-links {
    flex-direction: column;
    justify-content: center;
  }

  .about-contact-links a {
    justify-content: center;
  }

  .about-contact-fields form {
    grid-template-columns: 1fr;
  }

  .about-contact-fields input[name="subject"],
  .about-contact-fields textarea,
  .about-contact-fields button {
    grid-column: auto;
  }

  .about-contact-intro {
    margin-top: 40px;
    padding: 0 16px;
  }

  .about-contact-intro h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 100svh;
    padding: 96px 16px 24px;
    align-items: flex-end;
    justify-content: flex-start;
    background-position: center;
  }

  .about-hero-overlay {
    background: linear-gradient(180deg, rgba(9, 12, 15, 0.16) 0%, rgba(9, 12, 15, 0.6) 58%, rgba(9, 12, 15, 0.9) 100%);
  }

  .about-hero-content {
    max-width: none;
    width: 100%;
    padding: 28px 22px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(12, 19, 24, 0.08), rgba(12, 19, 24, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
  }

  .about-hero-content h1 {
    max-width: 10ch;
    font-size: 40px;
    line-height: 1.04;
  }

  .about-hero-content em {
    color: #d9bc95;
    font-style: normal;
  }

  .hero-subtitle {
    max-width: 24ch;
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 2px;
    text-align: left;
  }

  .about-content-section {
    padding: 28px 0 88px;
    background: #f3eee6;
  }

  .about-slider-wrapper {
    padding: 0 16px 72px;
    display: flex;
  }

  .about-content-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
    border-radius: 30px;
    background: #fffdf9;
    box-shadow: 0 22px 46px rgba(58, 42, 28, 0.1);
  }

  .about-image {
    order: -1;
    height: 260px;
    border-radius: 24px;
    overflow: hidden;
  }

  .about-text h2 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .about-text p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
    color: #544a3f;
  }

  .about-arrow {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(58, 42, 28, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .about-arrow.prev {
    left: calc(50% - 52px);
  }

  .about-arrow.next {
    right: calc(50% - 52px);
  }

  .difference-section.video-bg {
    padding: 88px 0 86px;
  }

  .difference-content {
    padding: 0 16px;
  }

  .difference-header {
    margin-bottom: 28px;
    padding: 0;
    text-align: left;
  }

  .difference-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .difference-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .difference-slider-wrapper {
    padding: 0 0 68px;
  }

  .difference-track {
    gap: 18px;
  }

  .difference-card {
    flex: 0 0 82%;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 40px rgba(58, 42, 28, 0.1);
  }

  .difference-card img {
    height: 220px;
  }

  .difference-card-content {
    padding: 22px 20px 8px;
  }

  .difference-card h3 {
    font-size: 24px;
    padding: 0 20px;
    margin-bottom: 10px;
  }

  .difference-card p {
    padding: 0 20px 24px;
    font-size: 15px;
    line-height: 1.72;
    color: #544a3f;
  }

  .slider-btn {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f1914;
    box-shadow: 0 14px 30px rgba(58, 42, 28, 0.12);
  }

  .slider-btn.prev {
    left: calc(50% - 52px);
  }

  .slider-btn.next {
    right: calc(50% - 52px);
  }
}

/* =================================================
   FINAL OVERRIDES
================================================= */

.about-hero-content {
  width: min(760px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: center !important;
  text-align: center !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.about-hero-content h1,
.about-hero-kicker,
.hero-subtitle,
.about-hero-note {
  text-align: center !important;
}

.about-hero-content h1 {
  max-width: 12ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-subtitle,
.about-hero-note {
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-hero-highlights {
  display: none !important;
}

.about-contact-section .contact-overlay {
  background: linear-gradient(180deg, rgba(10, 14, 18, 0.18) 0%, rgba(10, 14, 18, 0.42) 100%) !important;
}

.about-contact-form {
  background: rgba(255, 249, 241, 0.78) !important;
  border-color: rgba(54, 40, 27, 0.12) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.about-contact-copy {
  text-align: left !important;
}

.about-contact-kicker,
.about-contact-form h3,
.about-contact-subtitle,
.about-contact-links a,
.about-contact-form input,
.about-contact-form textarea,
.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder,
.about-contact-form button,
.about-contact-form button span {
  color: #181410 !important;
}

.about-contact-links a {
  border-color: rgba(54, 40, 27, 0.12) !important;
  background: rgba(255, 255, 255, 0.52) !important;
}

.about-contact-form input,
.about-contact-form textarea {
  border-color: rgba(54, 40, 27, 0.16) !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

.about-contact-form button {
  background: #f3ece3 !important;
  border: 1px solid rgba(54, 40, 27, 0.14) !important;
}

@media (max-width: 768px) {
  .about-contact-copy {
    text-align: center !important;
    align-items: center !important;
  }

  .about-contact-links {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 104px 20px 38px !important;
    justify-content: center !important;
  }

  .about-hero-content {
    width: calc(100% - 40px) !important;
  }

  .difference-content {
    padding: 0 20px !important;
  }

  .difference-slider-wrapper {
    padding: 0 0 74px !important;
  }

  .difference-slider {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .difference-track {
    gap: 0 !important;
  }

  .difference-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 360px;
    margin: 0 auto;
  }

  .difference-card-content {
    align-items: center !important;
    text-align: center !important;
  }

  .about-contact-wrapper {
    padding: 54px 20px !important;
  }
}

/* ===============================
   CONTACT SECTION - TRANSPARENT
================================ */

.about-contact-section .contact-overlay {
  background: linear-gradient(180deg, rgba(7, 11, 15, 0.54) 0%, rgba(7, 11, 15, 0.72) 100%) !important;
}

.about-contact-form {
  max-width: 680px !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: block !important;
  overflow: visible !important;
  text-align: center !important;
}

.about-contact-kicker,
.about-contact-form h3,
.about-contact-subtitle,
.about-contact-links a,
.about-contact-form input,
.about-contact-form textarea,
.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: #ffffff !important;
}

.about-contact-subtitle {
  max-width: 46ch !important;
  margin: 0 auto 22px !important;
}

.about-contact-links {
  justify-content: center !important;
}

.about-contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.about-contact-links a:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.about-contact-form form {
  max-width: 420px;
  margin: 0 auto;
}

.about-contact-form input,
.about-contact-form textarea {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.about-contact-form button {
  background: #ffffff !important;
  color: #181410 !important;
  border: 0 !important;
}

.about-contact-form button span {
  color: #181410 !important;
}

@media (max-width: 768px) {
  .about-contact-form {
    padding: 0 !important;
  }

  .about-contact-links {
    flex-direction: column !important;
  }

  .about-contact-links a {
    justify-content: center !important;
  }
}
