/* ==================== GLOBAL STYLES ==================== */
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background-color: var(--white) !important;
  font-family: "Segoe UI", sans-serif;
}
:focus,
:active {
  box-shadow: none !important;
}

/* ============================================
                   ULTRA PREMIUM TOP BAR - V3
                ============================================ */
.top-bar-ultra {
  background: linear-gradient(135deg, #080e1a 0%, #0f1a2e 40%, #1a2a3a 100%);
  padding: 14px 40px;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* ===== ANIMATED GLOW LINE ===== */
.top-bar-ultra::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.1) 20%,
    #c9a84c 50%,
    rgba(201, 168, 76, 0.1) 80%,
    transparent
  );
  animation: goldSweep 4s ease-in-out infinite;
}

@keyframes goldSweep {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}

/* ===== GLOW ORB BACKGROUND ===== */
.top-bar-ultra::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* ===== LEFT: LOCATION ===== */
.location-ultra {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 24px 10px 18px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.location-ultra:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.05);
}

.location-ultra .icon-glow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #080e1a;
  box-shadow:
    0 0 20px rgba(201, 168, 76, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.4s;
}

.location-ultra:hover .icon-glow {
  transform: rotate(-10deg) scale(1.05);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
}

.location-ultra .city-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.location-ultra .city-text span {
  color: #c9a84c;
}

.location-ultra .divider-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.location-ultra .tagline-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ===== CENTER: CONTACT ===== */
.contact-ultra {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px 8px 16px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Hover Glow Effect */
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.05),
    rgba(59, 130, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-card .icon-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.contact-card .icon-ring.phone-ring {
  background: linear-gradient(135deg, #1a4db8, #2563eb);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.contact-card .icon-ring.email-ring {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.contact-card .info-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.contact-card .info-wrap .label-sm {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.contact-card .info-wrap .value-lg {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.contact-card .info-wrap .value-lg a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card .info-wrap .value-lg a:hover {
  color: #c9a84c;
}

/* ===== DIVIDER ===== */
.divider-vertical {
  width: 1px;
  height: 35px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 215, 0, 0.15),
    transparent
  );
}

/* ===== RIGHT: SOCIAL ===== */
.social-ultra {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.social-ultra .follow-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
  margin-right: 4px;
}

.social-icon-ultra {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Social Hover - Each Platform Different Color */
.social-icon-ultra::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0);
}

.social-icon-ultra:hover {
  transform: translateY(-4px) scale(1.08);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.social-icon-ultra:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Individual Colors */
.social-icon-ultra.insta:hover::after {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-icon-ultra.fb:hover::after {
  background: #1877f2;
}
.social-icon-ultra.yt:hover::after {
  background: #ff0000;
}
.social-icon-ultra.twitter:hover::after {
  background: #000000;
}
.social-icon-ultra.linkedin:hover::after {
  background: #0a66c2;
}
.social-icon-ultra.whatsapp:hover::after {
  background: #25d366;
}

.social-icon-ultra i {
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar-ultra {
    padding: 12px 24px;
  }
  .location-ultra .tagline-text {
    display: none;
  }
  .contact-ultra {
    gap: 12px;
  }
  .contact-card {
    padding: 6px 16px 6px 12px;
  }
  .contact-card .info-wrap .value-lg {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .top-bar-ultra {
    padding: 10px 16px;
  }
  .location-ultra {
    padding: 7px 14px 7px 10px;
    gap: 10px;
  }
  .location-ultra .icon-glow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .location-ultra .city-text {
    font-size: 13px;
  }
  .location-ultra .divider-line {
    display: none;
  }
  .contact-card {
    padding: 5px 12px 5px 8px;
    gap: 8px;
  }
  .contact-card .icon-ring {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .contact-card .info-wrap .label-sm {
    display: none;
  }
  .contact-card .info-wrap .value-lg {
    font-size: 12px;
  }
  .social-icon-ultra {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .social-ultra .follow-label {
    display: none;
  }
  .divider-vertical {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar-ultra {
    padding: 8px 12px;
  }
  .top-bar-ultra .d-flex {
    flex-wrap: wrap;
    gap: 6px 0;
    justify-content: center !important;
  }
  .location-ultra {
    display: none !important;
  }
  .location-ultra .icon-glow {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .location-ultra .city-text {
    font-size: 11px;
  }
  .contact-ultra {
    gap: 6px;
  }
  .contact-card {
    padding: 4px 8px 4px 6px;
    gap: 5px;
  }
  .contact-card .icon-ring {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
  .contact-card .info-wrap .value-lg {
    font-size: 10px;
  }
  .social-icon-ultra {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .social-ultra {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .top-bar-ultra {
    padding: 5px 8px;
  }
  .location-ultra .city-text {
    font-size: 9px;
  }
  .location-ultra .icon-glow {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }
  .contact-card .info-wrap .value-lg {
    font-size: 8px;
  }
  .contact-card .icon-ring {
    width: 16px;
    height: 16px;
    font-size: 7px;
  }
  .social-icon-ultra {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }
}
/* ===== HEADER ===== */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

/* ===== LOGO ===== */
.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo-img {
  max-height: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: auto;
  object-fit: contain;
}

/* ===== NAVIGATION ===== */
.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a1a1a !important;
  padding: 10px 7px !important;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.nav-link:hover {
  color: #b8860b !important;
  background: rgba(201, 168, 76, 0.08);
}

.nav-link.active {
  color: #b8860b !important;
  background: rgba(201, 168, 76, 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: #c9a84c;
  border-radius: 10px;
}

/* ===== DROPDOWN TOGGLE ===== */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  border: none;
  font-size: 9px;
  transition: transform 0.3s ease;
  color: #c9a84c;
}

/* ============================================
           REGULAR DROPDOWN
           ============================================ */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1001;
  min-width: 220px;
  padding: 10px 0;
  margin: 0;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.98);
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
  pointer-events: none;
  display: block !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ============================================
           MEGA DROPDOWN - SIMPLE FIX
           ============================================ */
.nav-item.mega-dropdown {
  position: relative;
}

.nav-item.mega-dropdown .dropdown-menu.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.98);
  z-index: 1001;
  width: 1100px;
  max-width: 90vw;
  padding: 30px;
  margin: 0;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  max-height: 500px;
  overflow-y: auto;

  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
  pointer-events: none;
  display: block !important;
}

.nav-item.mega-dropdown:hover .dropdown-menu.mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

/* ===== MEGA SCROLLBAR ===== */
.dropdown-menu.mega-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu.mega-menu::-webkit-scrollbar-track {
  background: #f8f6f0;
  border-radius: 10px;
}
.dropdown-menu.mega-menu::-webkit-scrollbar-thumb {
  background: #c9a84c;
  border-radius: 10px;
}

/* ===== MEGA SHAPES ===== */
.mega-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.mega-shape-1 {
  top: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: repeating-linear-gradient(
    45deg,
    #c9a84c,
    #c9a84c 3px,
    transparent 3px,
    transparent 15px
  );
  border-radius: 20px;
  transform: rotate(15deg);
}

.mega-shape-2 {
  bottom: 30px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #c9a84c, transparent);
  border-radius: 50%;
  filter: blur(20px);
}

/* ===== MEGA ROWS ===== */
.mega-menu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.mega-col-intro {
  flex: 1;
  min-width: 200px;
  padding-right: 25px;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
}

.mega-col-intro .mega-logo img {
  max-height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.mega-col-intro .mega-intro h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.mega-col-intro .mega-intro p {
  font-size: 13px;
  color: #8b8b8b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mega-col-intro .mega-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mega-col-intro .mega-book-btn i {
  color: #c9a84c;
}

.mega-col-intro .mega-book-btn:hover {
  background: linear-gradient(135deg, #b8860b, #c9a84c);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 168, 76, 0.3);
}

.mega-col-intro .mega-book-btn:hover i {
  color: #ffffff;
}

.mega-col {
  flex: 1;
  min-width: 150px;
}

.mega-col-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid #c9a84c;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-links li {
  margin-bottom: 10px;
}

.mega-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.mega-links a i {
  font-size: 11px;
  color: #c9a84c;
}

.mega-links a:hover {
  color: #b8860b;
  transform: translateX(5px);
}

/* ===== MEGA CARDS ===== */
.mega-cards-row {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.mega-category-card {
  flex: 1;
  background: #f8f6f0;
  border-radius: 14px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: 160px;
}

.mega-category-card:hover {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mega-category-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mega-category-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mega-category-card:hover .mega-category-icon {
  background: #1a1a1a;
}

.mega-category-icon i {
  font-size: 18px;
  color: #c9a84c;
  transition: all 0.3s ease;
}

.mega-category-card:hover .mega-category-icon i {
  color: #ffffff;
}

.mega-category-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.mega-category-info p {
  font-size: 11px;
  color: #8b8b8b;
  margin: 0;
}

/* ===== DROPDOWN ITEMS ===== */
.dropdown-item {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 20px;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.dropdown-item i {
  width: 22px;
  color: #b8860b;
  font-size: 13px;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.08);
  color: #b8860b;
  transform: translateX(5px);
}

.dropdown-item:hover i {
  color: #b8860b;
}

.dropdown-divider {
  margin: 6px 0;
  border-color: rgba(201, 168, 76, 0.1);
}

/* ===== CONTACT BUTTON ===== */
.header-action {
  flex-shrink: 0;
}

.contact-btn {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
  font-size: 13px;
  color: #c9a84c;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #b8860b, #c9a84c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.contact-btn:hover i {
  color: #ffffff;
  transform: translateX(4px);
}

/* ===== MOBILE TOGGLE ===== */
.navbar-toggler {
  border: 1px solid #c9a84c;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
  .header-nav {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .header-container {
    height: 65px;
    padding: 0 15px;
  }
  .header-nav {
    display: none !important;
  }
  .navbar-toggler {
    display: block !important;
  }
  .header-logo {
    width: 100%;
    justify-content: space-between;
  }
  .header-action {
    display: none !important;
  }
  .logo-img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 58px;
    padding: 0 10px;
  }
  .logo-img {
    max-height: 90px;
  }
  .navbar-toggler {
    padding: 4px 8px;
  }
  .navbar-toggler-icon {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
           MOBILE SIDEBAR
           ============================================ */
.offcanvas {
  width: 300px !important;
  background-color: #ffffff;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.offcanvas-body {
  padding: 15px;
}

.nav-links-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links-mobile li {
  margin-bottom: 4px;
}

.nav-links-mobile .nav-link {
  padding: 12px 15px !important;
  border-radius: 8px;
  color: #1a1a1a !important;
  font-weight: 600;
  font-size: 14px;
  display: block;
  text-decoration: none;
}

.nav-links-mobile .nav-link:hover {
  background: rgba(201, 168, 76, 0.08);
  color: #b8860b !important;
}

.dropdown-mobile .dropdown-menu-mobile,
.dropdown-mobile .mobile-mega-menu {
  display: none;
  background: #f8f6f0;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 4px;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.dropdown-mobile.open .dropdown-menu-mobile,
.dropdown-mobile.open .mobile-mega-menu {
  display: block;
}

.dropdown-menu-mobile {
  list-style: none;
  padding: 5px 0;
  margin: 0;
}

.dropdown-menu-mobile .dropdown-item {
  padding: 8px 15px;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
}

.dropdown-menu-mobile .dropdown-item:hover {
  background: rgba(201, 168, 76, 0.08);
  color: #b8860b;
}

.mega-col-mobile {
  margin-bottom: 15px;
}

.mega-col-mobile h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid #c9a84c;
  font-family: "Cormorant Garamond", serif;
}

.mega-col-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col-mobile ul li {
  margin-bottom: 6px;
}

.mega-col-mobile ul li a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.mega-col-mobile ul li a:hover {
  color: #b8860b;
  padding-left: 5px;
}

.contact-btn-mobile {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 40px;
  text-align: center;
  display: block;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-btn-mobile:hover {
  background: linear-gradient(135deg, #b8860b, #c9a84c);
  color: #ffffff;
}

.contact-btn-mobile i {
  color: #c9a84c;
  transition: all 0.3s ease;
}

.contact-btn-mobile:hover i {
  color: #ffffff;
  transform: translateX(4px);
}

/* ============================================
           HERO SECTION - FIXED HEIGHT 600px
        ============================================ */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ===== BACKGROUND SLIDER ===== */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease-in-out;
  transform: scale(1.05);
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomInOut 8s ease-in-out infinite alternate;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* ===== OVERLAY ===== */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

/* ===== SLIDER CONTAINER ===== */
.hero-slider-container {
  position: relative;
  flex: 1;
  overflow: hidden;
  height: 100%;
  z-index: 2;
}

/* ===== SLIDER WRAPPER ===== */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===== SLIDE ===== */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transform: scale(0.95);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

/* ===== SLIDE INNER ===== */
.hero-slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 60px 20px;
  gap: 50px;
  height: 100%;
}

/* ============================================
           LEFT: CONTENT
        ============================================ */
.hero-content {
  flex: 1;
  max-width: 580px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateX(0);
}

.hero-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  width: fit-content;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease 0.1s;
}

.hero-slide.active .hero-tagline {
  opacity: 1;
  transform: translateX(0);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease 0.2s;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateX(0);
}

.hero-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b, #c9a84c);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 460px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease 0.3s;
}

.hero-slide.active .hero-desc {
  opacity: 1;
  transform: translateX(0);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease 0.4s;
}

.hero-slide.active .hero-buttons {
  opacity: 1;
  transform: translateX(0);
}

.hero-btn-primary {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.hero-btn-primary i {
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.hero-btn-primary:hover i {
  transform: translateX(5px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary i {
  color: #c9a84c;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: #c9a84c;
}

.hero-btn-secondary:hover i {
  color: #f5e56b;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease 0.5s;
}

.hero-slide.active .hero-stats {
  opacity: 1;
  transform: translateX(0);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
           RIGHT: PNG IMAGE
        ============================================ */
.hero-image-wrapper {
  flex: 1;
  max-width: 550px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-image-wrapper {
  opacity: 1;
  transform: translateX(0);
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  top: 30px;
  max-height: 600px;
  object-fit: cover;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

/* ============================================
           BADGES
        ============================================ */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: badgeFloat 3s ease-in-out infinite;
  letter-spacing: 0.3px;
}

.hero-badge i {
  font-size: 12px;
}

.badge-left {
  top: 15%;
  left: -10px;
  animation-delay: 0s;
}
.badge-right {
  top: 15%;
  right: -10px;
  animation-delay: 0.5s;
}
.badge-bottom-left {
  bottom: 25%;
  left: -10px;
  animation-delay: 1s;
}
.badge-bottom-right {
  bottom: 25%;
  right: -10px;
  animation-delay: 1.5s;
}

.gold-badge {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  border-color: rgba(255, 215, 0, 0.3);
}
.blue-badge {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}
.purple-badge {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}
.green-badge {
  background: linear-gradient(135deg, #059669, #10b981);
}
.red-badge {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}
.cyan-badge {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
}
.orange-badge {
  background: linear-gradient(135deg, #ea580c, #f97316);
}
.pink-badge {
  background: linear-gradient(135deg, #db2777, #ec4899);
}
.teal-badge {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============================================
           NAV BUTTONS
        ============================================ */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-nav-btn:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #1a1a1a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.hero-prev {
  left: 15px;
}
.hero-next {
  right: 15px;
}

/* ============================================
           DOTS
        ============================================ */
.hero-dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-dots-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.hero-dot i {
  transition: all 0.3s ease;
}

.hero-dot:hover {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.05);
}

.hero-dot.active {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border-color: #c9a84c;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.hero-dot.active i {
  color: #1a1a1a;
}

/* ============================================
           RESPONSIVE - FIXED AS REQUESTED
        ============================================ */

/* ===== TABLET ===== */
@media (max-width: 1200px) {
  .hero-slide-inner {
    padding: 25px 40px 15px;
    gap: 35px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-image {
    max-height: 420px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
}

@media (max-width: 992px) {
  .hero-slide-inner {
    flex-direction: column;
    padding: 25px 30px 15px;
    gap: 20px;
    height: 100%;
    justify-content: center;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
    height: auto;
    align-items: center;
  }
  .hero-desc {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 100%;
    height: auto;
    align-items: flex-end;
    display: none !important;
  }
  .hero-image-container {
    max-width: 380px;
    height: auto;
  }
  .hero-image {
    max-height: 350px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .hero-prev {
    left: 8px;
  }
  .hero-next {
    right: 8px;
  }
  .badge-left {
    top: 10%;
    left: 5px;
  }
  .badge-right {
    top: 10%;
    right: 5px;
  }
  .badge-bottom-left {
    bottom: 20%;
    left: 5px;
  }
  .badge-bottom-right {
    bottom: 20%;
    right: 5px;
  }
  .hero-bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* ===== MOBILE - HEIGHT AUTO, IMAGE HIDE, BTNS ROW ===== */
@media (max-width: 768px) {
  /* HEIGHT AUTO - Content ke hisaab se */
  .hero-section {
    height: auto !important;
    min-height: 100vh;
  }

  .hero-slider-container {
    height: auto !important;
    min-height: 100vh;
  }

  .hero-slider-wrapper {
    height: auto !important;
    min-height: 100vh;
  }

  .hero-slide {
    position: relative !important;
    height: auto !important;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  .hero-slide.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    min-height: 100vh;
  }

  .hero-slide-inner {
    flex-direction: column !important;
    padding: 30px 20px 100px !important;
    gap: 10px !important;
    height: auto !important;
    min-height: 100vh;
    justify-content: center !important;
  }

  /* IMAGE COMPLETELY HIDE */
  .hero-image-wrapper {
    display: none !important;
  }

  /* CONTENT FULL WIDTH */
  .hero-content {
    max-width: 100% !important;
    text-align: center !important;
    align-items: center !important;
    height: auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero-slide.active .hero-content {
    transform: none !important;
  }

  /* FONT SIZES ADJUSTED */
  .hero-tagline {
    font-size: 10px !important;
    padding: 4px 14px !important;
    margin-bottom: 12px !important;
    transform: none !important;
  }

  .hero-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    transform: none !important;
    text-align: center !important;
  }

  .hero-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
    max-width: 100% !important;
    text-align: center !important;
    transform: none !important;
  }

  /* BUTTONS - EK ROW MEIN */
  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    transform: none !important;
    width: 100% !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: auto !important;
    min-width: 140px !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
    justify-content: center !important;
  }

  /* STATS */
  .hero-stats {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
    padding-top: 15px !important;
    transform: none !important;
  }

  .stat-number {
    font-size: 20px !important;
  }
  .stat-label {
    font-size: 10px !important;
  }
  .stat-divider {
    display: none !important;
  }

  /* OVERLAY BETTER FOR MOBILE */
  .hero-bg-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  /* NAV BUTTONS - SMALLER */
  .hero-nav-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 12px !important;
  }
  .hero-prev {
    left: 6px !important;
  }
  .hero-next {
    right: 6px !important;
  }

  /* DOTS - BETTER POSITION */
  .hero-dots-container {
    bottom: 20px !important;
  }
  .hero-dots-wrapper {
    padding: 6px 12px !important;
    gap: 6px !important;
  }
  .hero-dot {
    width: 32px !important;
    height: 32px !important;
    font-size: 10px !important;
  }

  /* BADGES HIDE ON MOBILE (optional) */
  .hero-badge {
    display: none !important;
  }

  /* REMOVE ALL ANIMATIONS ON MOBILE */
  .hero-slide.active .hero-tagline,
  .hero-slide.active .hero-title,
  .hero-slide.active .hero-desc,
  .hero-slide.active .hero-buttons,
  .hero-slide.active .hero-stats {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-slide-inner {
    padding: 20px 15px 80px !important;
  }

  .hero-title {
    font-size: 26px !important;
  }

  .hero-desc {
    font-size: 13px !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    min-width: 120px !important;
    padding: 8px 16px !important;
    font-size: 11px !important;
  }

  .hero-btn-secondary i {
    font-size: 14px !important;
  }

  .stat-number {
    font-size: 18px !important;
  }
  .stat-label {
    font-size: 9px !important;
  }

  .hero-nav-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 10px !important;
  }

  .hero-dot {
    width: 28px !important;
    height: 28px !important;
    font-size: 9px !important;
  }
  .hero-dots-wrapper {
    padding: 4px 10px !important;
    gap: 4px !important;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 22px !important;
  }
  .hero-desc {
    font-size: 12px !important;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    min-width: 100px !important;
    padding: 6px 14px !important;
    font-size: 10px !important;
  }
}

/*===============================ABOUT SECTION STYLING================================*/
.about-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* ============================================
           RIGHT SIDE PREMIUM GOLD GRADIENT
        ============================================ */
.about-right-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.03) 0%,
    rgba(201, 168, 76, 0.08) 40%,
    rgba(245, 229, 107, 0.04) 100%
  );
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* ============================================
           ANIMATED GOLDEN SHAPES - VISIBLE NOW
        ============================================ */
.about-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ===== SHAPE 1: BUILDING ===== */
.shape-building {
  position: absolute;
  bottom: 8%;
  left: 3%;
  opacity: 0.15;
  animation: floatShape 7s ease-in-out infinite alternate;
  width: 200px;
  height: 200px;
}

/* ===== SHAPE 2: KEY ===== */
.shape-key {
  position: absolute;
  top: 12%;
  right: 22%;
  opacity: 0.12;
  animation: floatShape 9s ease-in-out infinite alternate-reverse;
  width: 140px;
  height: 140px;
}

/* ===== SHAPE 3: DIAMOND ===== */
.shape-diamond {
  position: absolute;
  top: 35%;
  left: 30%;
  opacity: 0.1;
  animation: floatShape 8s ease-in-out infinite alternate;
  width: 120px;
  height: 120px;
}

/* ===== SHAPE 4: RINGS ===== */
.shape-rings {
  position: absolute;
  bottom: 15%;
  right: 8%;
  opacity: 0.12;
  animation: floatShape 10s ease-in-out infinite alternate-reverse;
  width: 160px;
  height: 160px;
}

/* ===== SHAPE 5: STAR ===== */
.shape-star {
  position: absolute;
  top: 5%;
  left: 18%;
  opacity: 0.1;
  animation: floatShape 6s ease-in-out infinite alternate;
  width: 90px;
  height: 90px;
}

/* ===== SHAPE 6: ROOF ===== */
.shape-roof {
  position: absolute;
  bottom: 28%;
  right: 28%;
  opacity: 0.1;
  animation: floatShape 11s ease-in-out infinite alternate-reverse;
  width: 140px;
  height: 140px;
}

/* ===== SHAPE 7: EXTRA DECORATIVE ===== */
.shape-deco {
  position: absolute;
  top: 50%;
  left: 8%;
  opacity: 0.08;
  animation: floatShape 12s ease-in-out infinite alternate;
  width: 100px;
  height: 100px;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(15px, -20px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-3deg) scale(0.95);
  }
  75% {
    transform: translate(20px, 15px) rotate(4deg) scale(1.03);
  }
  100% {
    transform: translate(-5px, -15px) rotate(-2deg) scale(0.98);
  }
}

/* ============================================
           CONTAINER
        ============================================ */
.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.about-row {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* ============================================
           LEFT COLUMN - IMAGES GRID
        ============================================ */
.about-left {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
}

/* ===== MAIN IMAGE (Vertical) ===== */
.about-main-img {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  border-radius: 110px 110px 0 0;
  overflow: hidden;
  border: 4px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  min-height: 480px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main-img:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 80px rgba(201, 168, 76, 0.12);
  border-color: #c9a84c;
}

.about-main-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================
           TEXT BOX - SEPARATE FROM IMAGE (BADGE TYPE)
        ============================================ */
.about-text-box {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  margin-top: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.about-text-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  z-index: -1;
  opacity: 0.5;
}

.about-text-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 50px rgba(201, 168, 76, 0.35);
}

.about-text-box .icon-wrap {
  display: inline-block;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-text-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text-box h3 span {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.about-text-box .sub-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.about-text-box .sub-tag i {
  margin: 0 4px;
  color: #ffffff;
  opacity: 0.6;
}

/* ===== CIRCLE IMAGE (Top Right) ===== */
.about-circle-img {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px dashed #c9a84c;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.12);
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulseBorder 3s ease-in-out infinite;
}

.about-circle-img::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
}

@keyframes pulseBorder {
  0%,
  100% {
    border-color: #c9a84c;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.12);
  }
  50% {
    border-color: #f5e56b;
    box-shadow: 0 10px 60px rgba(201, 168, 76, 0.25);
  }
}

.about-circle-img:hover {
  transform: scale(1.03) rotate(3deg);
  border-color: #f5e56b;
}

.about-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== EXPERIENCE BADGE ===== */
.about-experience-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.3);
  z-index: 5;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  animation: badgeFloat 3s ease-in-out infinite;
}

.about-experience-badge .number {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.about-experience-badge:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 12px 45px rgba(201, 168, 76, 0.4);
}

/* ===== 3RD IMAGE (Bottom Right) ===== */
.about-third-img {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  border-radius: 30px 30px 30px 30px;
  overflow: hidden;
  border: 3px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-third-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(201, 168, 76, 0.05)
  );
  pointer-events: none;
}

.about-third-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(201, 168, 76, 0.12);
  border-color: #c9a84c;
}

.about-third-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 150px;
}

/* ============================================
           RIGHT COLUMN - CONTENT
        ============================================ */
.about-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 20px;
  position: relative;
  z-index: 1;
}

/* ===== TAGLINE ===== */
.about-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 18px;
  width: fit-content;
  transition: all 0.3s ease;
}

.about-tagline:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateX(5px);
}

.about-tagline i {
  margin-right: 8px;
}

/* ===== HEADING ===== */
.about-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PARA ===== */
.about-para {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

/* ===== KEY POINTS GRID ===== */
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin-bottom: 32px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.4s ease;
  padding: 10px 14px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
}

.about-point:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.08);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.05);
}

.about-point .point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(245, 229, 107, 0.12)
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #c9a84c;
  transition: all 0.4s ease;
}

.about-point:hover .point-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.3);
}

.about-point .point-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.about-point .point-text small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 1px;
}

/* ===== BUTTONS ===== */
.about-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.about-btn-primary {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.about-btn-primary i {
  transition: all 0.3s ease;
}

.about-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 45px rgba(201, 168, 76, 0.4);
}

.about-btn-primary:hover i {
  transform: translateX(6px);
}

.about-btn-secondary {
  background: transparent;
  color: #1a1a1a;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #c9a84c;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about-btn-secondary i {
  color: #c9a84c;
  transition: all 0.3s ease;
}

.about-btn-secondary:hover {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.2);
  border-color: #f5e56b;
}

.about-btn-secondary:hover i {
  color: #1a1a1a;
  transform: translateX(6px);
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .about-container {
    padding: 0 30px;
  }
  .about-row {
    gap: 40px;
  }
  .about-heading {
    font-size: 38px;
  }
  .about-main-img {
    min-height: 400px;
  }
  .shape-building {
    width: 150px;
    height: 150px;
  }
  .shape-key {
    width: 100px;
    height: 100px;
  }
  .shape-rings {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 70px 0 50px;
  }
  .about-row {
    flex-direction: column;
    gap: 40px;
  }
  .about-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .about-main-img {
    min-height: 350px;
  }
  .about-heading {
    font-size: 34px;
  }
  .about-points {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
  .about-para {
    max-width: 100%;
  }
  .about-right-bg {
    width: 100%;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.3;
  }
  .shape-building,
  .shape-key,
  .shape-diamond,
  .shape-rings,
  .shape-star,
  .shape-roof,
  .shape-deco {
    opacity: 0.08;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0 40px;
  }
  .about-container {
    padding: 0 20px;
  }
  .about-grid {
    gap: 15px;
  }
  .about-main-img {
    min-height: 280px;
    border-radius: 80px 80px 0 0;
    border-width: 3px;
  }
  .about-text-box {
    padding: 16px 20px;
    border-radius: 14px;
  }
  .about-text-box h3 {
    font-size: 18px;
  }
  .about-text-box .sub-tag {
    font-size: 9px;
    letter-spacing: 3px;
  }
  .about-text-box .icon-wrap {
    font-size: 18px;
  }
  .about-circle-img {
    border-width: 2px;
  }
  .about-third-img {
    border-radius: 20px;
  }
  .about-experience-badge {
    padding: 10px 16px;
    top: -8px;
    right: -8px;
    border-radius: 16px;
  }
  .about-experience-badge .number {
    font-size: 24px;
  }
  .about-experience-badge .label {
    font-size: 8px;
  }
  .about-heading {
    font-size: 30px;
  }
  .about-para {
    font-size: 14px;
  }
  .about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .about-point {
    padding: 8px 12px;
  }
  .about-point .point-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }
  .about-point .point-text {
    font-size: 13px;
  }
  .about-point .point-text small {
    font-size: 7px;
  }
  .about-buttons {
    flex-direction: row;
    gap: 12px;
  }
  .about-btn-primary,
  .about-btn-secondary {
    padding: 12px 24px;
    font-size: 12px;
  }
  .shape-building,
  .shape-key,
  .shape-diamond,
  .shape-rings,
  .shape-star,
  .shape-roof,
  .shape-deco {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0 30px;
  }
  .about-container {
    padding: 0 15px;
  }
  .about-grid {
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .about-main-img {
    min-height: 220px;
    border-radius: 60px 60px 0 0;
    border-width: 3px;
  }
  .about-text-box {
    padding: 12px 16px;
    border-radius: 12px;
  }
  .about-text-box h3 {
    font-size: 15px;
  }
  .about-text-box .sub-tag {
    font-size: 8px;
    letter-spacing: 2px;
  }
  .about-text-box .icon-wrap {
    font-size: 15px;
  }
  .about-circle-img {
    border-width: 2px;
  }
  .about-third-img {
    border-radius: 15px;
    border-width: 2px;
  }
  .about-third-img img {
    min-height: 100px;
  }
  .about-experience-badge {
    padding: 6px 12px;
    top: -6px;
    right: -6px;
    border-radius: 14px;
  }
  .about-experience-badge .number {
    font-size: 20px;
  }
  .about-experience-badge .label {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .about-heading {
    font-size: 26px;
  }
  .about-para {
    font-size: 13px;
    line-height: 1.7;
  }
  .about-tagline {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .about-points {
    gap: 8px;
  }
  .about-point {
    padding: 6px 10px;
    gap: 12px;
  }
  .about-point .point-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
  }
  .about-point .point-text {
    font-size: 12px;
  }
  .about-point .point-text small {
    font-size: 7px;
  }
  .about-buttons {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }
  .about-btn-primary,
  .about-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 12px;
  }
  .about-right-bg {
    opacity: 0.15;
  }
}

@media (max-width: 375px) {
  .about-main-img {
    min-height: 180px;
    border-radius: 40px 40px 0 0;
  }
  .about-text-box h3 {
    font-size: 10px;
  }
  .about-heading {
    font-size: 22px;
  }
  .about-para {
    font-size: 12px;
  }
  .about-point .point-text {
    font-size: 10px;
  }
  .about-point .point-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 10px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .shape-building,
  .shape-key,
  .shape-diamond,
  .shape-rings,
  .shape-star,
  .shape-roof,
  .shape-deco,
  .about-circle-img,
  .about-experience-badge {
    animation: none !important;
  }
  .about-main-img:hover,
  .about-circle-img:hover,
  .about-third-img:hover,
  .about-text-box:hover,
  .about-point:hover,
  .about-btn-primary:hover,
  .about-btn-secondary:hover {
    transform: none !important;
  }
}

/*================================WHAT WE DO SECTION STYLING=================================*/
.what-we-do {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 40%, #ede7db 100%);
}

/* ===== BACKGROUND SHAPES ===== */
.wwd-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wwd-shapes svg {
  position: absolute;
  opacity: 0.06;
  animation: floatShape 8s ease-in-out infinite alternate;
}

.wwd-shapes svg:nth-child(1) {
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
}
.wwd-shapes svg:nth-child(2) {
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  animation-delay: 2s;
}
.wwd-shapes svg:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  animation-delay: 4s;
  opacity: 0.04;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(20px, -20px) rotate(5deg) scale(1.05);
  }
}

/* ===== CONTAINER ===== */
.wwd-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ===== SECTION HEADER ===== */
.wwd-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
}

.wwd-tagline i {
  margin-right: 8px;
}

.wwd-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
}

.wwd-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwd-subtitle {
  font-size: 16px;
  color: #6a6a6a;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ============================================
           CARDS GRID
        ============================================ */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== LUXURY CARD ===== */
.wwd-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px 35px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 168, 76, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* ===== CARD GLOW BORDER ===== */
.wwd-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(201, 168, 76, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.wwd-card:hover::before {
  opacity: 1;
}

/* ===== CARD SHINE EFFECT ===== */
.wwd-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(201, 168, 76, 0.03),
    transparent 60%
  );
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.wwd-card:hover::after {
  opacity: 1;
}

.wwd-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 25px 60px rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.15);
}

/* ===== DIAMOND ICON ===== */
.wwd-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}

.wwd-icon-diamond {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.06),
    rgba(245, 229, 107, 0.06)
  );
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0 auto;
}

.wwd-icon-diamond i {
  font-size: 30px;
  color: #c9a84c;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-card:hover .wwd-icon-diamond {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.25);
}

.wwd-card:hover .wwd-icon-diamond i {
  color: #1a1a1a;
  transform: rotate(-45deg) scale(1.1);
}

/* ===== DIAMOND GLOW RING ===== */
.wwd-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 168, 76, 0.15);
  animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wwd-icon-wrapper::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.05);
}

/* ===== CARD NUMBER ===== */
.wwd-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  transition: all 0.4s ease;
  pointer-events: none;
}

.wwd-card:hover .wwd-number {
  color: rgba(201, 168, 76, 0.12);
  transform: scale(1.05);
}

/* ===== CARD TITLE ===== */
.wwd-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.wwd-card:hover .wwd-card-title {
  color: #c9a84c;
}

/* ===== CARD DESC ===== */
.wwd-card-desc {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ===== CARD LINK ===== */
.wwd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #c9a84c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.wwd-card-link i {
  transition: all 0.3s ease;
  font-size: 11px;
}

.wwd-card-link:hover {
  color: #1a1a1a;
  border-bottom-color: #c9a84c;
}

.wwd-card-link:hover i {
  transform: translateX(6px);
}

/* ===== CARD BORDER GOLD ACCENT ===== */
.wwd-card .gold-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scaleX(0);
}

.wwd-card:hover .gold-accent {
  opacity: 1;
  transform: scaleX(1);
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .wwd-container {
    padding: 0 30px;
  }
  .wwd-grid {
    gap: 25px;
  }
  .wwd-card {
    padding: 35px 25px 30px;
  }
  .wwd-title {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .what-we-do {
    padding: 80px 0 60px;
  }
  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .wwd-title {
    font-size: 34px;
  }
  .wwd-icon-diamond {
    width: 75px;
    height: 75px;
  }
  .wwd-icon-diamond i {
    font-size: 26px;
  }
  .wwd-card-title {
    font-size: 20px;
  }
  .wwd-shapes svg:nth-child(1) {
    width: 250px;
    height: 250px;
  }
  .wwd-shapes svg:nth-child(2) {
    width: 200px;
    height: 200px;
  }
  .wwd-shapes svg:nth-child(3) {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .what-we-do {
    padding: 60px 0 40px;
  }
  .wwd-container {
    padding: 0 20px;
  }
  .wwd-header {
    margin-bottom: 40px;
  }
  .wwd-title {
    font-size: 30px;
  }
  .wwd-subtitle {
    font-size: 14px;
  }
  .wwd-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .wwd-card {
    padding: 28px 18px 24px;
    border-radius: 18px;
  }
  .wwd-icon-diamond {
    width: 65px;
    height: 65px;
  }
  .wwd-icon-diamond i {
    font-size: 22px;
  }
  .wwd-card-title {
    font-size: 18px;
  }
  .wwd-card-desc {
    font-size: 13px;
  }
  .wwd-number {
    font-size: 36px;
    top: 10px;
    right: 14px;
  }
  .wwd-icon-wrapper::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
  .wwd-shapes svg {
    display: none;
  }
}

@media (max-width: 576px) {
  .what-we-do {
    padding: 50px 0 30px;
  }
  .wwd-container {
    padding: 0 15px;
  }
  .wwd-title {
    font-size: 20px;
  }
  .wwd-subtitle {
    font-size: 10px;
  }
  .wwd-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .wwd-card {
    padding: 22px 14px 18px;
    border-radius: 16px;
  }
  .wwd-icon-diamond {
    width: 55px;
    height: 55px;
  }
  .wwd-icon-diamond i {
    font-size: 18px;
  }
  .wwd-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .wwd-card-desc {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .wwd-number {
    font-size: 28px;
    top: 8px;
    right: 10px;
  }
  .wwd-card-link {
    font-size: 10px;
  }
  .wwd-tagline {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .wwd-icon-wrapper::before {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-width: 1px;
  }
}

@media (max-width: 400px) {
  .wwd-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .wwd-card {
    padding: 18px 10px 14px;
    border-radius: 14px;
  }
  .wwd-icon-diamond {
    width: 48px;
    height: 48px;
  }
  .wwd-icon-diamond i {
    font-size: 16px;
  }
  .wwd-card-title {
    font-size: 14px;
  }
  .wwd-card-desc {
    font-size: 11px;
  }
  .wwd-number {
    font-size: 22px;
    top: 5px;
    right: 8px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .wwd-shapes svg,
  .wwd-icon-wrapper::before,
  .wwd-card::before,
  .wwd-card::after {
    animation: none !important;
  }
  .wwd-card:hover {
    transform: none !important;
  }
  .wwd-card:hover .wwd-icon-diamond {
    transform: none !important;
  }
  .wwd-card:hover .wwd-icon-diamond i {
    transform: none !important;
  }
}

/*=================================OUR SERVICES SECTION STYLING=================================*/
.what-we-do-section {
  padding: 80px 0;
  background: linear-gradient(165deg, #faf8f4 0%, #f5f0e8 40%, #ede7db 100%);
  position: relative;
  overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.wwd-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
  display: inline-block;
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 15px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.wwd-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.wwd-section-title .wwd-gold {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwd-section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a84c,
    #f5e56b,
    #c9a84c,
    transparent
  );
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== CARDS CONTAINER ===== */
.wwd-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== ROW GRID ===== */
.wwd-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.wwd-col {
  padding-right: 15px;
  padding-left: 15px;
}

/* ===== PREMIUM SERVICE CARD ===== */
.wwd-service-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
  height: 100%;
  position: relative;
}

.wwd-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.03),
    transparent 60%
  );
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.wwd-service-card:hover::before {
  opacity: 1;
}

.wwd-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
}

/* ===== IMAGE CONTAINER ===== */
.wwd-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.wwd-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.wwd-service-card:hover .wwd-card-image img {
  transform: scale(1.08);
}

/* ===== GOLD OVERLAY ===== */
.wwd-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.2) 0%,
    rgba(201, 168, 76, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwd-service-card:hover .wwd-card-image::after {
  opacity: 1;
}

/* ===== GOLD BORDER BADGE ===== */
.wwd-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== CIRCLE ICON ===== */
.wwd-icon-circle {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 0;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(201, 168, 76, 0.25);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.wwd-service-card:hover .wwd-icon-circle {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border-color: #c9a84c;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

.wwd-icon-circle i {
  font-size: 30px;
  color: #c9a84c;
  transition: all 0.4s ease;
}

.wwd-service-card:hover .wwd-icon-circle i {
  color: #1a1a1a;
  transform: scale(1.1) rotate(-5deg);
}

/* ===== CARD BODY ===== */
.wwd-card-body {
  padding: 25px 25px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wwd-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.wwd-service-card:hover .wwd-card-title {
  color: #c9a84c;
}

.wwd-card-description {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===== VIEW ALL BUTTON ===== */
.wwd-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #c9a84c;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid rgba(201, 168, 76, 0.25);
  transition: all 0.3s ease;
}

.wwd-view-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.wwd-view-btn:hover {
  color: #1a1a1a;
  border-bottom-color: #c9a84c;
  gap: 12px;
}

.wwd-view-btn:hover i {
  transform: translateX(5px);
}

/* ===== GOLD ACCENT LINE ===== */
.wwd-gold-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a84c,
    #f5e56b,
    #c9a84c,
    transparent
  );
  opacity: 0;
  transition: all 0.5s ease;
  transform: scaleX(0);
}

.wwd-service-card:hover .wwd-gold-accent {
  opacity: 1;
  transform: scaleX(1);
}

/* ============================================
           BOTTOM VIEW ALL BUTTON - PREMIUM
        ============================================ */
.wwd-bottom-btn-wrapper {
  text-align: center;
  margin-top: 55px;
}

.wwd-view-all-bottom {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.wwd-view-all-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.wwd-view-all-bottom:hover::before {
  left: 100%;
}

.wwd-view-all-bottom i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.wwd-view-all-bottom:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
  color: #1a1a1a;
}

.wwd-view-all-bottom:hover i {
  transform: translateX(6px);
}

/* ===== GOLD GLOW RING ===== */
.wwd-view-all-bottom::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 53px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b, #c9a84c);
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
  transition: all 0.4s ease;
}

.wwd-view-all-bottom:hover::after {
  opacity: 0.8;
  filter: blur(15px);
}

/* ============================================
           RESPONSIVE
        ============================================ */

/* Desktop: 4 columns */
@media (min-width: 992px) {
  .wwd-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* Tablet: 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
  .wwd-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .wwd-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 1200px) {
  .wwd-cards-container {
    padding: 0 30px;
  }
  .wwd-section-title {
    font-size: 42px;
  }
  .wwd-card-image {
    height: 200px;
  }
  .wwd-icon-circle {
    width: 65px;
    height: 65px;
  }
  .wwd-icon-circle i {
    font-size: 28px;
  }
}

@media screen and (max-width: 991px) {
  .what-we-do-section {
    padding: 70px 0;
  }
  .wwd-cards-container {
    padding: 0 20px;
  }
  .wwd-section-title {
    font-size: 38px;
  }
  .wwd-section-subtitle {
    font-size: 12px;
  }
  .wwd-section-header {
    margin-bottom: 45px;
  }
  .wwd-card-image {
    height: 180px;
  }
  .wwd-icon-circle {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }
  .wwd-icon-circle i {
    font-size: 26px;
  }
  .wwd-card-body {
    padding: 20px 18px 25px;
  }
  .wwd-card-title {
    font-size: 20px;
  }
  .wwd-card-description {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .what-we-do-section {
    padding: 50px 0;
  }
  .wwd-cards-container {
    padding: 0 15px;
  }
  .wwd-section-header {
    margin-bottom: 35px;
  }
  .wwd-section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .wwd-section-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
  }
  .wwd-section-divider {
    width: 60px;
  }
  .wwd-service-card {
    border-radius: 20px;
  }
  .wwd-card-image {
    height: 150px;
  }
  .wwd-card-badge {
    font-size: 8px;
    padding: 3px 12px;
    top: 10px;
    right: 10px;
  }
  .wwd-icon-circle {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .wwd-icon-circle i {
    font-size: 22px;
  }
  .wwd-card-body {
    padding: 15px 12px 18px;
  }
  .wwd-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .wwd-card-description {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .wwd-view-btn {
    font-size: 10px;
  }
  .wwd-view-btn i {
    font-size: 9px;
  }
  .wwd-bottom-btn-wrapper {
    margin-top: 35px;
  }
  .wwd-view-all-bottom {
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media screen and (max-width: 480px) {
  .wwd-cards-container {
    padding: 0 12px;
  }
  .wwd-section-title {
    font-size: 24px;
  }
  .wwd-section-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .wwd-service-card {
    border-radius: 18px;
  }
  .wwd-card-image {
    height: 130px;
  }
  .wwd-card-badge {
    font-size: 7px;
    padding: 2px 10px;
  }
  .wwd-icon-circle {
    width: 45px;
    height: 45px;
    margin-top: -22px;
  }
  .wwd-icon-circle i {
    font-size: 20px;
  }
  .wwd-card-body {
    padding: 12px 10px 15px;
  }
  .wwd-card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .wwd-card-description {
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .wwd-view-btn {
    font-size: 9px;
  }
  .wwd-view-btn i {
    font-size: 8px;
  }
  .wwd-bottom-btn-wrapper {
    margin-top: 30px;
  }
  .wwd-view-all-bottom {
    padding: 10px 22px;
    font-size: 10px;
    letter-spacing: 1px;
    gap: 10px;
  }
  .wwd-view-all-bottom i {
    font-size: 11px;
  }
}

@media screen and (max-width: 360px) {
  .wwd-card-image {
    height: 120px;
  }
  .wwd-icon-circle {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .wwd-icon-circle i {
    font-size: 18px;
  }
  .wwd-card-body {
    padding: 10px 8px 12px;
  }
  .wwd-card-title {
    font-size: 12px;
  }
  .wwd-card-description {
    font-size: 9px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .wwd-service-card,
  .wwd-service-card:hover,
  .wwd-card-image img,
  .wwd-view-all-bottom {
    transition: none !important;
    transform: none !important;
  }
  .wwd-view-all-bottom::before,
  .wwd-view-all-bottom::after {
    animation: none !important;
    display: none !important;
  }
}
/*=================================HOW IT WORKS STYLING=============================*/
.process-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ee 50%, #f0ebe0 100%);
  position: relative;
  overflow: hidden;
}

/* ===== DIFFERENT BG SHAPES FOR THIS SECTION ===== */
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.02) 0%,
    rgba(201, 168, 76, 0.07) 40%,
    rgba(245, 229, 107, 0.03) 100%
  );
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* ===== FLOATING GOLD SHAPES ===== */
.process-section::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 2%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: floatBg 8s ease-in-out infinite alternate;
}

.process-shape {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  z-index: 0;
  animation: floatBg 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatBg {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION HEADER
============================================ */
.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  display: inline-block;
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  margin-bottom: 15px;
}

.process-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.15;
}

.process-title .gold {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a84c,
    #f5e56b,
    #c9a84c,
    transparent
  );
  margin: 0 auto;
  border-radius: 2px;
}

/* ============================================
   STEPS CONTAINER
============================================ */
.steps-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== SVG ZIGZAG LINE ===== */
.zigzag-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   STEPS ROW
============================================ */
.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ============================================
   STEP CARD
============================================ */
.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ============================================
   STEP CONTENT
============================================ */
.step-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* ===== GOLD ACCENT LINE - TOP ===== */
.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f5e56b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover .step-content {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.15);
}

.step-card:hover .step-content::before {
  transform: scaleX(1);
}

/* ============================================
   STEP ICON - GOLD
============================================ */
.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.step-icon i {
  font-size: 32px;
  color: #c9a84c;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon i {
  color: #1a1a1a;
  transform: scale(1.05);
}

/* ============================================
   STEP TITLE - GOLD ON HOVER
============================================ */
.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #c9a84c;
}

/* ============================================
   STEP DESCRIPTION
============================================ */
.step-desc {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   COUNT NUMBER - SEQUENTIAL BLINKING
============================================ */

/* ===== COUNT TOP ===== */
.step-count-top {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.25);
  position: relative;
  z-index: 3;
}

/* ===== COUNT BOTTOM ===== */
.step-count-bottom {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.25);
  position: relative;
  z-index: 3;
}

.step-count-top span,
.step-count-bottom span {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
}

/* ===== SEQUENTIAL BLINKING ANIMATION ===== */

/* Base blink animation - outer glow */
@keyframes countBlink {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.25);
  }
  25% {
    transform: scale(1.15);
    box-shadow:
      0 0 30px rgba(201, 168, 76, 0.4),
      0 0 60px rgba(201, 168, 76, 0.2);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.25);
  }
  75% {
    transform: scale(1.08);
    box-shadow:
      0 0 25px rgba(201, 168, 76, 0.35),
      0 0 50px rgba(201, 168, 76, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.25);
  }
}

/* Outer glow ring animation */
@keyframes outerGlow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  25% {
    opacity: 1;
    transform: scale(1.3);
  }
  50% {
    opacity: 0;
    transform: scale(1);
  }
  75% {
    opacity: 0.6;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* ===== STEP 1 - BLINK ===== */
.step-card[data-step="1"] .step-count-top,
.step-card[data-step="1"] .step-count-bottom {
  animation: countBlink 2.5s ease-in-out infinite;
}

.step-card[data-step="1"] .step-count-top::before,
.step-card[data-step="1"] .step-count-bottom::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: outerGlow 2.5s ease-in-out infinite;
}

/* ===== STEP 2 - BLINK (Delayed) ===== */
.step-card[data-step="2"] .step-count-top,
.step-card[data-step="2"] .step-count-bottom {
  animation: countBlink 2.5s ease-in-out 0.5s infinite;
}

.step-card[data-step="2"] .step-count-top::before,
.step-card[data-step="2"] .step-count-bottom::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: outerGlow 2.5s ease-in-out 0.5s infinite;
}

/* ===== STEP 3 - BLINK (Delayed) ===== */
.step-card[data-step="3"] .step-count-top,
.step-card[data-step="3"] .step-count-bottom {
  animation: countBlink 2.5s ease-in-out 1s infinite;
}

.step-card[data-step="3"] .step-count-top::before,
.step-card[data-step="3"] .step-count-bottom::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: outerGlow 2.5s ease-in-out 1s infinite;
}

/* ===== STEP 4 - BLINK (Delayed) ===== */
.step-card[data-step="4"] .step-count-top,
.step-card[data-step="4"] .step-count-bottom {
  animation: countBlink 2.5s ease-in-out 1.5s infinite;
}

.step-card[data-step="4"] .step-count-top::before,
.step-card[data-step="4"] .step-count-bottom::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: outerGlow 2.5s ease-in-out 1.5s infinite;
}

/* ===== STEP 5 - BLINK (Delayed) ===== */
.step-card[data-step="5"] .step-count-top,
.step-card[data-step="5"] .step-count-bottom {
  animation: countBlink 2.5s ease-in-out 2s infinite;
}

.step-card[data-step="5"] .step-count-top::before,
.step-card[data-step="5"] .step-count-bottom::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: outerGlow 2.5s ease-in-out 2s infinite;
}

/* ============================================
   ALTERNATE LAYOUT - Count Top for Odd, Bottom for Even
============================================ */
.step-card:nth-child(odd) .step-count-bottom {
  display: none;
}

.step-card:nth-child(even) .step-count-top {
  display: none;
}

/* ============================================
   STEP SEQUENCE ANIMATION
============================================ */
.step-card {
  opacity: 0;
  transform: translateY(30px);
  animation: stepReveal 0.6s ease forwards;
}

.step-card:nth-child(1) {
  animation-delay: 0.1s;
}
.step-card:nth-child(2) {
  animation-delay: 0.3s;
}
.step-card:nth-child(3) {
  animation-delay: 0.5s;
}
.step-card:nth-child(4) {
  animation-delay: 0.7s;
}
.step-card:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
============================================ */

/* ===== DESKTOP LARGE ===== */
@media screen and (max-width: 1200px) {
  .process-title {
    font-size: 38px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-desc {
    font-size: 12px;
  }
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 28px;
  }
  .container {
    padding: 0 30px;
  }
}

/* ===== TABLET ===== */
@media screen and (max-width: 991px) {
  .process-section {
    padding: 70px 0 50px;
  }
  .process-title {
    font-size: 34px;
  }
  .process-subtitle {
    font-size: 11px;
  }
  .steps-row {
    gap: 25px;
  }
  .step-card {
    flex: 0 0 calc(50% - 12.5px);
    min-width: auto;
  }

  /* Tablet: All cards show count on top */
  .step-card .step-count-top {
    display: flex;
  }
  .step-card .step-count-bottom {
    display: none;
  }

  /* Hide zigzag on tablet */
  .zigzag-svg {
    display: none;
  }

  .step-content {
    padding: 30px 18px;
  }
  .step-icon {
    width: 55px;
    height: 55px;
  }
  .step-icon i {
    font-size: 26px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-desc {
    font-size: 12px;
  }
  .process-section::before {
    width: 100%;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.3;
  }
  .process-section::after,
  .process-shape {
    display: none;
  }
}

/* ===== MOBILE ===== */
@media screen and (max-width: 767px) {
  .process-section {
    padding: 50px 0 30px;
  }
  .process-header {
    margin-bottom: 35px;
  }
  .process-title {
    font-size: 28px;
  }
  .process-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
  }
  .process-divider {
    width: 60px;
    height: 2px;
  }

  .steps-container {
    padding: 20px 15px;
  }

  .steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .step-card {
    flex: auto;
    max-width: 100%;
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* 5th card - centered in its own row */
  .step-card:last-child {
    grid-column: span 2;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  /* All cards show count on top */
  .step-card .step-count-top {
    display: flex;
  }
  .step-card .step-count-bottom {
    display: none;
  }

  .step-content {
    padding: 22px 15px;
    border-radius: 20px;
  }
  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .step-icon i {
    font-size: 24px;
  }
  .step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 11px;
    line-height: 1.6;
  }
  .step-count-top {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
  }
  .step-count-top span {
    font-size: 16px;
  }

  .step-card:hover .step-content {
    transform: translateY(-5px);
  }
  .step-card:hover .step-count-top {
    transform: scale(1.1) rotate(360deg);
  }

  .process-section::before {
    opacity: 0.15;
  }

  /* Disable blinking on mobile for performance */
  .step-card .step-count-top::before,
  .step-card .step-count-bottom::before {
    display: none !important;
  }
  .step-card .step-count-top,
  .step-card .step-count-bottom {
    animation: none !important;
  }
}

/* ===== SMALL MOBILE ===== */
@media screen and (max-width: 480px) {
  .process-title {
    font-size: 24px;
  }
  .process-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 4px 12px;
  }

  .steps-row {
    gap: 14px;
  }

  .step-content {
    padding: 18px 12px;
    border-radius: 16px;
  }
  .step-icon {
    width: 45px;
    height: 45px;
  }
  .step-icon i {
    font-size: 20px;
  }
  .step-title {
    font-size: 14px;
  }
  .step-desc {
    font-size: 10px;
    line-height: 1.5;
  }
  .step-count-top {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }
  .step-count-top span {
    font-size: 14px;
  }

  .step-card:last-child {
    max-width: 280px;
  }
}

/* ===== EXTRA SMALL ===== */
@media screen and (max-width: 360px) {
  .steps-row {
    gap: 12px;
  }
  .step-content {
    padding: 14px 10px;
    border-radius: 14px;
  }
  .step-icon {
    width: 40px;
    height: 40px;
  }
  .step-icon i {
    font-size: 18px;
  }
  .step-title {
    font-size: 13px;
  }
  .step-desc {
    font-size: 9px;
  }
  .step-count-top {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .step-count-top span {
    font-size: 12px;
  }
}

/* ============================================
   ACCESSIBILITY
============================================ */
@media (prefers-reduced-motion: reduce) {
  .step-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .step-card .step-count-top,
  .step-card .step-count-bottom {
    animation: none !important;
  }
  .step-card .step-count-top::before,
  .step-card .step-count-bottom::before {
    animation: none !important;
    display: none !important;
  }
  .step-card:hover .step-content {
    transform: none !important;
  }
  .step-card:hover .step-icon {
    transform: none !important;
  }
  .process-section::after {
    animation: none !important;
  }
}
/* ============================================
   PROPERTY SECTION - LUXURY REAL ESTATE THEME
   ============================================ */
.featured-collection {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  position: relative;
}

.fc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== SECTION MAIN HEADING ========== */
.fc-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.fc-section-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.12);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.fc-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 20px;
}

.fc-section-title .fc-gold {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fc-section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a84c,
    #f5e56b,
    #c9a84c,
    transparent
  );
  margin: 0 auto;
}

.fc-section-para {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 15px;
  color: #6a6a6a;
  line-height: 1.6;
}

/* ========== LEFT TABS - LUXURY DESIGN ========== */
.tabs-sticky-container {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s ease;
}

.tabs-sticky-container:hover {
  box-shadow: 0 25px 50px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Tab Header with Logo Image */
.tab-header-logo {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.15);
}

.tab-header-logo img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  padding: 14px;
  margin-bottom: 15px;
  border: 2px solid #c9a84c;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.15);
  transition: transform 0.3s ease;
}

.tab-header-logo img:hover {
  transform: scale(1.05);
}

.tab-header-logo h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", serif;
}

.tab-header-logo p {
  font-size: 11px;
  color: #c9a84c;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Tab Buttons - Luxury Design */
.tab-custom-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 20px;
  margin-bottom: 10px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 14px;
  color: #5a626e;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.tab-custom-btn i {
  width: 24px;
  font-size: 16px;
  color: #c9a84c;
  transition: all 0.3s ease;
}

.tab-custom-btn .tab-count {
  margin-left: auto;
  background: rgba(201, 168, 76, 0.12);
  padding: 3px 9px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #c9a84c;
  transition: all 0.3s ease;
}

.tab-custom-btn.active {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
  transform: translateX(5px);
}

.tab-custom-btn.active i {
  color: #1a1a1a;
}

.tab-custom-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.3);
  color: #1a1a1a;
}

.tab-custom-btn:hover:not(.active) {
  background: rgba(201, 168, 76, 0.08);
  color: #c9a84c;
  transform: translateX(5px);
}

.tab-custom-btn:hover:not(.active) i {
  color: #c9a84c;
  transform: scale(1.1);
}

/* ========== RIGHT COURSES CONTAINER ========== */
.courses-right-container {
  background: transparent;
}

/* Section Header inside Right Side */
.right-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.right-header-left h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
}

.right-header-left p {
  font-size: 13px;
  color: #6a6a6a;
  margin: 0;
}

.right-header-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.right-header-icon:hover {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: translateX(5px) rotate(45deg);
}

/* Tab Content */
.tab-content-data {
  display: none;
}

.tab-content-data.active-tab {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards Row */
.fc-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Premium Product Card */
.fc-product-card {
  background: #ffffff;
  border-radius: 50px 50px 50px 0;
  padding: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  height: 100%;
  position: relative;
}

.fc-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.25);
}

.fc-card-image {
  position: relative;
  overflow: hidden;
  height: 230px;
  border-radius: 50px 50px 50px 0;
}

.fc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fc-product-card:hover .fc-card-image img {
  transform: scale(1.05);
}

/* Professional Badge - Premium Design */
.fc-cat-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #1a2a3a, #2a3a4a);
  color: #c9a84c;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fc-product-card:hover .fc-cat-badge {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 168, 76, 0.25);
}

.fc-card-body {
  padding: 22px;
}

.fc-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.fc-product-card:hover .fc-card-title {
  color: #c9a84c;
}

.fc-card-desc {
  font-size: 12px;
  color: #6a6a6a;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Features Grid with Circle Icons */
.fc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.fc-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #4a423e;
}

.fc-feature-icon-circle {
  width: 28px;
  height: 28px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fc-feature-icon-circle i {
  font-size: 12px;
  color: #c9a84c;
  transition: all 0.3s ease;
}

/* Hover on Feature Icons */
.fc-feature-item:hover .fc-feature-icon-circle {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  transform: scale(1.15) rotate(360deg);
}

.fc-feature-item:hover .fc-feature-icon-circle i {
  color: #1a1a1a;
}

.fc-feature-item:hover {
  color: #c9a84c;
}

.fc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.fc-price {
  font-size: 20px;
  font-weight: 800;
  color: #c9a84c;
}

.fc-price span {
  font-size: 11px;
  font-weight: 400;
  color: #6a6a6a;
}

.fc-discount {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: 30px;
}

/* Premium CTA Buttons */
.fc-card-buttons {
  display: flex;
  gap: 12px;
}

.fc-btn-details {
  flex: 1;
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  color: #c9a84c;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.fc-btn-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.fc-btn-details:hover::before {
  left: 100%;
}

.fc-btn-details:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #c9a84c;
  transform: translateY(-2px);
}

.fc-btn-quote {
  flex: 1;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border: none;
  color: #1a1a1a;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.fc-btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.fc-btn-quote:hover::before {
  left: 100%;
}

.fc-btn-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4);
}

/* View More Button - Premium */
.view-more-wrapper {
  text-align: center;
  margin-top: 45px;
}

.view-more-btn-new {
  background: transparent;
  border: 2px solid #c9a84c;
  color: #c9a84c;
  padding: 12px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.view-more-btn-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.view-more-btn-new:hover::before {
  left: 100%;
}

.view-more-btn-new:hover {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
  border-color: #f5e56b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .featured-collection {
    padding: 60px 0;
  }
  .tabs-sticky-container {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 15px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .tabs-sticky-container::-webkit-scrollbar {
    height: 4px;
  }
  .tabs-sticky-container::-webkit-scrollbar-track {
    background: rgba(201, 168, 76, 0.1);
    border-radius: 10px;
  }
  .tabs-sticky-container::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 10px;
  }
  .tab-header-logo {
    display: none;
  }
  .tab-custom-btn {
    white-space: nowrap;
    width: auto;
    padding: 10px 18px;
  }
  .tab-custom-btn.active {
    transform: translateX(0);
  }
  .fc-section-title {
    font-size: 32px;
  }
  .right-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .fc-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .fc-container {
    padding: 0 20px;
  }
  .fc-section-title {
    font-size: 28px;
  }
  .fc-section-para {
    font-size: 13px;
  }
  .fc-cards-row {
    grid-template-columns: 1fr;
  }
  .fc-card-image {
    height: 200px;
  }
  .right-header-left h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .fc-card-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .tab-custom-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}
/* ============================================
   LOCATION ROW
   ============================================ */
.fc-location-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.fc-location-row i {
  color: #c9a84c;
  font-size: 13px;
}

.fc-location-row span {
  font-size: 12px;
  color: #4a423e;
  font-weight: 500;
}

/* ============================================
   STATUS BADGE
   ============================================ */
.fc-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fc-status-badge i {
  font-size: 10px;
}

.fc-status-badge.available {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.fc-status-badge.sold {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* ============================================
   PREMIUM MODAL
   ============================================ */
.fc-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

.fc-modal-overlay.active {
  display: flex;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fc-modal-container {
  background: #ffffff;
  border-radius: 30px;
  max-width: 480px;
  width: 90%;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.fc-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: #6a6a6a;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-modal-close:hover {
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  transform: rotate(90deg);
}

/* Modal Header */
.fc-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.fc-modal-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1),
    rgba(245, 229, 107, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 2px dashed rgba(201, 168, 76, 0.2);
}

.fc-modal-icon-wrapper i {
  font-size: 30px;
  color: #c9a84c;
}

.fc-modal-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 5px;
}

.fc-modal-header h3 .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fc-modal-header p {
  font-size: 14px;
  color: #6a6a6a;
}

.fc-modal-header p span {
  color: #c9a84c;
  font-weight: 600;
}

/* Modal Options */
.fc-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.fc-modal-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.fc-modal-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.fc-modal-option:hover::before {
  left: 100%;
}

.fc-modal-option:hover {
  transform: translateX(5px);
}

.fc-modal-option.call-option {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(37, 99, 235, 0.02)
  );
  border-color: rgba(37, 99, 235, 0.15);
}

.fc-modal-option.call-option:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(37, 99, 235, 0.05)
  );
  border-color: #2563eb;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.fc-modal-option.whatsapp-option {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.05),
    rgba(37, 211, 102, 0.02)
  );
  border-color: rgba(37, 211, 102, 0.15);
}

.fc-modal-option.whatsapp-option:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.12),
    rgba(37, 211, 102, 0.05)
  );
  border-color: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.fc-modal-option.email-option {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.05),
    rgba(124, 58, 237, 0.02)
  );
  border-color: rgba(124, 58, 237, 0.15);
}

.fc-modal-option.email-option:hover {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    rgba(124, 58, 237, 0.05)
  );
  border-color: #7c3aed;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.fc-modal-option-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.call-icon {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.call-option:hover .call-icon {
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.05);
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.whatsapp-option:hover .whatsapp-icon {
  background: #25d366;
  color: #ffffff;
  transform: scale(1.05);
}

.email-icon {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.email-option:hover .email-icon {
  background: #7c3aed;
  color: #ffffff;
  transform: scale(1.05);
}

.fc-modal-option-text {
  flex: 1;
}

.fc-modal-option-text .option-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fc-modal-option-text .option-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a2a3a;
}

.option-arrow {
  color: #c9a84c;
  font-size: 14px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.fc-modal-option:hover .option-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* Modal Footer */
.fc-modal-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fc-modal-footer p {
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 12px;
}

.fc-modal-footer p span {
  color: #c9a84c;
  font-weight: 700;
}

.fc-modal-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.fc-modal-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a6a6a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.fc-modal-social a:hover {
  background: #c9a84c;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE MODAL
   ============================================ */
@media (max-width: 576px) {
  .fc-modal-container {
    padding: 30px 20px;
  }
  .fc-modal-header h3 {
    font-size: 24px;
  }
  .fc-modal-option {
    padding: 12px 16px;
  }
  .fc-modal-option-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
  .fc-modal-option-text .option-value {
    font-size: 13px;
  }
}

/*===============================PROJECT SHOWCASE STYLING==============================*/

/* ============================================
           SIGNATURE PROJECTS SECTION
        ============================================ */
.signature-projects {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
  position: relative;
  overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.sp-header {
  text-align: center;
  margin-bottom: 50px;
}

.sp-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 12px;
}

.sp-tagline i {
  margin-right: 8px;
}

.sp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.15;
}

.sp-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
           PROJECT SHOWCASE CONTAINER
        ============================================ */
.sp-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  align-items: stretch;
  min-height: 580px;
}

/* ============================================
           LEFT SIDE - 60% IMAGE
        ============================================ */
.sp-left {
  flex: 0 0 60%;
  max-width: 60%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
}

.sp-left:hover {
  box-shadow: 0 30px 80px rgba(201, 168, 76, 0.12);
}

.sp-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;
  overflow: hidden;
}

.sp-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-left:hover .sp-image-wrapper img {
  transform: scale(1.03);
}

/* ===== LOCATION BADGE - TOP CORNER ===== */
.sp-location-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 5;
  transition: all 0.4s ease;
}

.sp-location-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.sp-location-badge i {
  color: #c9a84c;
  font-size: 16px;
}

.sp-location-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
}

.sp-location-badge .loc-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
}

.sp-location-badge .loc-price {
  font-size: 13px;
  font-weight: 700;
  color: #c9a84c;
}

/* ===== DARK OVERLAY BOTTOM ===== */
.sp-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 35px 35px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 3;
}

.sp-overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.sp-overlay-left h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.sp-overlay-left p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.sp-overlay-right {
  text-align: right;
}

.sp-overlay-right .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.sp-overlay-right .value {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

.sp-overlay-right .value span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
}

/* ============================================
           RIGHT SIDE - 40% CONTENT
        ============================================ */
.sp-right {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 20px;
  position: relative;
}

/* ===== PROJECT NUMBER ===== */
.sp-project-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: all 0.6s ease;
}

.sp-project-number.active {
  color: rgba(201, 168, 76, 0.08);
}

/* ===== TAGLINE ===== */
.sp-right-tagline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 5px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  margin-bottom: 15px;
  width: fit-content;
  transition: all 0.3s ease;
}

.sp-right-tagline:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateX(5px);
}

/* ===== HEADING ===== */
.sp-right-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sp-right-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== DESCRIPTION (4 LINES WITH ELLIPSIS) ===== */
.sp-right-desc {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 102px;
}

/* ===== PROJECT HIGHLIGHTS ===== */
.sp-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 25px;
  padding: 18px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.sp-highlight-item {
  text-align: center;
  transition: all 0.4s ease;
  padding: 6px 4px;
  border-radius: 12px;
}

.sp-highlight-item:hover {
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-3px);
}

.sp-highlight-item .hl-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #c9a84c;
  display: block;
  line-height: 1;
}

.sp-highlight-item .hl-label {
  font-size: 10px;
  color: #6a6a6a;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* ===== CTA BUTTON ===== */
.sp-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-cta-primary {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.sp-cta-primary i {
  transition: all 0.3s ease;
}

.sp-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4);
}

.sp-cta-primary:hover i {
  transform: translateX(6px);
}

.sp-cta-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6a6a6a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.sp-cta-secondary i {
  color: #c9a84c;
  transition: all 0.3s ease;
}

.sp-cta-secondary:hover {
  color: #c9a84c;
  border-bottom-color: #c9a84c;
}

.sp-cta-secondary:hover i {
  transform: translateX(5px);
}

/* ============================================
           PROJECT SLIDE TRANSITION
        ============================================ */
.sp-project-slide {
  display: none;
  animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-project-slide.active {
  display: block;
}

.sp-left-slide {
  display: none;
  animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-left-slide.active {
  display: block;
  height: 100%;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
           SCROLL INDICATOR
        ============================================ */
.sp-scroll-indicator {
  text-align: center;
  margin-top: 40px;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.sp-scroll-indicator:hover {
  opacity: 0.8;
}

.sp-scroll-indicator p {
  font-size: 11px;
  color: #6a6a6a;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.sp-scroll-indicator .scroll-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    width: 40px;
    opacity: 0.3;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .sp-showcase {
    padding: 0 30px;
    gap: 30px;
    min-height: 500px;
  }
  .sp-image-wrapper {
    min-height: 480px;
  }
  .sp-right-heading {
    font-size: 30px;
  }
  .sp-project-number {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .signature-projects {
    padding: 70px 0 50px;
  }
  .sp-showcase {
    flex-direction: column;
    padding: 0 20px;
    min-height: auto;
    gap: 30px;
  }
  .sp-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sp-image-wrapper {
    min-height: 400px;
  }
  .sp-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .sp-project-number {
    font-size: 50px;
    right: 0;
    top: -10px;
  }
  .sp-right-heading {
    font-size: 28px;
  }
  .sp-title {
    font-size: 34px;
  }
  .sp-location-badge {
    top: 15px;
    left: 15px;
    padding: 8px 16px;
  }
  .sp-location-badge span {
    font-size: 12px;
  }
  .sp-location-badge .loc-price {
    font-size: 12px;
  }
  .sp-overlay-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .sp-overlay-right {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .signature-projects {
    padding: 50px 0 40px;
  }
  .sp-title {
    font-size: 28px;
  }
  .sp-showcase {
    padding: 0 15px;
    gap: 25px;
  }
  .sp-image-wrapper {
    min-height: 320px;
  }
  .sp-right-heading {
    font-size: 24px;
  }
  .sp-right-desc {
    font-size: 14px;
    -webkit-line-clamp: 3;
    max-height: 72px;
  }
  .sp-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 0;
  }
  .sp-highlight-item .hl-number {
    font-size: 18px;
  }
  .sp-highlight-item .hl-label {
    font-size: 9px;
  }
  .sp-project-number {
    font-size: 40px;
  }
  .sp-overlay-left h4 {
    font-size: 20px;
  }
  .sp-overlay-left p {
    font-size: 12px;
  }
  .sp-overlay-right .value {
    font-size: 22px;
  }
  .sp-location-badge {
    top: 12px;
    left: 12px;
    padding: 6px 14px;
  }
  .sp-location-badge span {
    font-size: 11px;
  }
  .sp-location-badge .loc-price {
    font-size: 11px;
  }
  .sp-location-badge i {
    font-size: 13px;
  }
  .sp-image-overlay {
    padding: 25px 20px 20px;
  }
  .sp-cta-primary {
    padding: 12px 24px;
    font-size: 12px;
  }
  .sp-tagline {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .signature-projects {
    padding: 40px 0 30px;
  }
  .sp-title {
    font-size: 24px;
  }
  .sp-showcase {
    padding: 0 12px;
    gap: 20px;
  }
  .sp-image-wrapper {
    min-height: 260px;
  }
  .sp-right-heading {
    font-size: 22px;
  }
  .sp-right-desc {
    font-size: 13px;
    -webkit-line-clamp: 3;
    max-height: 60px;
  }
  .sp-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 10px 0;
  }
  .sp-highlight-item .hl-number {
    font-size: 16px;
  }
  .sp-highlight-item .hl-label {
    font-size: 8px;
    letter-spacing: 0px;
  }
  .sp-project-number {
    font-size: 32px;
  }
  .sp-overlay-left h4 {
    font-size: 17px;
  }
  .sp-overlay-left p {
    font-size: 11px;
  }
  .sp-overlay-right .value {
    font-size: 18px;
  }
  .sp-overlay-right .value span {
    font-size: 11px;
  }
  .sp-location-badge {
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    gap: 6px;
  }
  .sp-location-badge span {
    font-size: 10px;
  }
  .sp-location-badge .loc-price {
    font-size: 10px;
  }
  .sp-location-badge i {
    font-size: 11px;
  }
  .sp-location-badge .loc-divider {
    height: 14px;
  }
  .sp-image-overlay {
    padding: 20px 15px 15px;
  }
  .sp-cta-primary {
    padding: 10px 20px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
  .sp-cta-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .sp-cta-secondary {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .sp-image-wrapper {
    min-height: 220px;
  }
  .sp-right-heading {
    font-size: 19px;
  }
  .sp-highlight-item .hl-number {
    font-size: 14px;
  }
  .sp-overlay-left h4 {
    font-size: 15px;
  }
  .sp-overlay-right .value {
    font-size: 16px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .sp-left-slide,
  .sp-project-slide {
    animation: none !important;
  }
  .sp-left:hover .sp-image-wrapper img {
    transform: none !important;
  }
  .sp-location-badge:hover {
    transform: none !important;
  }
  .sp-cta-primary:hover {
    transform: none !important;
  }
  .sp-scroll-indicator .scroll-line {
    animation: none !important;
  }
}

/*======================================WHY CHOOSE US SECTON STYLING===========================*/
.why-choose-us {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  min-height: 100vh;
}

/* ===== ANIMATED GOLD PARTICLES ===== */
.wcu-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c9a84c;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

.particle:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  width: 6px;
  height: 6px;
}
.particle:nth-child(2) {
  top: 20%;
  right: 8%;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
}
.particle:nth-child(3) {
  top: 40%;
  left: 15%;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(4) {
  bottom: 30%;
  right: 5%;
  animation-delay: 0.5s;
  width: 4px;
  height: 4px;
}
.particle:nth-child(5) {
  bottom: 15%;
  left: 10%;
  animation-delay: 1.5s;
  width: 7px;
  height: 7px;
}
.particle:nth-child(6) {
  top: 60%;
  right: 15%;
  animation-delay: 2.5s;
  width: 3px;
  height: 3px;
}
.particle:nth-child(7) {
  top: 75%;
  left: 25%;
  animation-delay: 3s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(8) {
  top: 5%;
  left: 40%;
  animation-delay: 0.8s;
  width: 4px;
  height: 4px;
}
.particle:nth-child(9) {
  bottom: 40%;
  left: 45%;
  animation-delay: 1.8s;
  width: 6px;
  height: 6px;
}
.particle:nth-child(10) {
  top: 30%;
  right: 25%;
  animation-delay: 2.2s;
  width: 3px;
  height: 3px;
}
.particle:nth-child(11) {
  bottom: 10%;
  right: 30%;
  animation-delay: 0.3s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(12) {
  top: 50%;
  left: 55%;
  animation-delay: 1.2s;
  width: 4px;
  height: 4px;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0) rotate(0deg);
  }
  20% {
    opacity: 0.8;
    transform: translateY(-30px) scale(1) rotate(180deg);
  }
  40% {
    opacity: 0.3;
    transform: translateY(-60px) scale(0.5) rotate(360deg);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-90px) scale(1.2) rotate(540deg);
  }
  80% {
    opacity: 0.4;
    transform: translateY(-120px) scale(0.7) rotate(720deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(0) rotate(900deg);
  }
}

/* ===== CITY MAP LINES ===== */
.wcu-map-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

.wcu-map-lines svg {
  width: 100%;
  height: 100%;
}

/* ===== SECTION HEADER ===== */
.wcu-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.wcu-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
}

.wcu-subtitle i {
  margin-right: 8px;
}

.wcu-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.wcu-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ============================================
           CARDS GRID
        ============================================ */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
           PREMIUM CARD - GLASS EFFECT
        ============================================ */
.wcu-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px 35px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 168, 76, 0.06);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wcu-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201, 168, 76, 0.03),
    transparent 60%
  );
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.wcu-card:hover::before {
  opacity: 1;
}

/* ===== CARD GLOW BORDER ===== */
.wcu-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(201, 168, 76, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.wcu-card:hover::after {
  opacity: 1;
}

.wcu-card:hover {
  transform: translateY(-12px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 168, 76, 0.03);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== TRANSPARENT NUMBER BACKGROUND ===== */
.wcu-card-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: all 0.6s ease;
}

.wcu-card:hover .wcu-card-number {
  color: rgba(201, 168, 76, 0.08);
  transform: scale(1.05);
}

/* ===== GOLD CIRCLE ICON ===== */
.wcu-icon-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.wcu-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(245, 229, 107, 0.05)
  );
  border: 1.5px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wcu-icon-circle i {
  font-size: 30px;
  color: #c9a84c;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ICON GLOW RING ===== */
.wcu-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.08);
  animation: spinRing 15s linear infinite;
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wcu-card:hover .wcu-icon-circle {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border-color: #c9a84c;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}

.wcu-card:hover .wcu-icon-circle i {
  color: #1a1a1a;
  transform: rotate(-10deg) scale(1.1);
}

/* ===== CARD TITLE ===== */
.wcu-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.wcu-card:hover .wcu-card-title {
  color: #c9a84c;
}

/* ===== CARD DESCRIPTION (2 LINES) ===== */
.wcu-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 44px;
}

/* ============================================
           BOTTOM STRIP - MOTIVATION LINES
        ============================================ */
.wcu-bottom-strip {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.wcu-strip-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.wcu-strip-text .gold-text {
  color: #c9a84c;
}

.wcu-strip-divider {
  width: 2px;
  height: 30px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 168, 76, 0.15),
    transparent
  );
}

.wcu-strip-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wcu-strip-icons span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wcu-strip-icons span i {
  color: #c9a84c;
  font-size: 12px;
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .wcu-grid {
    gap: 20px;
    padding: 0 30px;
  }
  .wcu-card {
    padding: 30px 20px 25px;
    min-height: 280px;
  }
  .wcu-card-number {
    font-size: 60px;
  }
  .wcu-icon-circle {
    width: 70px;
    height: 70px;
  }
  .wcu-icon-circle i {
    font-size: 26px;
  }
  .wcu-title {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .why-choose-us {
    padding: 80px 0 60px;
  }
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  .wcu-card {
    min-height: 260px;
    padding: 30px 20px 25px;
  }
  .wcu-title {
    font-size: 34px;
  }
  .wcu-bottom-strip {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .wcu-strip-divider {
    display: none;
  }
  .wcu-strip-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .wcu-strip-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0 40px;
  }
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }
  .wcu-card {
    padding: 25px 16px 20px;
    min-height: 220px;
    border-radius: 18px;
  }
  .wcu-card-number {
    font-size: 50px;
    top: -5px;
    right: 5px;
  }
  .wcu-icon-circle {
    width: 60px;
    height: 60px;
  }
  .wcu-icon-circle i {
    font-size: 22px;
  }
  .wcu-card-title {
    font-size: 18px;
  }
  .wcu-card-desc {
    font-size: 13px;
    max-height: 38px;
  }
  .wcu-title {
    font-size: 30px;
  }
  .wcu-desc {
    font-size: 14px;
  }
  .wcu-subtitle {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .wcu-icon-wrapper::before {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
  }
  .wcu-bottom-strip {
    padding-top: 20px;
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .wcu-strip-text {
    font-size: 16px;
  }
  .wcu-strip-icons span {
    font-size: 11px;
  }
  .particle {
    display: none;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 50px 0 30px;
  }
  .wcu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 10px;
  }
  .wcu-card {
    padding: 18px 12px 16px;
    min-height: 180px;
    border-radius: 14px;
  }
  .wcu-card-number {
    font-size: 36px;
    top: -2px;
    right: 4px;
  }
  .wcu-icon-circle {
    width: 48px;
    height: 48px;
  }
  .wcu-icon-circle i {
    font-size: 18px;
  }
  .wcu-card-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .wcu-card-desc {
    font-size: 11px;
    max-height: 30px;
    line-height: 1.4;
  }
  .wcu-title {
    font-size: 24px;
  }
  .wcu-desc {
    font-size: 13px;
  }
  .wcu-icon-wrapper {
    margin-bottom: 12px;
  }
  .wcu-icon-wrapper::before {
    display: none;
  }
  .wcu-bottom-strip {
    padding-top: 15px;
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .wcu-strip-text {
    font-size: 14px;
  }
  .wcu-strip-icons span {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .wcu-strip-icons {
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .wcu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 6px;
  }
  .wcu-card {
    padding: 14px 8px 12px;
    min-height: 150px;
    border-radius: 12px;
  }
  .wcu-card-number {
    font-size: 28px;
  }
  .wcu-icon-circle {
    width: 38px;
    height: 38px;
  }
  .wcu-icon-circle i {
    font-size: 14px;
  }
  .wcu-card-title {
    font-size: 13px;
  }
  .wcu-card-desc {
    font-size: 10px;
    max-height: 26px;
  }
  .wcu-title {
    font-size: 20px;
  }
  .wcu-strip-text {
    font-size: 12px;
  }
  .wcu-strip-icons span {
    font-size: 9px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .particle {
    animation: none !important;
    opacity: 0.1 !important;
  }
  .wcu-icon-wrapper::before {
    animation: none !important;
  }
  .wcu-card:hover {
    transform: none !important;
  }
  .wcu-card:hover .wcu-icon-circle {
    transform: none !important;
  }
  .wcu-card:hover .wcu-icon-circle i {
    transform: none !important;
  }
}

/*===================================TESTIMONAL SECTION STYLING==============================*/
.testimonial-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
}

.testimonial-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonial-row {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* ============================================
           LEFT SIDE
        ============================================ */
.testimonial-left {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.testimonial-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.testimonial-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ===== IMAGE OVERLAY ===== */
.testimonial-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 30px 25px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.testimonial-overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testimonial-overlay-left h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.testimonial-overlay-left p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-overlay-right {
  text-align: right;
}

.testimonial-overlay-right .rating {
  color: #c9a84c;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-overlay-right .rating span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0;
}

/* ===== GOOGLE REVIEWS BADGE ===== */
.testimonial-google-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  transition: all 0.4s ease;
}

.testimonial-google-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.testimonial-google-badge .google-icon {
  font-size: 28px;
  color: #4285f4;
}

.testimonial-google-badge .google-text {
  display: flex;
  flex-direction: column;
}

.testimonial-google-badge .google-text .stars {
  color: #fbbc04;
  font-size: 13px;
  letter-spacing: 1px;
}

.testimonial-google-badge .google-text .reviews {
  font-size: 11px;
  color: #6a6a6a;
  font-weight: 500;
}

/* ===== COMPANY LOGO ===== */
.testimonial-company-logo {
  position: absolute;
  bottom: 90px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
}

.testimonial-company-logo:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.testimonial-company-logo i {
  font-size: 24px;
  color: #c9a84c;
}

.testimonial-company-logo span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.testimonial-company-logo small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-weight: 400;
}

/* ============================================
           RIGHT SIDE
        ============================================ */
.testimonial-right {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

/* ===== TAGLINE ===== */
.testimonial-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
  width: fit-content;
  transition: all 0.3s ease;
}

.testimonial-tagline:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateX(5px);
}

.testimonial-tagline i {
  margin-right: 8px;
}

/* ===== HEADING ===== */
.testimonial-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.15;
  margin-bottom: 12px;
}

.testimonial-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PARA ===== */
.testimonial-para {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
}

/* ===== KEY POINTS ===== */
.testimonial-key-points {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.testimonial-key-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-key-point .kp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 14px;
  transition: all 0.3s ease;
}

.testimonial-key-point:hover .kp-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.testimonial-key-point .kp-text {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
}

/* ============================================
           TESTIMONIAL SLIDER
        ============================================ */
.testimonial-slider-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  position: relative;
  min-height: 200px;
}

/* ===== QUOTE ICON ===== */
.testimonial-quote-icon {
  font-size: 32px;
  color: rgba(201, 168, 76, 0.12);
  margin-bottom: 10px;
}

/* ===== TESTIMONIAL TEXT ===== */
.testimonial-text {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 18px;
}

/* ===== TESTIMONIAL AUTHOR ===== */
.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonial-author-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonial-author-img:hover {
  border-color: #c9a84c;
  transform: scale(1.05);
}

.testimonial-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info .name {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
}

.testimonial-author-info .designation {
  font-size: 12px;
  color: #6a6a6a;
  font-weight: 500;
}

.testimonial-author-info .designation span {
  color: #c9a84c;
}

.testimonial-author-info .location {
  font-size: 11px;
  color: #8a8a8a;
}

.testimonial-author-info .location i {
  color: #c9a84c;
  margin-right: 4px;
}

/* ===== NAV BUTTONS ===== */
.testimonial-nav {
  display: flex;
  gap: 10px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav-btn:hover {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  border-color: #c9a84c;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

/* ============================================
           TESTIMONIAL SLIDES
        ============================================ */
.testimonial-slide {
  display: none;
  animation: testimonialFade 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .testimonial-container {
    padding: 0 30px;
  }
  .testimonial-row {
    gap: 35px;
  }
  .testimonial-heading {
    font-size: 36px;
  }
  .testimonial-image-wrapper {
    min-height: 420px;
  }
}

@media (max-width: 992px) {
  .testimonial-section {
    padding: 80px 0 60px;
  }
  .testimonial-row {
    flex-direction: column;
    gap: 40px;
  }
  .testimonial-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonial-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .testimonial-image-wrapper {
    min-height: 380px;
  }
  .testimonial-heading {
    font-size: 34px;
  }
  .testimonial-para {
    max-width: 100%;
  }
  .testimonial-key-points {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0 40px;
  }
  .testimonial-container {
    padding: 0 20px;
  }
  .testimonial-image-wrapper {
    min-height: 300px;
    border-radius: 20px;
  }
  .testimonial-overlay-left h4 {
    font-size: 18px;
  }
  .testimonial-overlay-left p {
    font-size: 12px;
  }
  .testimonial-overlay-right .rating {
    font-size: 12px;
  }
  .testimonial-google-badge {
    padding: 8px 14px;
    top: 15px;
    left: 15px;
  }
  .testimonial-google-badge .google-icon {
    font-size: 22px;
  }
  .testimonial-google-badge .google-text .stars {
    font-size: 11px;
  }
  .testimonial-google-badge .google-text .reviews {
    font-size: 10px;
  }
  .testimonial-company-logo {
    bottom: 80px;
    right: 15px;
    padding: 8px 12px;
  }
  .testimonial-company-logo i {
    font-size: 18px;
  }
  .testimonial-company-logo span {
    font-size: 11px;
  }
  .testimonial-company-logo small {
    font-size: 8px;
  }
  .testimonial-heading {
    font-size: 30px;
  }
  .testimonial-para {
    font-size: 14px;
  }
  .testimonial-key-points {
    gap: 12px;
  }
  .testimonial-key-point .kp-text {
    font-size: 12px;
  }
  .testimonial-key-point .kp-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .testimonial-slider-wrapper {
    padding: 20px 20px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .testimonial-quote-icon {
    font-size: 24px;
  }
  .testimonial-author-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-nav {
    align-self: flex-end;
  }
  .testimonial-author-img {
    width: 46px;
    height: 46px;
  }
  .testimonial-author-info .name {
    font-size: 14px;
  }
  .testimonial-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .testimonial-image-overlay {
    padding: 20px 20px 18px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 0 30px;
  }
  .testimonial-container {
    padding: 0 15px;
  }
  .testimonial-image-wrapper {
    min-height: 240px;
    border-radius: 16px;
  }
  .testimonial-heading {
    font-size: 26px;
  }
  .testimonial-para {
    font-size: 13px;
  }
  .testimonial-tagline {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .testimonial-key-points {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-slider-wrapper {
    padding: 16px 16px;
    border-radius: 18px;
  }
  .testimonial-text {
    font-size: 13px;
  }
  .testimonial-author-info .name {
    font-size: 13px;
  }
  .testimonial-author-info .designation {
    font-size: 11px;
  }
  .testimonial-author-img {
    width: 40px;
    height: 40px;
  }
  .testimonial-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .testimonial-overlay-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .testimonial-overlay-left h4 {
    font-size: 16px;
  }
  .testimonial-overlay-left p {
    font-size: 11px;
  }
  .testimonial-overlay-right {
    text-align: left;
  }
  .testimonial-overlay-right .rating {
    font-size: 11px;
  }
  .testimonial-google-badge {
    padding: 6px 12px;
    top: 10px;
    left: 10px;
    border-radius: 12px;
  }
  .testimonial-google-badge .google-icon {
    font-size: 18px;
  }
  .testimonial-google-badge .google-text .stars {
    font-size: 10px;
  }
  .testimonial-google-badge .google-text .reviews {
    font-size: 9px;
  }
  .testimonial-company-logo {
    bottom: 65px;
    right: 10px;
    padding: 6px 10px;
    border-radius: 10px;
  }
  .testimonial-company-logo i {
    font-size: 15px;
  }
  .testimonial-company-logo span {
    font-size: 10px;
  }
  .testimonial-company-logo small {
    font-size: 7px;
  }
  .testimonial-image-overlay {
    padding: 15px 15px 12px;
  }
}

@media (max-width: 360px) {
  .testimonial-image-wrapper {
    min-height: 200px;
  }
  .testimonial-heading {
    font-size: 22px;
  }
  .testimonial-text {
    font-size: 12px;
  }
  .testimonial-author-info .name {
    font-size: 12px;
  }
  .testimonial-author-img {
    width: 34px;
    height: 34px;
  }
  .testimonial-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .testimonial-slider-wrapper {
    padding: 12px 12px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .testimonial-slide {
    animation: none !important;
  }
  .testimonial-image-wrapper:hover img {
    transform: none !important;
  }
  .testimonial-nav-btn:hover {
    transform: none !important;
  }
}

/*====================================FULL WIDTH CTA BANNER=============================*/
.cta-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0a0a0a;
}

/* ===== BACKGROUND IMAGE (FIXED) ===== */
.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/cover_img/cover.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

/* ===== GOLD & BLACK MIXED OVERLAY ===== */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.7) 40%,
    rgba(201, 168, 76, 0.08) 100%
  );
  z-index: 1;
}

/* ===== GOLD PARTICLES ===== */
.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cta-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #c9a84c;
  border-radius: 50%;
  opacity: 0;
  animation: ctaParticleFloat 10s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

.cta-particle:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.cta-particle:nth-child(2) {
  top: 25%;
  right: 10%;
  animation-delay: 1.5s;
}
.cta-particle:nth-child(3) {
  top: 50%;
  left: 8%;
  animation-delay: 3s;
}
.cta-particle:nth-child(4) {
  bottom: 30%;
  right: 5%;
  animation-delay: 0.8s;
}
.cta-particle:nth-child(5) {
  bottom: 15%;
  left: 15%;
  animation-delay: 2.2s;
}
.cta-particle:nth-child(6) {
  top: 70%;
  right: 20%;
  animation-delay: 4s;
}
.cta-particle:nth-child(7) {
  top: 40%;
  left: 25%;
  animation-delay: 1s;
}
.cta-particle:nth-child(8) {
  bottom: 45%;
  right: 30%;
  animation-delay: 3.5s;
}

@keyframes ctaParticleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  30% {
    opacity: 0.8;
    transform: translateY(-50px) scale(1);
  }
  60% {
    opacity: 0.4;
    transform: translateY(-100px) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(0);
  }
}

/* ============================================
           CONTAINER
        ============================================ */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.cta-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ============================================
           LEFT SIDE
        ============================================ */
.cta-left {
  flex: 0 0 50%;
  max-width: 50%;
}

/* ===== TAGLINE ===== */
.cta-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.cta-tagline:hover {
  background: rgba(201, 168, 76, 0.18);
  transform: translateX(5px);
}

.cta-tagline i {
  margin-right: 8px;
}

/* ===== HEADING ===== */
.cta-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 15px;
}

.cta-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PARA ===== */
.cta-para {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 480px;
}

/* ===== KEY POINTS ROW ===== */
.cta-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-bottom: 30px;
}

.cta-key-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-key-point .kp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 13px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cta-key-point:hover .kp-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.1);
}

.cta-key-point .kp-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.cta-btn-primary i {
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 45px rgba(201, 168, 76, 0.4);
}

.cta-btn-primary:hover i {
  transform: translateX(6px);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.cta-btn-secondary i {
  color: #c9a84c;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.cta-btn-secondary:hover i {
  transform: translateX(6px);
}

/* ============================================
           RIGHT SIDE - GLASS CARDS
        ============================================ */
.cta-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ===== GLASS CARD (Small) ===== */
.cta-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.cta-glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.12);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-glass-card .gc-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-glass-card:hover .gc-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.cta-glass-card .gc-text {
  flex: 1;
}

.cta-glass-card .gc-text .gc-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  display: block;
}

.cta-glass-card .gc-text .gc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 1px;
}

.cta-glass-card .gc-check {
  color: #10b981;
  font-size: 18px;
  opacity: 0.8;
}

/* ============================================
           NEED HELP GLASS CARD (Bottom)
        ============================================ */
.cta-help-card {
  background: rgba(201, 168, 76, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px 28px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 5px;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-help-card:hover {
  background: rgba(201, 168, 76, 0.09);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.05);
}

.cta-help-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-help-left .help-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 20px;
  transition: all 0.3s ease;
}

.cta-help-card:hover .help-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.cta-help-left .help-text .help-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.cta-help-left .help-text .help-number {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  transition: all 0.3s ease;
}

.cta-help-left .help-text .help-number:hover {
  color: #c9a84c;
}

.cta-help-left .help-text .help-number a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-help-left .help-text .help-number a:hover {
  color: #c9a84c;
}

.cta-help-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-help-right .hr-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cta-help-right .hr-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 14px;
  transition: all 0.3s ease;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.05);
  }
}

.cta-help-right .hr-icon:hover {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .cta-container {
    padding: 60px 30px;
  }
  .cta-row {
    gap: 40px;
  }
  .cta-heading {
    font-size: 40px;
  }
  .cta-glass-card {
    padding: 14px 18px;
  }
  .cta-help-card {
    padding: 16px 20px;
  }
}

@media (max-width: 992px) {
  .cta-banner {
    min-height: auto;
    padding: 60px 0;
  }
  .cta-row {
    flex-direction: column;
    gap: 40px;
  }
  .cta-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cta-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cta-heading {
    font-size: 36px;
  }
  .cta-para {
    max-width: 100%;
  }
  .cta-bg-image {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .cta-container {
    padding: 40px 20px;
  }
  .cta-heading {
    font-size: 32px;
  }
  .cta-para {
    font-size: 14px;
  }
  .cta-key-points {
    gap: 10px 20px;
  }
  .cta-key-point .kp-text {
    font-size: 13px;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }
  .cta-glass-card {
    padding: 12px 16px;
    border-radius: 16px;
  }
  .cta-glass-card .gc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }
  .cta-glass-card .gc-text .gc-title {
    font-size: 13px;
  }
  .cta-glass-card .gc-text .gc-desc {
    font-size: 11px;
  }
  .cta-help-card {
    padding: 14px 18px;
    border-radius: 16px;
  }
  .cta-help-left .help-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 17px;
  }
  .cta-help-left .help-text .help-number {
    font-size: 17px;
  }
  .cta-tagline {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 30px 15px;
  }
  .cta-heading {
    font-size: 28px;
  }
  .cta-para {
    font-size: 13px;
  }
  .cta-key-points {
    flex-direction: column;
    gap: 8px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 12px;
  }
  .cta-glass-card {
    padding: 10px 14px;
    border-radius: 14px;
    flex-wrap: wrap;
  }
  .cta-glass-card .gc-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
  }
  .cta-glass-card .gc-text .gc-title {
    font-size: 12px;
  }
  .cta-glass-card .gc-text .gc-desc {
    font-size: 10px;
  }
  .cta-glass-card .gc-check {
    font-size: 14px;
  }
  .cta-help-card {
    padding: 12px 16px;
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-help-left .help-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }
  .cta-help-left .help-text .help-number {
    font-size: 15px;
  }
  .cta-help-right {
    width: 100%;
    justify-content: flex-start;
  }
  .cta-help-right .hr-text {
    font-size: 10px;
  }
  .cta-help-right .hr-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .cta-particle {
    display: none;
  }
}

@media (max-width: 360px) {
  .cta-heading {
    font-size: 24px;
  }
  .cta-glass-card {
    padding: 8px 12px;
  }
  .cta-glass-card .gc-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 11px;
  }
  .cta-glass-card .gc-text .gc-title {
    font-size: 11px;
  }
  .cta-help-left .help-text .help-number {
    font-size: 13px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .cta-particle {
    animation: none !important;
    opacity: 0.1 !important;
  }
  .cta-help-right .hr-icon {
    animation: none !important;
  }
  .cta-btn-primary:hover,
  .cta-btn-secondary:hover,
  .cta-glass-card:hover,
  .cta-help-card:hover {
    transform: none !important;
  }
}
/*==============================GALLERY STYLING==============================*/
/* =============================== GALLERY SECTION STYLING ================================= */
.gallery-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  position: relative;
  overflow: visible;
}

/* Section Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.gallery-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 20px;
}

.gallery-title .gold {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a84c,
    #f5e56b,
    #c9a84c,
    transparent
  );
  margin: 0 auto;
}

/* Gallery Container */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Row with sticky left */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT SIDE - STICKY PROMO CARD */
.gallery-sticky-wrapper {
  flex: 1;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.gallery-promo-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.gallery-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.15);
}

/* Promo Card Content */
.promo-bg {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80");
  background-size: cover;
  background-position: center;
  padding: 45px 30px;
}

.promo-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.88) 0%,
    rgba(201, 168, 76, 0.35) 50%,
    rgba(26, 42, 58, 0.88) 100%
  );
  z-index: 0;
}

/* Logo in Header */
.promo-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 25px;
}

.promo-logo-wrapper {
  background: #ffffff;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #c9a84c;
  transition: all 0.3s ease;
}

.gallery-promo-card:hover .promo-logo-wrapper {
  border-color: #f5e56b;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.promo-logo-wrapper img {
  width: 100%;
  height: 50px;
  padding: 5px;
  object-fit: contain;
}

/* Promo Content */
.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.promo-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.promo-heading .gold {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Promo Buttons */
.promo-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-btn-primary {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.promo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.promo-btn-primary i {
  transition: all 0.3s ease;
}

.promo-btn-primary:hover i {
  transform: translateX(5px);
}

.promo-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-btn-secondary:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: #c9a84c;
  transform: translateY(-2px);
}

/* RIGHT SIDE - SCROLLABLE GALLERY GRID */
.gallery-grid-wrapper {
  flex: 2;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Gold Overlay on Hover */
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.88),
    rgba(26, 42, 58, 0.92)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* View Full Icon with Animation */
.gallery-view-icon {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover .gallery-view-icon {
  transform: scale(1);
}

.gallery-view-icon i {
  font-size: 24px;
  color: #c9a84c;
}

/* Image Title */
.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-item-title span {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

/* View All Button */
.gallery-view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.gallery-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
}

.gallery-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.35);
}

.gallery-view-all i {
  transition: all 0.3s ease;
}

.gallery-view-all:hover i {
  transform: translateX(6px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .gallery-title {
    font-size: 42px;
  }
  .gallery-grid {
    gap: 15px;
  }
}

@media screen and (max-width: 992px) {
  .gallery-section {
    padding: 80px 0;
  }
  .gallery-title {
    font-size: 36px;
  }
  .gallery-container {
    padding: 0 30px;
  }
  .gallery-row {
    flex-direction: column;
  }
  .gallery-sticky-wrapper {
    position: relative;
    top: 0;
    width: 100%;
  }
  .promo-bg {
    padding: 35px 25px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-title {
    font-size: 32px;
  }
  .gallery-subtitle {
    font-size: 11px;
  }
  .gallery-container {
    padding: 0 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .promo-heading {
    font-size: 24px;
  }
  .promo-logo-wrapper {
    width: 75px;
    height: 75px;
  }
  .promo-logo-wrapper img {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-section {
    padding: 50px 0;
  }
  .gallery-title {
    font-size: 28px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gallery-item {
    aspect-ratio: 4/3;
  }
  .promo-buttons {
    flex-direction: column;
    align-items: center;
  }
  .promo-btn-primary,
  .promo-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .gallery-view-all {
    padding: 12px 28px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  .promo-bg {
    padding: 30px 20px;
  }
  .promo-heading {
    font-size: 22px;
  }
  .promo-intro {
    font-size: 13px;
  }
}

@media screen and (max-width: 360px) {
  .gallery-title {
    font-size: 24px;
  }
  .gallery-subtitle {
    font-size: 10px;
    padding: 4px 12px;
    letter-spacing: 2px;
  }
  .gallery-view-all {
    font-size: 11px;
    padding: 10px 20px;
  }
  .promo-logo-wrapper {
    width: 60px;
    height: 60px;
  }
  .promo-logo-wrapper img {
    width: 35px;
    height: 35px;
  }
  .promo-heading {
    font-size: 20px;
  }
}

/* ============================================
   ACCESSIBILITY
============================================ */
@media (prefers-reduced-motion: reduce) {
  .gallery-item img,
  .gallery-item-overlay,
  .gallery-view-icon,
  .gallery-item-title,
  .gallery-promo-card,
  .promo-btn-primary,
  .promo-btn-secondary,
  .gallery-view-all {
    transition: none !important;
  }
  .gallery-item:hover .gallery-item-overlay {
    opacity: 0;
  }
  .gallery-item:hover .gallery-view-icon {
    transform: none;
  }
  .gallery-item:hover .gallery-item-title {
    transform: translateY(100%);
  }
}
/*=============================BLOG SECTION STYLING================================*/
.blog-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
  position: relative;
  overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
}

.blog-subtitle i {
  margin-right: 8px;
}

.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.15;
}

.blog-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-desc {
  font-size: 15px;
  color: #6a6a6a;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ============================================
           BLOG CONTAINER
        ============================================ */
.blog-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
           BLOG GRID
        ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ============================================
           BLOG CARD - PREMIUM DESIGN
        ============================================ */
.blog-card {
  background: #ffffff;
  border-radius: 50px 50px 50px 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ===== SHINE EFFECT ON HOVER ===== */
.blog-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(201, 168, 76, 0.03) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 5;
}

.blog-card:hover::before {
  transform: rotate(45deg) translateX(100%);
}

/* ===== GLASS SHIMMER ON HOVER ===== */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px 50px 50px 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(201, 168, 76, 0.03) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 4;
}

.blog-card:hover::after {
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

/* ============================================
           CARD IMAGE (HALF CARD)
        ============================================ */
.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
  border-radius: 50px 50px 0 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

/* ===== TOP LEFT BADGE (New/Popular) ===== */
.blog-badge-left {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.blog-badge-left.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.blog-badge-left.popular {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.blog-badge-left.trending {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.blog-badge-left.featured {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.blog-card:hover .blog-badge-left {
  transform: translateY(-2px) scale(1.05);
}

/* ===== TOP RIGHT BADGE (Category) ===== */
.blog-badge-right {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1a2a3a;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover .blog-badge-right {
  background: rgba(201, 168, 76, 0.15);
  border-color: #c9a84c;
  transform: translateY(-2px);
}

/* ============================================
           CARD BODY
        ============================================ */
.blog-card-body {
  padding: 22px 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===== TITLE ===== */
.blog-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: #c9a84c;
}

/* ===== DESCRIPTION (3 Lines with Ellipsis) ===== */
.blog-card-desc {
  font-size: 12px;
  color: #6a6a6a;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 72px;
  flex: 1;
  margin-bottom: 15px;
}

/* ============================================
           CARD FOOTER - DATE + ADMIN
        ============================================ */
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8a8a8a;
  font-weight: 500;
}

.blog-date i {
  color: #c9a84c;
  font-size: 13px;
}

.blog-admin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8a8a8a;
  font-weight: 500;
}

.blog-admin .admin-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 13px;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-admin .admin-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.blog-admin .admin-name {
  font-weight: 600;
  font-size: 10px;
  color: #1a2a3a;
}

/* ============================================
           READ MORE BUTTON
        ============================================ */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #c9a84c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  padding: 8px 0 4px;
  border-bottom: 1.5px solid transparent;
  width: fit-content;
}

.blog-read-more i {
  transition: all 0.3s ease;
  font-size: 11px;
}

.blog-read-more:hover {
  color: #1a2a3a;
  border-bottom-color: #c9a84c;
}

.blog-read-more:hover i {
  transform: translateX(6px);
}

/* ============================================
           VIEW ALL BUTTON
        ============================================ */
.blog-view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

.blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.25);
  border: none;
  cursor: pointer;
}

.blog-view-all i {
  transition: all 0.3s ease;
}

.blog-view-all:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

.blog-view-all:hover i {
  transform: translateX(6px);
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .blog-container {
    padding: 0 30px;
  }
  .blog-grid {
    gap: 20px;
  }
  .blog-title {
    font-size: 38px;
  }
  .blog-card-image {
    height: 190px;
  }
  .blog-card-body {
    padding: 18px 20px 20px;
  }
  .blog-card-title {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .blog-section {
    padding: 80px 0 60px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .blog-title {
    font-size: 34px;
  }
  .blog-card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0 40px;
  }
  .blog-container {
    padding: 0 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .blog-title {
    font-size: 30px;
  }
  .blog-desc {
    font-size: 14px;
  }
  .blog-card-image {
    height: 170px;
    border-radius: 40px 40px 0 0;
  }
  .blog-card {
    border-radius: 40px 40px 40px 0;
  }
  .blog-card-body {
    padding: 16px 16px 18px;
  }
  .blog-card-title {
    font-size: 17px;
  }
  .blog-card-desc {
    font-size: 13px;
    max-height: 60px;
  }
  .blog-badge-left,
  .blog-badge-right {
    font-size: 8px;
    padding: 4px 10px;
    top: 10px;
  }
  .blog-badge-left {
    left: 10px;
  }
  .blog-badge-right {
    right: 10px;
  }
  .blog-date,
  .blog-admin {
    font-size: 11px;
  }
  .blog-admin .admin-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .blog-subtitle {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .blog-view-all {
    padding: 12px 28px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 50px 0 30px;
  }
  .blog-container {
    padding: 0 15px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .blog-title {
    font-size: 26px;
  }
  .blog-desc {
    font-size: 13px;
  }
  .blog-card-image {
    height: 140px;
    border-radius: 30px 30px 0 0;
  }
  .blog-card {
    border-radius: 30px 30px 30px 0;
  }
  .blog-card-body {
    padding: 12px 12px 14px;
  }
  .blog-card-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .blog-card-desc {
    font-size: 12px;
    max-height: 48px;
    margin-bottom: 10px;
  }
  .blog-card-footer {
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .blog-date,
  .blog-admin {
    font-size: 10px;
  }
  .blog-admin .admin-icon {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
  .blog-read-more {
    font-size: 10px;
  }
  .blog-badge-left,
  .blog-badge-right {
    font-size: 7px;
    padding: 3px 8px;
    top: 8px;
    letter-spacing: 0.5px;
  }
  .blog-badge-left {
    left: 8px;
  }
  .blog-badge-right {
    right: 8px;
  }
  .blog-view-all {
    padding: 10px 20px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
  .blog-subtitle {
    font-size: 9px;
    padding: 3px 12px;
    letter-spacing: 2px;
  }
}

@media (max-width: 375px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .blog-card-image {
    height: 120px;
  }
  .blog-card-title {
    font-size: 13px;
  }
  .blog-card-desc {
    font-size: 11px;
    max-height: 40px;
  }
  .blog-date,
  .blog-admin {
    font-size: 9px;
  }
  .blog-admin .admin-icon {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }
  .blog-read-more {
    font-size: 9px;
  }
  .blog-card-body {
    padding: 10px 10px 12px;
  }
  .blog-badge-left,
  .blog-badge-right {
    font-size: 6px;
    padding: 2px 6px;
    top: 6px;
  }
  .blog-badge-left {
    left: 6px;
  }
  .blog-badge-right {
    right: 6px;
  }
}

@media (max-width: 330px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-card-image {
    height: 180px;
  }
  .blog-card-title {
    font-size: 17px;
  }
  .blog-card-desc {
    font-size: 13px;
    max-height: 60px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .blog-card::before,
  .blog-card::after,
  .blog-card-image img,
  .blog-card:hover,
  .blog-view-all,
  .blog-read-more {
    transition: none !important;
  }
  .blog-card:hover {
    transform: none !important;
  }
  .blog-card:hover .blog-card-image img {
    transform: none !important;
  }
  .blog-card::before {
    transform: none !important;
  }
}
/*===========================FAQ SECTION STYLING=====================*/
.faq-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
  position: relative;
  overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
}

.faq-subtitle i {
  margin-right: 8px;
}

.faq-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.15;
}

.faq-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-desc {
  font-size: 15px;
  color: #6a6a6a;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ============================================
           FAQ CONTAINER
        ============================================ */
.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
           FAQ GRID - 2 PER ROW
        ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ============================================
           FAQ ITEM - PREMIUM ACCORDION
        ============================================ */
.faq-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.12);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.06);
}

/* ===== FAQ QUESTION ===== */
.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  user-select: none;
}

.faq-question .faq-q-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-q-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  min-width: 30px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-q-number {
  color: #c9a84c;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a3a;
  transition: all 0.4s ease;
}

.faq-item.active .faq-q-text {
  color: #c9a84c;
}

/* ===== TOGGLE ICON ===== */
.faq-toggle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #c9a84c;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-toggle {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.2);
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  border-color: #c9a84c;
  color: #1a1a1a;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.faq-toggle i {
  transition: all 0.5s ease;
}

.faq-item.active .faq-toggle i {
  transform: rotate(90deg);
}

/* ============================================
           FAQ ANSWER
        ============================================ */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 28px 22px 28px;
}

.faq-answer p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.8;
  padding-top: 6px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.faq-answer p i {
  color: #c9a84c;
  margin-right: 6px;
}

/* ===== ACTIVE STATE ===== */
.faq-item.active {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
}

.faq-item.active .faq-question {
  padding-bottom: 18px;
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .faq-container {
    padding: 0 30px;
  }
  .faq-grid {
    gap: 20px;
  }
  .faq-title {
    font-size: 38px;
  }
  .faq-question {
    padding: 20px 24px;
  }
  .faq-q-text {
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 24px 20px 24px;
  }
}

@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0 60px;
  }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .faq-title {
    font-size: 34px;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-q-text {
    font-size: 14px;
  }
  .faq-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }
  .faq-answer {
    padding: 0 20px 18px 20px;
  }
  .faq-answer p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 40px;
  }
  .faq-container {
    padding: 0 20px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-title {
    font-size: 30px;
  }
  .faq-desc {
    font-size: 14px;
  }
  .faq-subtitle {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .faq-question {
    padding: 16px 18px;
  }
  .faq-q-text {
    font-size: 14px;
  }
  .faq-q-number {
    font-size: 18px;
    min-width: 24px;
  }
  .faq-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 13px;
  }
  .faq-answer {
    padding: 0 18px 16px 18px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .faq-item {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0 30px;
  }
  .faq-container {
    padding: 0 15px;
  }
  .faq-grid {
    gap: 14px;
  }
  .faq-title {
    font-size: 26px;
  }
  .faq-desc {
    font-size: 13px;
  }
  .faq-question {
    padding: 14px 16px;
    gap: 12px;
  }
  .faq-q-left {
    gap: 12px;
  }
  .faq-q-text {
    font-size: 13px;
  }
  .faq-q-number {
    font-size: 16px;
    min-width: 20px;
  }
  .faq-toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 12px;
  }
  .faq-answer {
    padding: 0 16px 14px 16px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .faq-item {
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .faq-title {
    font-size: 22px;
  }
  .faq-question {
    padding: 12px 14px;
  }
  .faq-q-text {
    font-size: 12px;
  }
  .faq-q-number {
    font-size: 14px;
    min-width: 18px;
  }
  .faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 11px;
  }
  .faq-answer p {
    font-size: 11px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .faq-answer-wrapper {
    transition: none !important;
  }
  .faq-toggle {
    transition: none !important;
  }
  .faq-toggle i {
    transition: none !important;
  }
  .faq-item.active .faq-toggle {
    transform: none !important;
  }
  .faq-item.active .faq-toggle i {
    transform: none !important;
  }
}

/*==============================CONTACT AND ENQUIRY FORM STYLING============================*/
.est-contact-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
  position: relative;
  overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.est-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.est-contact-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
}

.est-contact-subtitle i {
  margin-right: 8px;
}

.est-contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.15;
}

.est-contact-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
           CONTACT CARD - LEFT (UNIQUE CLASSES)
        ============================================ */
.est-contact-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.est-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.12);
}

.est-cc-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}

.est-cc-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 12px;
  line-height: 1.15;
}

.est-cc-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.est-cc-intro {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ===== CONTACT DETAILS ===== */
.est-contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.est-cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 16px;
  background: transparent;
}

.est-cd-item:hover {
  background: rgba(201, 168, 76, 0.04);
  transform: translateX(5px);
}

.est-cd-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c9a84c;
  transition: all 0.4s ease;
}

.est-cd-item:hover .est-cd-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.est-cd-text .est-cd-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.est-cd-text .est-cd-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a2a3a;
  transition: color 0.3s ease;
}

.est-cd-text .est-cd-value a {
  color: #1a2a3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.est-cd-text .est-cd-value a:hover {
  color: #c9a84c;
}

/* ============================================
           HOW IT WORKS - 5 STEPS (UNIQUE CLASSES)
        ============================================ */
.est-how-it-works {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.est-hiw-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a2a3a;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.est-hiw-title i {
  color: #c9a84c;
  font-size: 16px;
}

.est-hiw-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 6px;
}

.est-hiw-step {
  text-align: center;
  padding: 10px 6px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.04);
  transition: all 0.4s ease;
  position: relative;
}

.est-hiw-step:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.08);
}

.est-hiw-step .est-hiw-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 2px;
}

.est-hiw-step .est-hiw-icon {
  display: block;
  font-size: 14px;
  color: #c9a84c;
  margin-bottom: 2px;
}

.est-hiw-step .est-hiw-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.est-hiw-step .est-hiw-arrow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(201, 168, 76, 0.15);
  font-size: 10px;
}

.est-hiw-step:last-child .est-hiw-arrow {
  display: none;
}

.est-hiw-step.active {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
}

.est-hiw-step.active .est-hiw-number {
  color: #1a2a3a;
}

.est-hiw-step.active .est-hiw-icon {
  color: #1a2a3a;
}

/* ============================================
           ENQUIRY FORM - RIGHT (UNIQUE CLASSES)
        ============================================ */
.est-enquiry-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.est-enquiry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.12);
}

/* ===== WATERMARK LOGO ===== */
.est-form-watermark {
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.est-form-watermark i {
  font-size: 80px;
  color: #c9a84c;
}

/* ===== FORM HEADER ===== */
.est-fh-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 5px;
}

.est-fh-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
  line-height: 1.15;
}

.est-fh-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.est-fh-intro {
  font-size: 13px;
  color: #5a5a5a;
  margin-bottom: 20px;
}

/* ===== 5 STEPS INDICATOR ===== */
.est-form-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 25px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.est-fs-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #c9a84c;
  transition: all 0.3s ease;
  position: relative;
}

.est-fs-step.active {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  border-color: #c9a84c;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.est-fs-line {
  flex: 1;
  height: 2px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 2px;
}

.est-fs-line.active {
  background: linear-gradient(90deg, #c9a84c, #f5e56b);
}

/* ============================================
           FORM STYLES (UNIQUE CLASSES)
        ============================================ */
.est-enquiry-form {
  position: relative;
  z-index: 1;
}

.est-enquiry-form .est-form-group {
  margin-bottom: 18px;
}

.est-enquiry-form .est-form-label {
  font-size: 12px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.est-enquiry-form .est-form-label i {
  color: #c9a84c;
  font-size: 13px;
  width: 18px;
}

.est-enquiry-form .est-form-label .required {
  color: #ef4444;
  font-size: 14px;
}

.est-enquiry-form .est-form-control {
  border: 1.5px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 14px;
  color: #1a2a3a;
  background: #fafafa;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  box-shadow: none;
  width: 100%;
}

.est-enquiry-form .est-form-control:focus {
  border-color: #c9a84c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
  outline: none;
}

.est-enquiry-form .est-form-control::placeholder {
  color: #b0b0b0;
  font-size: 13px;
}

.est-enquiry-form .est-form-control.is-invalid {
  border-color: #ef4444;
}

.est-enquiry-form .est-form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.est-enquiry-form textarea.est-form-control {
  resize: vertical;
  min-height: 100px;
  max-height: 180px;
}

/* ===== ROW FIELDS ===== */
.est-row-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ===== SEND BUTTON ===== */
.est-form-send-btn {
  width: 100%;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 5px;
}

.est-form-send-btn i {
  transition: all 0.3s ease;
}

.est-form-send-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

.est-form-send-btn:hover i {
  transform: translateX(6px);
}

.est-form-send-btn:active {
  transform: scale(0.98);
}

/* ===== FORM FOOTER TEXT ===== */
.est-form-footer-text {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: #8a8a8a;
  font-weight: 500;
}

.est-form-footer-text .highlight {
  color: #c9a84c;
  font-weight: 700;
}

.est-form-footer-text i {
  color: #c9a84c;
  margin: 0 4px;
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .est-contact-section {
    padding: 80px 0 60px;
  }
  .est-contact-card {
    padding: 35px 28px;
  }
  .est-enquiry-card {
    padding: 35px 28px;
  }
  .est-cc-heading {
    font-size: 28px;
  }
  .est-fh-heading {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .est-contact-section {
    padding: 70px 0 50px;
  }
  .est-contact-title {
    font-size: 34px;
  }
  .est-contact-card,
  .est-enquiry-card {
    height: auto !important;
    padding: 30px 24px;
    border-radius: 24px;
  }
  .est-cc-heading {
    font-size: 26px;
  }
  .est-fh-heading {
    font-size: 22px;
  }
  .est-row-fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .est-cd-item {
    padding: 6px 8px;
  }
  .est-cd-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 16px;
  }
  .est-cd-text .est-cd-value {
    font-size: 14px;
  }
  .est-form-watermark i {
    font-size: 60px;
  }
  .est-hiw-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  .est-hiw-step .est-hiw-label {
    font-size: 8px;
  }
  .est-hiw-step .est-hiw-number {
    font-size: 16px;
  }
  .est-hiw-step .est-hiw-icon {
    font-size: 12px;
  }
  .est-hiw-step .est-hiw-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .est-contact-section {
    padding: 60px 0 40px;
  }
  .est-contact-title {
    font-size: 30px;
  }
  .est-contact-subtitle {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .est-contact-card,
  .est-enquiry-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  .est-cc-heading {
    font-size: 24px;
  }
  .est-cc-intro {
    font-size: 13px;
  }
  .est-fh-heading {
    font-size: 20px;
  }
  .est-fh-intro {
    font-size: 12px;
  }
  .est-enquiry-form .est-form-control {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 14px;
  }
  .est-enquiry-form .est-form-label {
    font-size: 11px;
  }
  .est-form-send-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  .est-cd-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 14px;
  }
  .est-cd-text .est-cd-value {
    font-size: 13px;
  }
  .est-cd-text .est-cd-label {
    font-size: 10px;
  }
  .est-fs-step {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .est-form-watermark i {
    font-size: 50px;
  }
  .est-form-watermark {
    top: 10px;
    right: 15px;
  }
  .est-form-footer-text {
    font-size: 11px;
  }
  .est-hiw-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  .est-hiw-step {
    padding: 8px 4px;
    border-radius: 10px;
  }
  .est-hiw-step .est-hiw-number {
    font-size: 14px;
  }
  .est-hiw-step .est-hiw-icon {
    font-size: 11px;
  }
  .est-hiw-step .est-hiw-label {
    font-size: 7px;
    letter-spacing: 0.2px;
  }
  .est-hiw-step .est-hiw-arrow {
    display: none;
  }
  .est-hiw-title {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .est-contact-section {
    padding: 50px 0 30px;
  }
  .est-contact-title {
    font-size: 26px;
  }
  .est-contact-card,
  .est-enquiry-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .est-cc-heading {
    font-size: 22px;
  }
  .est-fh-heading {
    font-size: 18px;
  }
  .est-row-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .est-enquiry-form .est-form-group {
    margin-bottom: 14px;
  }
  .est-enquiry-form .est-form-control {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 12px;
  }
  .est-form-send-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .est-cd-item {
    padding: 4px 6px;
    gap: 12px;
  }
  .est-cd-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }
  .est-cd-text .est-cd-value {
    font-size: 12px;
  }
  .est-cd-text .est-cd-label {
    font-size: 9px;
  }
  .est-fs-step {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }
  .est-form-steps {
    gap: 4px;
    padding: 8px 0;
    margin-bottom: 18px;
  }
  .est-form-watermark i {
    font-size: 40px;
  }
  .est-form-watermark {
    top: 8px;
    right: 10px;
  }
  .est-form-footer-text {
    font-size: 10px;
  }
  .est-fh-intro {
    font-size: 11px;
  }
  .est-hiw-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
  }
  .est-hiw-step {
    padding: 6px 3px;
    border-radius: 8px;
  }
  .est-hiw-step .est-hiw-number {
    font-size: 12px;
  }
  .est-hiw-step .est-hiw-icon {
    font-size: 10px;
  }
  .est-hiw-step .est-hiw-label {
    font-size: 6.5px;
    letter-spacing: 0px;
  }
  .est-hiw-title {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .est-hiw-step .est-hiw-arrow {
    display: none;
  }
  .est-hiw-step.active {
    background: rgba(201, 168, 76, 0.1);
  }
}

@media (max-width: 400px) {
  .est-hiw-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }
  .est-hiw-step {
    padding: 4px 2px;
    border-radius: 6px;
  }
  .est-hiw-step .est-hiw-number {
    font-size: 10px;
  }
  .est-hiw-step .est-hiw-icon {
    font-size: 8px;
  }
  .est-hiw-step .est-hiw-label {
    font-size: 5.5px;
  }
  .est-contact-title {
    font-size: 22px;
  }
  .est-cc-heading {
    font-size: 20px;
  }
  .est-fh-heading {
    font-size: 16px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .est-contact-card,
  .est-enquiry-card,
  .est-cd-item,
  .est-cd-item .est-cd-icon,
  .est-form-send-btn,
  .est-form-control {
    transition: none !important;
  }
  .est-contact-card:hover,
  .est-enquiry-card:hover {
    transform: none !important;
  }
  .est-form-send-btn:hover {
    transform: none !important;
  }
  .est-hiw-step:hover {
    transform: none !important;
  }
}
/*============================MOBILE APP STYLING===========================*/
.app-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 100%);
}

/* ===== TOP RIGHT GLOW SHAPE ===== */
.app-glow-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: appGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes appGlowPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* ===== SECOND GLOW SHAPE ===== */
.app-glow-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: appGlowPulse2 6s ease-in-out infinite alternate;
}

@keyframes appGlowPulse2 {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ============================================
           CONTAINER
        ============================================ */
.app-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.app-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ============================================
           LEFT - 40% APP IMAGE
        ============================================ */
.app-left {
  flex: 0 0 40%;
  max-width: 40%;
  position: relative;
}

.app-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ===== GLOW BACKGROUND ===== */
.app-image-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.05) 60%,
    transparent 80%
  );
  filter: blur(30px);
  animation: appGlow 3s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes appGlow {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ===== APP IMAGE CARD ===== */
.app-image-card {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(201, 168, 76, 0.1);
  transition: all 0.5s ease;
  max-width: 320px;
}

.app-image-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 100px rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.2);
}

.app-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== TOP LEFT BADGE ===== */
.app-badge-top-left {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: badgeFloat 3s ease-in-out infinite;
}

.app-badge-top-left:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.12);
}

.app-badge-top-left .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 12px;
}

.app-badge-top-left .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #1a2a3a;
  letter-spacing: 0.3px;
}

.app-badge-top-left .badge-text small {
  display: block;
  font-weight: 400;
  color: #8a8a8a;
  font-size: 8px;
  letter-spacing: 0.5px;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ===== TOP RIGHT BADGE ===== */
.app-badge-top-right {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: badgeFloat 3.5s ease-in-out infinite 0.5s;
}

.app-badge-top-right:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.12);
}

.app-badge-top-right .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

.app-badge-top-right .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #1a2a3a;
  letter-spacing: 0.3px;
}

.app-badge-top-right .badge-text small {
  display: block;
  font-weight: 400;
  color: #8a8a8a;
  font-size: 8px;
  letter-spacing: 0.5px;
}

/* ===== BOTTOM LEFT BADGE ===== */
.app-badge-bottom-left {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: badgeFloat 4s ease-in-out infinite 1s;
}

.app-badge-bottom-left:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.12);
}

.app-badge-bottom-left .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

.app-badge-bottom-left .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #1a2a3a;
  letter-spacing: 0.3px;
}

.app-badge-bottom-left .badge-text small {
  display: block;
  font-weight: 400;
  color: #8a8a8a;
  font-size: 8px;
  letter-spacing: 0.5px;
}

/* ===== BOTTOM RIGHT BADGE ===== */
.app-badge-bottom-right {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: badgeFloat 3.8s ease-in-out infinite 0.8s;
}

.app-badge-bottom-right:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.12);
}

.app-badge-bottom-right .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

.app-badge-bottom-right .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #1a2a3a;
  letter-spacing: 0.3px;
}

.app-badge-bottom-right .badge-text small {
  display: block;
  font-weight: 400;
  color: #8a8a8a;
  font-size: 8px;
  letter-spacing: 0.5px;
}

/* ===== BOTTOM APP TEXT ===== */
.app-bottom-text {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.app-bottom-text .abt-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.3s ease;
}

.app-bottom-text .abt-label:hover {
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.app-bottom-text .abt-label i {
  margin-right: 6px;
}

/* ============================================
           RIGHT - 60% CONTENT
        ============================================ */
.app-right {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 20px 0;
}

/* ===== TAGLINE ===== */
.app-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.app-tagline:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateX(5px);
}

.app-tagline i {
  margin-right: 8px;
}

/* ===== HEADING ===== */
.app-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.1;
  margin-bottom: 15px;
}

.app-heading .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== INTRO PARA ===== */
.app-intro {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 480px;
}

/* ============================================
           GET IT ON SECTION
        ============================================ */
.app-get-it {
  margin-bottom: 25px;
}

.app-get-it-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  display: block;
  margin-bottom: 12px;
}

.app-get-it-label i {
  color: #c9a84c;
  margin-right: 8px;
}

.app-get-it-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== GOOGLE PLAY STORE IMAGE ===== */
.app-store-btn {
  display: inline-block;
  transition: all 0.4s ease;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
}

.app-store-btn:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.12);
}

.app-store-btn img {
  height: 50px;
  width: auto;
  display: block;
}

/* ===== BARCODE IMAGE ===== */
.app-barcode-btn {
  display: inline-block;
  transition: all 0.4s ease;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.08);
  padding: 6px 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.app-barcode-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

.app-barcode-btn img {
  height: 100px;
  width: auto;
  display: block;
}

/* ============================================
           KEY POINTS
        ============================================ */
.app-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 5px;
}

.app-key-point {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 30px;
  background: transparent;
}

.app-key-point:hover {
  background: rgba(201, 168, 76, 0.04);
  transform: translateX(4px);
}

.app-key-point .kp-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 14px;
  transition: all 0.4s ease;
}

.app-key-point:hover .kp-circle {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.app-key-point .kp-text {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .app-container {
    padding: 0 30px;
  }
  .app-row {
    gap: 40px;
  }
  .app-heading {
    font-size: 38px;
  }
  .app-image-card {
    max-width: 280px;
  }
  .app-glow-shape {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -60px;
  }
}

@media (max-width: 992px) {
  .app-section {
    padding: 80px 0 60px;
  }
  .app-row {
    flex-direction: column;
    gap: 50px;
  }
  .app-left {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .app-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
  .app-heading {
    font-size: 36px;
  }
  .app-intro {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .app-key-points {
    justify-content: center;
  }
  .app-get-it-row {
    justify-content: center;
  }
  .app-image-card {
    max-width: 260px;
  }
  .app-badge-top-left,
  .app-badge-top-right,
  .app-badge-bottom-left,
  .app-badge-bottom-right {
    padding: 6px 12px;
  }
  .app-badge-top-left .badge-text,
  .app-badge-top-right .badge-text,
  .app-badge-bottom-left .badge-text,
  .app-badge-bottom-right .badge-text {
    font-size: 9px;
  }
  .app-glow-shape {
    width: 250px;
    height: 250px;
    top: -40px;
    right: -40px;
  }
  .app-glow-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
  }
}

@media (max-width: 768px) {
  .app-section {
    padding: 60px 0 40px;
  }
  .app-container {
    padding: 0 20px;
  }
  .app-heading {
    font-size: 32px;
  }
  .app-intro {
    font-size: 14px;
  }
  .app-image-card {
    max-width: 220px;
    border-radius: 30px;
  }
  .app-tagline {
    font-size: 10px;
    padding: 4px 14px;
    letter-spacing: 3px;
  }
  .app-badge-top-left,
  .app-badge-top-right,
  .app-badge-bottom-left,
  .app-badge-bottom-right {
    padding: 4px 10px;
    top: 15px;
    left: 10px;
    right: auto;
    bottom: auto;
  }
  .app-badge-top-right {
    top: 15px;
    right: 10px;
    left: auto;
  }
  .app-badge-bottom-left {
    bottom: 15px;
    left: 10px;
    top: auto;
  }
  .app-badge-bottom-right {
    bottom: 15px;
    right: 10px;
    top: auto;
    left: auto;
  }
  .app-badge-top-left .badge-icon,
  .app-badge-top-right .badge-icon,
  .app-badge-bottom-left .badge-icon,
  .app-badge-bottom-right .badge-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .app-badge-top-left .badge-text,
  .app-badge-top-right .badge-text,
  .app-badge-bottom-left .badge-text,
  .app-badge-bottom-right .badge-text {
    font-size: 8px;
  }
  .app-badge-top-left .badge-text small,
  .app-badge-top-right .badge-text small,
  .app-badge-bottom-left .badge-text small,
  .app-badge-bottom-right .badge-text small {
    font-size: 7px;
  }
  .app-store-btn img,
  .app-barcode-btn img {
    height: 40px;
  }
  .app-key-point .kp-circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 12px;
  }
  .app-key-point .kp-text {
    font-size: 12px;
  }
  .app-get-it-label {
    font-size: 12px;
  }
  .app-bottom-text .abt-label {
    font-size: 10px;
    padding: 4px 14px;
  }
  .app-glow-shape {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
  }
  .app-glow-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -40px;
  }
  .app-image-glow {
    width: 95%;
    height: 95%;
  }
}

@media (max-width: 480px) {
  .app-section {
    padding: 50px 0 30px;
  }
  .app-container {
    padding: 0 15px;
  }
  .app-heading {
    font-size: 28px;
  }
  .app-intro {
    font-size: 12px;
  }
  .app-image-card {
    max-width: 180px;
    border-radius: 24px;
  }
  .app-row {
    gap: 35px;
  }
  .app-key-points {
    gap: 10px 15px;
  }
  .app-key-point {
    padding: 4px 8px;
  }
  .app-key-point .kp-circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 10px;
  }
  .app-key-point .kp-text {
    font-size: 11px;
  }
  .app-get-it-row {
    gap: 12px;
  }
  .app-store-btn img,
  .app-barcode-btn img {
    height: 34px;
  }
  .app-badge-top-left,
  .app-badge-top-right,
  .app-badge-bottom-left,
  .app-badge-bottom-right {
    padding: 3px 8px;
    top: 10px;
    left: 6px;
  }
  .app-badge-top-right {
    top: 10px;
    right: 6px;
    left: auto;
  }
  .app-badge-bottom-left {
    bottom: 10px;
    left: 6px;
    top: auto;
  }
  .app-badge-bottom-right {
    bottom: 10px;
    right: 6px;
    top: auto;
    left: auto;
  }
  .app-badge-top-left .badge-icon,
  .app-badge-top-right .badge-icon,
  .app-badge-bottom-left .badge-icon,
  .app-badge-bottom-right .badge-icon {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }
  .app-badge-top-left .badge-text,
  .app-badge-top-right .badge-text,
  .app-badge-bottom-left .badge-text,
  .app-badge-bottom-right .badge-text {
    font-size: 7px;
  }
  .app-badge-top-left .badge-text small,
  .app-badge-top-right .badge-text small,
  .app-badge-bottom-left .badge-text small,
  .app-badge-bottom-right .badge-text small {
    font-size: 6px;
  }
  .app-bottom-text .abt-label {
    font-size: 9px;
    padding: 3px 12px;
  }
  .app-glow-shape {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
  }
  .app-glow-shape-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
  }
  .app-image-glow {
    filter: blur(20px);
  }
}

@media (max-width: 360px) {
  .app-heading {
    font-size: 24px;
  }
  .app-image-card {
    max-width: 150px;
    border-radius: 20px;
  }

  .app-key-points {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .app-key-point {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .app-get-it-row {
    flex-direction: column;
    align-items: center;
  }
  .app-store-btn img,
  .app-barcode-btn img {
    height: 30px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .app-glow-shape,
  .app-glow-shape-2,
  .app-image-glow,
  .app-badge-top-left,
  .app-badge-top-right,
  .app-badge-bottom-left,
  .app-badge-bottom-right {
    animation: none !important;
  }
  .app-image-card:hover,
  .app-store-btn:hover,
  .app-barcode-btn:hover {
    transform: none !important;
  }
}
/*==============================FOOTER STYLING========================*/
.footer-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f0e8 40%, #ede7db 100%);
  padding-top: 60px;
  min-height: 700px;
}

/* ============================================
           ANIMATED SHAPES - DARK GOLD COLORS (VISIBLE)
        ============================================ */
.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  opacity: 0.15;
  animation: footerShapeFloat 8s ease-in-out infinite alternate;
}

.footer-shape:nth-child(1) {
  top: 5%;
  left: 5%;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
}
.footer-shape:nth-child(2) {
  top: 12%;
  right: 8%;
  width: 70px;
  height: 70px;
  animation-delay: 1.5s;
}
.footer-shape:nth-child(3) {
  bottom: 20%;
  left: 6%;
  width: 80px;
  height: 80px;
  animation-delay: 3s;
}
.footer-shape:nth-child(4) {
  bottom: 25%;
  right: 4%;
  width: 60px;
  height: 60px;
  animation-delay: 2s;
}
.footer-shape:nth-child(5) {
  top: 35%;
  left: 45%;
  width: 50px;
  height: 50px;
  animation-delay: 4s;
}
.footer-shape:nth-child(6) {
  top: 55%;
  right: 18%;
  width: 55px;
  height: 55px;
  animation-delay: 0.8s;
}
.footer-shape:nth-child(7) {
  bottom: 10%;
  left: 22%;
  width: 45px;
  height: 45px;
  animation-delay: 2.5s;
}
.footer-shape:nth-child(8) {
  top: 22%;
  left: 18%;
  width: 65px;
  height: 65px;
  animation-delay: 3.5s;
}

@keyframes footerShapeFloat {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(15px, -20px) rotate(10deg) scale(1.05);
  }
  66% {
    transform: translate(-10px, 15px) rotate(-5deg) scale(0.95);
  }
  100% {
    transform: translate(10px, -10px) rotate(5deg) scale(1.02);
  }
}

/* ============================================
           ANIMATED PARTICLES
        ============================================ */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #a67c1e;
  border-radius: 50%;
  opacity: 0;
  animation: footerParticleFloat 10s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(166, 124, 30, 0.4);
}

.footer-particle:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.footer-particle:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1.5s;
}
.footer-particle:nth-child(3) {
  top: 50%;
  left: 5%;
  animation-delay: 3s;
}
.footer-particle:nth-child(4) {
  bottom: 30%;
  right: 8%;
  animation-delay: 0.8s;
}
.footer-particle:nth-child(5) {
  bottom: 15%;
  left: 20%;
  animation-delay: 2.2s;
}
.footer-particle:nth-child(6) {
  top: 70%;
  right: 25%;
  animation-delay: 4s;
}
.footer-particle:nth-child(7) {
  top: 35%;
  left: 30%;
  animation-delay: 1s;
}
.footer-particle:nth-child(8) {
  bottom: 45%;
  right: 35%;
  animation-delay: 3.5s;
}
.footer-particle:nth-child(9) {
  top: 5%;
  left: 45%;
  animation-delay: 2s;
}
.footer-particle:nth-child(10) {
  bottom: 10%;
  right: 45%;
  animation-delay: 1.2s;
}

@keyframes footerParticleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  30% {
    opacity: 0.9;
    transform: translateY(-40px) scale(1);
  }
  60% {
    opacity: 0.5;
    transform: translateY(-80px) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0);
  }
}

/* ============================================
           HOUSE PNG - BIG SIZE WITH SPACING
        ============================================ */
.footer-house-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  /* opacity: 0.08; */
}

.footer-house-icon img {
  height: 440px;
  width: auto;
  display: block;
  margin-bottom: 72px;
  /* margin-right: 20px; */
}

/* ============================================
           FOOTER STRIP - TOP
        ============================================ */
.footer-strip {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #1a2a3a, #2a3a4a);
  padding: 18px 40px;
  border-radius: 16px;
  margin: 0 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.footer-strip-left h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.footer-strip-left h4 .gold-text {
  color: #c9a84c;
}

.footer-strip-left p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.footer-strip-btn {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.footer-strip-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.footer-strip-btn i {
  transition: all 0.3s ease;
}

.footer-strip-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
           BIG CAPITAL HEADING
        ============================================ */
.footer-heading-full {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-heading-full h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  color: #1a2a3a;
  letter-spacing: 8px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-heading-full h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a84c,
    #f5e56b,
    #c9a84c,
    transparent
  );
}

.footer-heading-full h2 .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
           FOOTER CONTAINER
        ============================================ */
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 0 40px;
  position: relative;
  z-index: 2;
}

/* ============================================
           FOOTER GRID - 4 COLUMNS (MAP REMOVED)
        ============================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-right: 120px;
  /* Right padding for house image space */
}

/* ============================================
           COLUMN 1 - LOGO & ABOUT
        ============================================ */
.footer-col-logo .footer-logo {
  margin-bottom: 15px;
}

.footer-col-logo .footer-logo img {
  max-height: 55px;
  width: auto;
}

.footer-col-logo .footer-about {
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2a3a;
  font-size: 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

/* ============================================
           COLUMN 2 & 3 - LINKS
        ============================================ */
.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #f5e56b);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: #5a5a5a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links li a i {
  font-size: 10px;
  color: #c9a84c;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.footer-links li a:hover {
  color: #c9a84c;
  transform: translateX(6px);
}

.footer-links li a:hover i {
  opacity: 1;
  transform: translateX(3px);
}

/* ============================================
           COLUMN 4 - CONTACT (RIGHT MARGIN ADDED)
        ============================================ */
.footer-col:last-child {
  margin-right: 40px;
  /* Space between contact and house image */
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 12px;
}

.footer-contact-item:hover {
  background: rgba(201, 168, 76, 0.04);
  transform: translateX(4px);
}

.footer-contact-item .fc-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 14px;
  transition: all 0.4s ease;
}

.footer-contact-item:hover .fc-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.footer-contact-item .fc-text {
  font-size: 13px;
  color: #5a5a5a;
}

.footer-contact-item .fc-text a {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item .fc-text a:hover {
  color: #c9a84c;
}

/* ============================================
           PLAY STORE & PAYMENT IMAGES
        ============================================ */
.footer-store-section {
  text-align: center;
  padding: 25px 0 20px;
  position: relative;
  z-index: 2;
  padding-right: 120px;
  /* Right padding for house image */
}

.footer-store-section .store-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-store-section .store-row img {
  height: 40px;
  width: auto;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.footer-store-section .store-row img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ============================================
           THIN DIVIDER
        ============================================ */
.footer-divider {
  position: relative;
  height: 1px;
  margin: 0 40px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.05),
    transparent
  );
  z-index: 2;
}

.footer-divider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.08) 15%,
    rgba(201, 168, 76, 0.15) 40%,
    #c9a84c 50%,
    rgba(201, 168, 76, 0.15) 60%,
    rgba(201, 168, 76, 0.08) 85%,
    transparent 100%
  );
}

/* ============================================
           FOOTER BOTTOM - GLASS EFFECT
        ============================================ */
.footer-bottom {
  background: rgba(26, 42, 108, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
  padding: 20px 40px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 2;
  margin: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 140px;
  /* Right padding for house image */
}

.footer-bottom-left {
  font-size: 13px;
  color: #5a5a5a;
}

.footer-bottom-left .highlight {
  color: #c9a84c;
  font-weight: 600;
}

.footer-bottom-center {
  font-size: 13px;
  color: #5a5a5a;
}

.footer-bottom-center a {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-bottom-center a:hover {
  color: #c9a84c;
}

.footer-bottom-center .nvw {
  color: #c9a84c;
  font-weight: 700;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-right a {
  font-size: 13px;
  color: #5a5a5a;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-right a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #c9a84c;
}

.footer-bottom-right a:hover::after {
  width: 100%;
}

.footer-bottom-right .divider-dot {
  color: rgba(201, 168, 76, 0.2);
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 25px;
    padding-right: 80px;
  }
  .footer-strip {
    margin: 0 30px 40px;
    padding: 16px 30px;
  }
  .footer-heading-full h2 {
    font-size: 46px;
    letter-spacing: 6px;
  }
  .footer-bottom {
    padding: 18px 30px 22px;
    padding-right: 100px;
  }
  .footer-house-icon img {
    height: 400px;
    margin-bottom: 80px;
  }
  .footer-col:last-child {
    margin-right: 20px;
  }
  .footer-store-section {
    padding-right: 80px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    padding-right: 60px;
  }
  .footer-col-logo {
    grid-column: span 1;
  }
  .footer-strip {
    margin: 0 20px 35px;
    padding: 14px 24px;
    flex-direction: column;
    text-align: center;
  }
  .footer-heading-full h2 {
    font-size: 38px;
    letter-spacing: 5px;
  }
  .footer-strip-left h4 {
    font-size: 20px;
  }
  .footer-bottom {
    padding: 15px 20px 18px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-right: 60px;
  }
  .footer-bottom-right {
    justify-content: center;
  }
  .footer-house-icon img {
    height: 320px;
    margin-bottom: 60px;
    margin-right: 10px;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-shape {
    opacity: 0.1;
  }
  .footer-col:last-child {
    margin-right: 10px;
  }
  .footer-store-section {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-right: 40px;
  }
  .footer-col-logo {
    grid-column: span 2;
  }
  .footer-col-logo .footer-about {
    max-width: 100%;
  }
  .footer-strip {
    margin: 0 15px 30px;
    padding: 12px 20px;
  }
  .footer-heading-full h2 {
    font-size: 30px;
    letter-spacing: 4px;
  }
  .footer-heading-full h2::after {
    width: 40%;
  }
  .footer-strip-left h4 {
    font-size: 18px;
  }
  .footer-strip-btn {
    padding: 10px 22px;
    font-size: 12px;
  }
  .footer-bottom {
    padding: 12px 15px 15px;
    border-radius: 16px 16px 0 0;
    padding-right: 40px;
  }
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    font-size: 12px;
  }
  .footer-house-icon img {
    height: 250px;
    margin-bottom: 50px;
    margin-right: 5px;
  }
  .footer-container {
    padding: 0 15px;
  }
  .footer-store-section .store-row img {
    height: 32px;
  }
  .footer-shape {
    opacity: 0.08;
  }
  .footer-particle {
    display: none;
  }
  .footer-col:last-child {
    margin-right: 5px;
  }
  .footer-store-section {
    padding-right: 40px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-right: 20px;
  }
  .footer-col-logo {
    grid-column: span 1;
  }
  .footer-strip {
    margin: 0 10px 25px;
    padding: 10px 16px;
    border-radius: 12px;
  }
  .footer-heading-full h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .footer-heading-full {
    margin-bottom: 35px;
  }
  .footer-strip-left h4 {
    font-size: 16px;
  }
  .footer-strip-left p {
    font-size: 12px;
  }
  .footer-strip-btn {
    padding: 8px 18px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
  .footer-col-title {
    font-size: 15px;
  }
  .footer-links li a {
    font-size: 12px;
  }
  .footer-contact-item .fc-text {
    font-size: 12px;
  }
  .footer-bottom {
    padding: 10px 10px 12px;
    gap: 8px;
    border-radius: 12px 12px 0 0;
    padding-right: 20px;
  }
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    font-size: 11px;
    width: 100%;
    text-align: center;
  }
  .footer-bottom-right {
    justify-content: center;
    gap: 12px;
  }
  .footer-house-icon img {
    height: 180px;
    margin-bottom: 40px;
    margin-right: 0px;
  }
  .footer-container {
    padding: 0 10px;
  }
  .footer-store-section .store-row img {
    height: 28px;
  }
  .footer-store-section {
    padding: 15px 0 12px;
    padding-right: 20px;
  }
  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .footer-shape {
    opacity: 0.05;
    display: none;
  }
  .footer-house-icon {
    opacity: 0.05;
  }
  .footer-col:last-child {
    margin-right: 0px;
  }
  .footer-grid {
    padding-right: 0px;
  }
  .footer-bottom {
    padding-right: 10px;
  }
  .footer-store-section {
    padding-right: 0px;
  }
}

@media (max-width: 360px) {
  .footer-heading-full h2 {
    font-size: 20px;
    letter-spacing: 2px;
  }
  .footer-strip-left h4 {
    font-size: 14px;
  }
  .footer-strip-btn {
    font-size: 10px;
    padding: 6px 14px;
  }
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    font-size: 10px;
  }
  .footer-house-icon img {
    height: 140px;
    margin-bottom: 30px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .footer-shape,
  .footer-particle {
    animation: none !important;
    opacity: 0.08 !important;
  }
  .footer-strip-btn:hover,
  .footer-social a:hover,
  .footer-links li a:hover,
  .footer-contact-item:hover {
    transform: none !important;
  }
  .footer-store-section .store-row img:hover {
    transform: none !important;
  }
}
/* ============================================
           ASSOCIATE PORTAL
        ============================================ */
.associate-portal {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* ===== SHAPES ===== */
.portal-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.portal-shape {
  position: absolute;
  opacity: 0.04;
  animation: portalShapeFloat 10s ease-in-out infinite alternate;
}

.portal-shape:nth-child(1) {
  top: 5%;
  right: 5%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}
.portal-shape:nth-child(2) {
  bottom: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  animation-delay: 2s;
}
.portal-shape:nth-child(3) {
  top: 40%;
  left: 50%;
  width: 80px;
  height: 80px;
  animation-delay: 4s;
}

@keyframes portalShapeFloat {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(20px, -20px) rotate(10deg) scale(1.05);
  }
}

/* ============================================
           CONTAINER
        ============================================ */
.portal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.portal-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* ============================================
           LEFT SIDE - 50%
        ============================================ */
.portal-left {
  flex: 0 0 50%;
  max-width: 50%;
}

/* ===== SIGN IN BOX ===== */
.signin-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.signin-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
}

.signin-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.signin-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1),
    rgba(245, 229, 107, 0.1)
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c9a84c;
  transition: all 0.4s ease;
}

.signin-box:hover .signin-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.signin-text h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 2px;
}

.signin-text p {
  font-size: 12px;
  color: #6a6a6a;
  margin: 0;
}

.signin-text p .highlight {
  color: #c9a84c;
  font-weight: 600;
}

.signin-btn {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
  border: none;
  cursor: pointer;
}

.signin-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.signin-btn i {
  transition: all 0.3s ease;
}

.signin-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
           REGISTRATION FORM
        ============================================ */
.register-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 35px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s ease;
}

.register-form-wrapper:hover {
  border-color: rgba(201, 168, 76, 0.1);
  box-shadow: 0 15px 50px rgba(201, 168, 76, 0.05);
}

/* Form Header */
.form-header-custom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.form-header-custom .fh-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 20px;
}

.form-header-custom .fh-text h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 2px;
}

.form-header-custom .fh-text p {
  font-size: 13px;
  color: #6a6a6a;
  margin: 0;
}

/* Form Section Heading */
.form-section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 20px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-heading i {
  color: #c9a84c;
  font-size: 16px;
}

/* Form Groups */
.associate-form .form-group {
  margin-bottom: 16px;
}

.associate-form .form-label {
  font-size: 12px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.associate-form .form-label i {
  color: #c9a84c;
  font-size: 13px;
  width: 18px;
}

.associate-form .form-label .required {
  color: #ef4444;
  font-size: 14px;
}

.associate-form .form-control,
.associate-form .form-select {
  border: 1.5px solid rgba(201, 168, 76, 0.1);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 13px;
  color: #1a2a3a;
  background: #fafafa;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  box-shadow: none;
}

.associate-form .form-control:focus,
.associate-form .form-select:focus {
  border-color: #c9a84c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

.associate-form .form-control::placeholder {
  color: #b0b0b0;
  font-size: 12px;
}

.associate-form .form-control.is-invalid {
  border-color: #ef4444;
}

.associate-form .form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.associate-form textarea.form-control {
  resize: vertical;
  min-height: 60px;
  max-height: 120px;
}

/* Date Input Styling */
.associate-form input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.associate-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(5) hue-rotate(10deg);
  cursor: pointer;
}

/* File Input Styling */
.associate-form input[type="file"] {
  padding: 8px 12px;
  cursor: pointer;
}

.associate-form input[type="file"]::file-selector-button {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  border: none;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 12px;
}

.associate-form input[type="file"]::file-selector-button:hover {
  transform: scale(1.02);
}

/* Submit Button */
.associate-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 10px;
}

.associate-submit-btn i {
  transition: all 0.3s ease;
}

.associate-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

.associate-submit-btn:hover i {
  transform: translateX(6px);
}

.associate-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== CUSTOMER SUPPORT ===== */
.customer-support {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.customer-support .cs-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.customer-support .cs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 30px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.customer-support .cs-item:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateX(3px);
}

.customer-support .cs-item .cs-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
}

.customer-support .cs-item .cs-icon.call {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.customer-support .cs-item .cs-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #34d399);
}

.customer-support .cs-item a {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.customer-support .cs-item a:hover {
  color: #c9a84c;
}

.customer-support .cs-playstore img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.customer-support .cs-playstore img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ============================================
           RIGHT SIDE - 50%
        ============================================ */
.portal-right {
  flex: 0 0 50%;
  max-width: 50%;
  position: sticky;
  top: 30px;
}

/* ===== HOUSE PNG ===== */
.portal-house {
  text-align: center;
  margin-bottom: 30px;
}

.portal-house img {
  max-height: 800px;
  height: 100%;
  border-radius: 10px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.08));
  transition: all 0.6s ease;
}

.portal-house img:hover {
  transform: scale(1.02);
}

/* ===== BENEFITS CARDS ===== */
.benefits-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 700;
  color: #1a2a3a;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.benefits-title .gold-text {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.benefit-card .bc-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 14px;
  transition: all 0.4s ease;
}

.benefit-card:hover .bc-icon {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  transform: scale(1.05);
}

.benefit-card .bc-text h6 {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 2px;
}

.benefit-card .bc-text p {
  font-size: 12px;
  color: #6a6a6a;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
           MODAL - 2 STEP
        ============================================ */
.modal-content-custom {
  border-radius: 24px;
  border: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.modal-header-custom {
  padding: 20px 30px;
  background: linear-gradient(135deg, #faf8f4, #f5f0e8);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-custom .mh-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.modal-header-custom .mh-left .back-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
  color: #1a2a3a;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-custom .mh-left .back-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  transform: scale(1.05);
}

.modal-header-custom .mh-left h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
}

.modal-header-custom .mh-right {
  font-size: 12px;
  color: #6a6a6a;
}

.modal-body-custom {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Summary Table */
.summary-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

.summary-table td {
  padding: 6px 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.summary-table .label {
  color: #6a6a6a;
  font-weight: 500;
  width: 35%;
}

.summary-table .value {
  color: #1a2a3a;
  font-weight: 600;
}

/* Agree Checkbox */
.agree-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(201, 168, 76, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.agree-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #c9a84c;
  cursor: pointer;
}

.agree-check label {
  font-size: 13px;
  color: #1a2a3a;
  cursor: pointer;
  margin: 0;
}

.agree-check label .highlight {
  color: #c9a84c;
  font-weight: 600;
}

/* Step 2 - Success */
.success-step {
  text-align: center;
  padding: 20px 0;
}

.success-step .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 36px;
  color: #10b981;
  animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.success-step h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.success-step p {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 5px;
}

.success-step .sub-box {
  background: rgba(201, 168, 76, 0.04);
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 15px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  text-align: left;
}

.success-step .sub-box .sb-item {
  font-size: 13px;
  color: #1a2a3a;
}

.success-step .sub-box .sb-item .sb-label {
  color: #6a6a6a;
  font-weight: 500;
  display: block;
  font-size: 11px;
}

.success-step .sub-box .sb-item .sb-value {
  font-weight: 600;
}

.success-step .success-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.success-step .success-btns .btn-home {
  background: linear-gradient(135deg, #c9a84c, #f5e56b);
  color: #1a1a1a;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  text-decoration: none;
  cursor: pointer;
}

.success-step .success-btns .btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.success-step .success-btns .btn-home i {
  transition: all 0.3s ease;
}

.success-step .success-btns .btn-home:hover i {
  transform: translateX(5px);
}

/* ============================================
           RESPONSIVE
        ============================================ */

@media (max-width: 1200px) {
  .portal-container {
    padding: 0 30px;
  }
  .portal-row {
    gap: 35px;
  }
  .portal-house img {
    max-height: 260px;
  }
  .benefits-grid {
    gap: 12px;
  }
  .benefit-card {
    padding: 16px 14px;
  }
}

@media (max-width: 992px) {
  .portal-row {
    flex-direction: column;
  }
  .portal-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .portal-right {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    top: 0;
  }
  .portal-house img {
    max-height: 200px;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .register-form-wrapper {
    padding: 25px 25px 30px;
  }
  .signin-box {
    padding: 24px 28px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .modal-body-custom {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .portal-container {
    padding: 0 20px;
  }
  .signin-box {
    flex-direction: column;
    text-align: center;
  }
  .signin-left {
    flex-direction: column;
    text-align: center;
  }
  .signin-btn {
    width: 100%;
    justify-content: center;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .benefit-card {
    padding: 14px 12px;
  }
  .benefit-card .bc-text h6 {
    font-size: 13px;
  }
  .benefit-card .bc-text p {
    font-size: 11px;
  }
  .register-form-wrapper {
    padding: 20px 18px 25px;
    border-radius: 18px;
  }
  .form-header-custom .fh-text h4 {
    font-size: 19px;
  }
  .success-step .sub-box {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .customer-support {
    flex-direction: column;
    align-items: stretch;
  }
  .customer-support .cs-left {
    justify-content: center;
  }
  .customer-support .cs-playstore {
    text-align: center;
  }
  .portal-house img {
    max-height: 160px;
  }
  .modal-header-custom {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .modal-header-custom .mh-left h5 {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .portal-container {
    padding: 0 12px;
  }
  .portal-left {
    padding: 0;
  }
  .register-form-wrapper {
    padding: 16px 14px 20px;
    border-radius: 14px;
  }
  .signin-box {
    padding: 18px 16px;
    border-radius: 18px;
  }
  .signin-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 18px;
  }
  .signin-text h5 {
    font-size: 17px;
  }
  .signin-text p {
    font-size: 11px;
  }
  .form-header-custom {
    flex-direction: column;
    text-align: center;
  }
  .form-header-custom .fh-text h4 {
    font-size: 17px;
  }
  .form-header-custom .fh-text p {
    font-size: 12px;
  }
  .form-section-heading {
    font-size: 16px;
  }
  .associate-form .form-control,
  .associate-form .form-select {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 12px;
  }
  .associate-form .form-label {
    font-size: 11px;
  }
  .associate-submit-btn {
    font-size: 12px;
    padding: 12px 24px;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .benefit-card {
    padding: 12px 10px;
    border-radius: 14px;
  }
  .benefit-card .bc-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 12px;
  }
  .benefit-card .bc-text h6 {
    font-size: 12px;
  }
  .benefit-card .bc-text p {
    font-size: 10px;
  }
  .benefits-title {
    font-size: 22px;
  }
  .portal-house img {
    max-height: 130px;
  }
  .customer-support .cs-item {
    padding: 4px 10px;
  }
  .customer-support .cs-item a {
    font-size: 12px;
  }
  .customer-support .cs-item .cs-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .customer-support .cs-playstore img {
    height: 28px;
  }
  .modal-body-custom {
    padding: 14px;
  }
  .summary-table {
    font-size: 12px;
  }
  .success-step .success-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .success-step h4 {
    font-size: 22px;
  }
  .success-step .success-btns .btn-home {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .portal-house img {
    max-height: 100px;
  }
  .register-form-wrapper {
    padding: 12px 10px 16px;
  }
}

/* ============================================
           ACCESSIBILITY
        ============================================ */
@media (prefers-reduced-motion: reduce) {
  .portal-shape {
    animation: none !important;
  }
  .signin-box:hover,
  .benefit-card:hover,
  .register-form-wrapper:hover,
  .associate-submit-btn:hover,
  .signin-btn:hover {
    transform: none !important;
  }
  .success-step .success-icon {
    animation: none !important;
  }
}
