/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* CONTAINER */
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}
p {
  max-width: 750px;
  margin: 0 auto 16px;
  line-height: 1.8;
  text-align: justify;
  hyphens: auto;
}

/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;

  background: linear-gradient(90deg, #ff2d55, #7b2cff);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo-main {
  color: #fff;
}

.logo-accent {
  color: #ffd700;
}

/* MENU */
.menu a {
  margin-left: 15px;
  padding: 8px 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

/* ================= HERO ================= */

.hero {
  padding: 20px 0;
  background: linear-gradient(135deg, #ff2d55, #c72cff, #7b2cff);
  position: relative;
  overflow: hidden;
}

/* DEPTH EFFECT */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(255,255,255,0.15), transparent);
  top: 0;
  left: 0;
}

/* GRID */
.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-left h1 {
  font-size: 44px;
  font-weight: 700;
}

.hero-left h2 {
  font-size: 20px;
  margin: 12px 0;
  opacity: 0.9;
}

.hero-left p {
  opacity: 0.85;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 14px;
  margin-right: 10px;
  transition: 0.3s;
}

/* PRIMARY */
.btn-primary {
  background: #fff;
  color: #ff2d55;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* GLASS */
.btn-glass {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  color: #fff;
}

/* HOVER */
.btn:hover {
  transform: translateY(-3px);
}

/* IMAGE CARD */
.hero-image-wrap {
  border-radius: 25px;
  overflow: hidden;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);

  box-shadow: 0 25px 50px rgba(0,0,0,0.5);

  padding: 10px;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

 .menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  height: 100vh;

  background: rgba(15, 15, 20, 0.85); /* darker = better contrast */
  backdrop-filter: blur(18px);

  padding: 90px 25px 30px;
  transition: 0.35s ease;
  z-index: 1000;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu.active {
  right: 0;
}

.menu-toggle {
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}
  .hero-left h1 {
    font-size: 28px;
  }

}
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.1);

  color: #fff;
  font-size: 16px;
  cursor: pointer;

  backdrop-filter: blur(10px);
  z-index: 1100;
}

.menu-close:hover {
  background: rgba(255,255,255,0.2);
}
.menu-close {
  display: none;
}
@media(max-width:768px){

  .menu-close {
    display: flex;
  }

}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #ffffff, #f7f8ff);
}


.container {
  max-width: 1100px;
  margin: auto;
}

/* CONTENT (CENTERED CLEAN) */
.beauty-content {
  text-align: left !important;
   max-width: 1100px !important;
  
  margin-bottom: 70px !important;
}

.beauty-content h2 {
  font-size: 30px;
  background: linear-gradient(90deg, #ff2d55, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.beauty-content h2 {
  max-width: 100%;
  margin: 0 0 20px;
}
.beauty-content p {
  max-width: 100%;      /* remove restriction */
  margin: 0 0 16px;     /* remove center */
  text-align: left;     /* optional for clean look */
}

/* GRID */
.beauty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* CARD */
.beauty-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* HOVER = MAGIC */
.beauty-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(123,92,255,0.2);
}

/* IMAGE */
.image {
  overflow: hidden;
}

.image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

.beauty-card:hover img {
  transform: scale(1.08);
}

/* INFO */
.info {
  padding: 20px;
  text-align: center;
}

.info h3 {
  margin: 0;
  font-size: 20px;
  color: #222;
}

.info p {
  color: #888;
  margin: 8px 0 18px;
}

/* BUTTONS */
.actions {
  display: flex;
  gap: 10px;
}

.actions a {
  flex: 1;
  padding: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* CALL */
.actions a:first-child {
  background: linear-gradient(45deg, #ff4ecd, #7b5cff);
  color: #fff;
}

/* WHATSAPP */
.actions a:last-child {
  border: 1px solid #ddd;
  color: #444;
}

.actions a:last-child:hover {
  border-color: #7b5cff;
  color: #7b5cff;
}

/* GRID */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.glass-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* DEFAULT (Desktop) */
.glass-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}

/* Tablet */
@media (max-width: 1024px) {
  .glass-card img {
    height: 427px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .glass-card img {
    height: 525px;
  }
}

/* HOVER */
.glass-card:hover img {
  transform: scale(1.08);
}

/* GLASS INFO */
.glass-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  backdrop-filter: blur(12px);
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}

/* TEXT */
.glass-info h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.glass-info p {
  margin: 5px 0 15px;
  color: #666;
  font-size: 14px;
}

/* BUTTONS */
.glass-actions {
  display: flex;
  gap: 10px;
}

.glass-actions a {
  flex: 1;
  padding: 9px;
  border-radius: 20px;
  text-align: center;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

/* CALL */
.call {
  background: linear-gradient(45deg, #ff2d55, #7b2cff);
  color: #fff;
}

/* WHATSAPP */
.wa {
  border: 1px solid #ddd;
  color: #444;
}

.wa:hover {
  border-color: #7b2cff;
  color: #7b2cff;
}

/* CARD HOVER */
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(123,92,255,0.2);
}

.glass-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.glass-card:hover {
  box-shadow: 0 25px 60px rgba(123,92,255,0.25);
}

/* WhatsApp (PRIMARY) */
.wa {
  background: #25d366;
  color: #fff;
  border: none;
}

.wa:hover {
  background: #1ebe5d;
}

/* Call (SECONDARY) */
.call {
  background: linear-gradient(45deg, #ff2d55, #7b2cff);
  color: #fff;
}

/* ================= WHY SECTION ================= */

.why-section {
  position: relative;
  padding: 20px 20px;
  background: linear-gradient(135deg, #ff5a7a, #a855f7);
  color: #fff;
  overflow: hidden;
}

/* OVERLAY (for readability) */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

/* GLOW EFFECT */
.why-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  top: -100px;
  right: -100px;
}

/* CONTENT LAYER */
.why-section .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.why-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* BIG CARD (GLASS STYLE) */
.why-main {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.why-main h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* SIDE COLUMN */
.why-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SMALL CARDS (GLASS STYLE) */
.why-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s;
}

.why-box:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.15);
}

.why-box h4 {
  margin-bottom: 6px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-main {
    padding: 25px;
    border-radius: 16px;
  }

  .why-main h3 {
    font-size: 20px;
  }

  .why-main p {
    font-size: 14px;
    line-height: 1.6;
  }

  .why-side {
    gap: 15px;
  }

  .why-box {
    padding: 18px;
    border-radius: 14px;
  }

}

/* ================= SPLIT SECTION ================= */

.split-section {
  padding: 20px 20px;
  background: #ffffff;
}

.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: stretch; /* IMPORTANT */
}

/* LEFT IMAGE */
.split-left {
  height: 100%;
  display: flex;
}

.split-left img {
  width: 100%;
  height: 100%; /* KEY LINE */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.split-right h2 {
  font-size: 32px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ff2d55, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-right p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .split-wrap {
    grid-template-columns: 1fr;
  }

  .split-left img {
    height: 500px; /* fixed for mobile */
  }

}

.types-section {
  padding: 100px 20px;
  background: #f7f5ff;
}

.types-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;

  background: linear-gradient(90deg, #ff2d55, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.flow-section {
  padding: 14px 13px;
  background: linear-gradient(135deg, #ff2d55, #7b2cff);
  color: #fff;
}

.flow-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 70px;
}

/* FLOW WRAP */
.flow-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* LINE */
.flow-wrap::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.3);
}

/* STEP */
.flow-step {
  position: relative;
  text-align: center;
  max-width: 250px;
}

/* NUMBER CIRCLE */
.flow-step span {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #ff2d55;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.flow-step h3 {
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .flow-wrap {
    flex-direction: column;
    align-items: center;
  }

  .flow-wrap::before {
    display: none;
  }

  .flow-step {
    margin-bottom: 30px;
  }
}

.pro-text-section {
  padding: 20px 20px;
  background: #ffffff;
}

/* MAIN HEADING */
.pro-text-section h2 {
  font-size: 30px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ff2d55, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  
}

/* SUB HEADINGS */
.pro-text-section h3 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ff2d55, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.pro-text-section p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
  max-width: 1100px;
}

.premium-banner {
  padding: 1px 1px;
  background: #ffffff;
}

/* MAIN BOX */
.premium-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 30px;
  border-radius: 24px;

  background: linear-gradient(135deg, #ff2d55, #7b2cff);
  color: #fff;

  position: relative;
  overflow: hidden;
}

/* SOFT GLOW SHAPE */
.premium-box::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

/* LEFT TEXT */
.premium-text {
  max-width: 700px;
  z-index: 2;
}

.premium-text h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.premium-text p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 20px;
}

/* BUTTON */
.premium-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #fff;
  color: #ff2d55;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.premium-btn:hover {
  transform: translateY(-2px);
}

/* IMAGE */
.premium-image {
  position: relative;
}

.premium-image img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  /* BLEND EFFECT */
  mix-blend-mode: normal;
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-box {
    flex-direction: column;
    text-align: center;
  }

  .premium-text h2 {
    font-size: 26px;
  }

  .premium-image img {
    width: 100%;
    height: 335px;
  }
}


.story-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* BLOCK */
.story-block {
  max-width: 650px;
  margin-bottom: 60px;
}

/* LEFT / RIGHT SHIFT */
.story-block.left {
  margin-right: auto;
}

.story-block.right {
  margin-left: auto;
}

/* HEADINGS */
.story-block h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

/* TEXT */
.story-block p {
  color: #555;
  line-height: 1.9;
  font-size: 15px;
}

/* SUBTLE LINE (premium touch) */
.story-block::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff2d55, #7b2cff);
}

/* MOBILE */
@media (max-width: 768px) {
  .story-block {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.scroll-section {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.scroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.scroll-track img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.scroll-track img:hover {
  transform: scale(1.08);
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.scroll-wrapper::before,
.scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.premium-reviews {
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff2d75, #6a00ff);
  color: #fff;
}

.premium-reviews h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtext {
  max-width: 500px;
  opacity: 0.85;
  margin-bottom: 50px;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ONLY FIX FIRST CARD */
.review-card.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Keep overlay above image */
.review-card .overlay {
  position: absolute;
  z-index: 2;
}
.premium-reviews {
  padding: 40px 0 20px;
}


/* CARD BASE (DESKTOP DEFAULT) */
.review-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 400px; /* desktop normal */
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* HERO CARD (DESKTOP) */
.review-card.hero {
  grid-column: span 1;
  height: 400px;
}

/* IMAGE */
.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  transition: transform 0.6s ease;
}
.review-card img {
  display: block; /* 👈 CRITICAL FIX */
}
/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 20%,
    rgba(0,0,0,0.5) 60%,
    transparent 100%
  );
}

/* TEXT */
.overlay h3 {
  font-size: 20px;
  font-weight: 600;
}

.stars {
  color: gold;
  margin: 6px 0;
  font-size: 14px;
}

.overlay p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.9;

  /* prevent overflow on small screens */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.tag.new {
  background: #ff2d75;
}

/* HOVER */
.review-card:hover img {
  transform: scale(1.08);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 0, 150, 0.4);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* NORMAL CARDS */
  .review-card {
    height: 380px;
  }

  /* HERO CARD (FIXED) */
  .review-card.hero {
    grid-column: span 1;
    height: 420px; /* 👈 make it bigger than normal */
  }

  /* IMAGE FIX */
  .review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* 👈 better than top center */
  }
}

.ks-new-exp {
  padding: 20px 5%;
  position: relative;
  overflow: hidden;
}

/* SOFT BACKGROUND BLOBS */
.ks-new-exp::before,
.ks-new-exp::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,128,0.25), transparent);
  z-index: 0;
}

.ks-new-exp::before {
  top: -50px;
  left: -50px;
}

.ks-new-exp::after {
  bottom: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(128,0,255,0.25), transparent);
}

/* LAYOUT */
.ks-exp-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* TEXT */
.ks-exp-text {
  flex: 1;
  min-width: 300px;
}

.ks-exp-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4d6d, #9d4edd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ks-exp-text p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* CARDS */
.ks-exp-cards {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD STYLE */
.ks-card {
  width: 200px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-decoration: none;
}

.ks-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.ks-label {
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

/* HOVER */
.ks-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 0, 128, 0.2);
}

/* MOBILE */
@media(max-width: 768px) {
  .ks-exp-wrap {
    flex-direction: column;
  }

  .ks-exp-text h2 {
    font-size: 28px;
  }

  .ks-card {
    width: 100%;
  }

  .ks-card img {
    height: 310px;
    object-position: top;
  }
}

.ks-areas {
  padding: 30px 5%;
  background: #fff;
}

/* HEADER */
.ks-areas-head {
  max-width: 1000px;
  margin-bottom: 50px;
}

.ks-areas-head h2 {
  font-size: 36px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff4d6d, #9d4edd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 750px;
  margin: 0 auto 20px;
}

.ks-areas-head p {
  color: #555;
  line-height: 1.7;
 
}

/* GRID */
.ks-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.ks-area {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  display: block;
}

/* BIG VARIANTS */
.ks-area.big {
  grid-column: span 2;
  height: 260px;
}

.ks-area.wide {
  grid-column: span 2;
}

/* IMAGE */
.ks-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* OVERLAY */
.ks-area span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  z-index: 2;
}

/* GRADIENT OVERLAY */
.ks-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* HOVER */
.ks-area:hover img {
  transform: scale(1.08);
}

.ks-area:hover {
  box-shadow: 0 15px 40px rgba(255, 0, 128, 0.15);
}

/* MOBILE */
@media(max-width: 900px) {
  .ks-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ks-area.big,
  .ks-area.wide {
    grid-column: span 2;
  }
}

@media(max-width: 500px) {
  .ks-areas-grid {
    grid-template-columns: 1fr;
  }

  .ks-area {
    height: 220px;
  }
}
@media(max-width: 768px) {

  .ks-areas-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  /* hide ugly scrollbar */
  .ks-areas-grid::-webkit-scrollbar {
    display: none;
  }

  .ks-area {
    min-width: 85%;
    height: 220px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  /* remove desktop grid spans */
  .ks-area.big,
  .ks-area.wide {
    grid-column: unset;
    height: 220px;
  }

}


.ks-city-pro {
  padding: 21px 5%;
  background: linear-gradient(135deg, #ff4d6d, #9d4edd);
}

.ks-city-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

/* LEFT BOX */
.ks-city-box {
  flex: 1.3;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 20px;
  color: #fff;
}

.ks-city-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.ks-city-box p {
  line-height: 1.8;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

/* RIGHT LIST */
.ks-city-links {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* LINKS */
.ks-link a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

/* HOVER */
.ks-link a:hover {
  background: rgba(255,255,255,0.2);
  padding-left: 18px;
}

/* MOBILE */
@media(max-width: 768px) {
  .ks-city-inner {
    flex-direction: column;
  }

  .ks-city-links {
    grid-template-columns: 1fr;
  }
}

.ks-faq {
  padding: 80px 5%;
  background: #fff;
}

.ks-faq-wrap {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.ks-faq-head {
  text-align: center;
  margin-bottom: 40px;
}

.ks-faq-head h2 {
  font-size: 34px;
  background: linear-gradient(90deg, #ff4d6d, #9d4edd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ks-faq-head p {
  color: #666;
  margin-top: 10px;
}

/* FAQ ITEM */
.ks-faq-item {
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* QUESTION */
.ks-faq-question {
  width: 100%;
  padding: 18px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* ADD ICON */
.ks-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
}

/* ANSWER */
.ks-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  background: #fafafa;
}

.ks-faq-answer p {
  padding: 15px 18px;
  color: #555;
}

/* ACTIVE */
.ks-faq-item.active .ks-faq-answer {
  max-height: 200px;
}

.ks-faq-item.active .ks-faq-question::after {
  content: "-";
}

.ks-footer {
  background: linear-gradient(135deg, #ff4d6d, #9d4edd);
  color: #fff;
  padding: 60px 5% 20px;
}

/* WRAP */
.ks-footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* BRAND */
.ks-footer-brand {
  flex: 1.5;
  min-width: 250px;
}

.ks-footer-brand h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.ks-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* LINKS */
.ks-footer-links {
  flex: 1;
  min-width: 180px;
}

.ks-footer-links h4 {
  margin-bottom: 10px;
}

.ks-footer-links a {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.ks-footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* CONTACT */
.ks-footer-contact {
  flex: 1;
  min-width: 200px;
}

.ks-footer-contact h4 {
  margin-bottom: 10px;
}

.ks-footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

/* BOTTOM */
.ks-footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

.ks-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* MOBILE */
@media(max-width: 768px) {
  .ks-footer-wrap {
    flex-direction: column;
    gap: 25px;
  }

  .ks-footer-bottom {
    margin-top: 30px;
  }
}
