* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

:root {
  --primary: #0091ff;
  --secondary: #ff006e;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --section-pad: 80px;
  --border-radius: 8px;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 70px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 40px;
  }
}

/* ===============================
   UTILITIES
   =============================== */
/* GLOBAL SECTION SPACING */
.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.text-center {
  text-align: center;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.common-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.common-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 145, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 145, 255, 0.35);
}

.btn-secondary {
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 145, 255, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
}

/* Animated Background Shapes */
.bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.shape1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, #0091ff, #ff006e);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.shape2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #ff006e, #0091ff);
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

.shape3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #0091ff, #ff006e);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Navigation styles moved to assets/css/components/navbar.css */

/* Hero Section Styles moved to assets/css/pages/index/index.css */

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 45%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-text {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(0, 145, 255, 0.3);
  border-radius: 8px;
  margin: 0 auto;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #0091ff;
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

/* Listings Section */
.listings-section {
  background: #ffffff;
  position: relative;
}

.listings-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.listing-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 145, 255, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out both;
  border: 1px solid rgba(0, 145, 255, 0.1);
}

.listing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.listing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.listing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.listing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 145, 255, 0.15);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.badge {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.badge.featured {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
}

.card-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.listing-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.icon-btn:hover {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  transform: scale(1.1);
}

.icon-btn:hover span {
  filter: brightness(0) invert(1);
}

.card-content {
  padding: 1.8rem;
}

.card-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 145, 255, 0.08);
  color: #0091ff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-location {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: rgba(0, 145, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.area-icon {
  font-size: 1.2rem;
}

.area-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.card-actions {
  display: flex;
  gap: 0.8rem;
}

.action-btn {
  flex: 1;
  padding: 0.8rem;
  background: white;
  border: 2px solid rgba(0, 145, 255, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0091ff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.action-btn:hover {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Service Areas Section */
.service-areas-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  position: relative;
  overflow: hidden;
}

.service-areas-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 145, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 0, 110, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.service-areas-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

/* =========================================
   Unified Section Headings (lk-sh-)
   ========================================= */
.lk-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.lk-sh-title {
  font-size: 42px;
  margin-top: 10px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.lk-sh-accent {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lk-sh-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px auto;
}

.lk-sh-divider .lk-sh-line {
  height: 2px;
  width: 50px;
  background: linear-gradient(90deg, #0091ff, #ff006e);
}

.lk-sh-divider .lk-sh-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #0091ff, #ff006e);
}

.lk-sh-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .lk-sh-title {
    font-size: 22px !important;
  }

  .lk-sh-subtitle {
    font-size: 14px !important;
  }
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Area Cards */
.area-card {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.area-card[data-area="gurgaon"] {
  transition-delay: 0.1s;
}

.area-card[data-area="noida"] {
  transition-delay: 0.3s;
}

.area-card[data-area="delhi"] {
  transition-delay: 0.5s;
}

.card-inner {
  position: relative;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(0, 145, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Hover Effect - Width Expansion */
.area-card:hover .card-inner {
  transform: scale(1.05);
  border-color: rgba(0, 145, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 145, 255, 0.2);
}

/* Card Background */
.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05) 0%,
    rgba(255, 0, 110, 0.05) 100%
  );
  transition: all 0.6s ease;
}

.area-card:hover .card-background {
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.1) 0%,
    rgba(255, 0, 110, 0.1) 100%
  );
}

/* Card Content */
.card-content {
  position: relative;
  padding: 3rem 2rem;
  z-index: 2;
}

.icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.area-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* Description */
.area-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.area-card:hover .area-description {
  color: #555;
}

/* Card Shine Effect */
.card-shine {
  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.6s ease;
  pointer-events: none;
}

.area-card:hover .card-shine {
  left: 100%;
}

/* Features Section */
.features-section {
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.03),
    rgba(255, 0, 110, 0.03)
  );
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  border-radius: 50%;
  filter: blur(80px);
}

.features-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 110, 0.05),
    rgba(0, 145, 255, 0.05)
  );
  border-radius: 50%;
  filter: blur(80px);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 145, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 145, 255, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.1),
    rgba(255, 0, 110, 0.1)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.lk-workspace-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  position: relative;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}

.lk-container {
  max-width: 1400px;
  margin: auto;
}

/* Header */
.lk-header {
  text-align: center;
  margin-bottom: 60px;
}

.lk-heading {
  color: #1a1a1a;
  font-size: 50px;
  margin-bottom: 15px;
}

.lk-subheading {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* Tabs */
.lk-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.lk-tab {
  padding: 14px 36px;
  border-radius: 8px;
  color: #667eea;
  background: #ffffff;
  border: 2px solid rgba(102, 126, 234, 0.4);
  font-weight: 700;
  cursor: pointer;
}

.lk-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Grid */
.lk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card */
.lk-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.lk-card:hover {
  transform: translateY(-12px);
}

/* Image */
.lk-img-wrap {
  position: relative;
  height: 260px;
}

.lk-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lk-type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.lk-type.office {
  color: #667eea;
}

.lk-type.coworking {
  color: #764ba2;
}

.lk-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;

  /* Soft glass effect */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(102, 126, 234, 0.35) 100%
  );

  backdrop-filter: blur(2px);
}

.lk-card:hover .lk-overlay {
  opacity: 1;
}

.lk-view-btn {
  background: #fff;
  color: #667eea;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
}

/* Body */
.lk-card-body {
  padding: 24px;
}

.lk-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lk-card-top h3 {
  font-size: 20px;
}

.lk-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
}

.lk-card-body p {
  color: #666;
  font-size: 14px;
  margin-bottom: 14px;
}

/* Tags */
.lk-tags span {
  display: inline-block;
  margin: 4px 6px 0 0;
  color: #667eea;
  background: #eef1ff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  25% {
    transform: scale(1.2) rotate(-5deg);
  }

  50% {
    transform: scale(1.1) rotate(5deg);
  }

  75% {
    transform: scale(1.15) rotate(-3deg);
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

.view-btn {
  position: relative;
  overflow: hidden;
}

.office-animated-section {
  background: #ffffff;
}

/* ROW */
.office-card-row {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

/* CARD */
.office-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 145, 255, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 145, 255, 0.25);
}

/* IMAGE */
.office-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.office-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: imageZoom 16s linear infinite;
}

.office-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.55)
  );
}

/* TOP TAGS */
.top-tags {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.tag.dark {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

/* SLIDER BUTTONS */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.slide-btn.left {
  left: 14px;
}

.slide-btn.right {
  right: 14px;
}

.office-card:hover .slide-btn {
  opacity: 1;
}

.slide-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* ACTION ICONS */
.image-actions {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.action-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-icon:hover {
  background: linear-gradient(135deg, #0091ff, #ff006e);
}

.action-icon.heart:hover {
  color: #ff4d6d;
}

/* BODY */
.office-card-body {
  padding: 1.9rem;
}

.office-card-body small {
  font-weight: 700;
  color: #0091ff;
  font-size: 0.75rem;
}

.office-card-body h3 {
  margin: 0.4rem 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.office-card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.office-card-body strong {
  display: block;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.office-card-body button {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 2px solid #0091ff;
  background: transparent;
  font-weight: 700;
  color: #0091ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.office-card-body button:hover {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: #fff;
  border-color: transparent;
}

/* SCROLL ANIMATION */
.reveal-card {
  opacity: 0;
  transform: translateX(140px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.9s ease;
}

.reveal-card.is-visible:nth-child(1) {
  transition-delay: 0.15s;
}

.reveal-card.is-visible:nth-child(2) {
  transition-delay: 0.35s;
}

.reveal-card.is-visible:nth-child(3) {
  transition-delay: 0.55s;
}

/* CATEGORY + PRICE */
.category {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0091ff;
  letter-spacing: 0.6px;
  margin-bottom: 0.3rem;
}

.price {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

/* IMAGE ZOOM */
@keyframes imageZoom {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1.35);
  }
}

/* setction explore location */

/* ========== EXPLORE LOCATIONS SECTION ========== */
.explore-locations-section {
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.02),
    rgba(255, 0, 110, 0.02)
  );
  position: relative;
  overflow: hidden;
}

/* Animated Background Particles */
.explore-bg-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.explore-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  border-radius: 50%;
  opacity: 0.15;
  animation: exploreFloatParticle 15s linear infinite;
}

.explore-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.explore-particle:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
}

.explore-particle:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
}

.explore-particle:nth-child(4) {
  left: 70%;
  animation-delay: 6s;
}

.explore-particle:nth-child(5) {
  left: 90%;
  animation-delay: 8s;
}

@keyframes exploreFloatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.15;
  }

  90% {
    opacity: 0.15;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.explore-locations-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.explore-locations-header {
  max-width: 500px;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateX(-50px);
  animation: exploreSlideInLeft 1s ease-out 0.2s forwards;
}

@keyframes exploreSlideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Location Cards Grid */
.explore-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.explore-location-card {
  position: relative;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateX(100px);
  box-shadow: 0 10px 40px rgba(0, 145, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.explore-location-card.explore-animate-in {
  animation: exploreSlideInRight 0.8s ease-out forwards;
}

.explore-location-card:nth-child(1) {
  animation-delay: 0.1s;
}

.explore-location-card:nth-child(2) {
  animation-delay: 0.3s;
}

.explore-location-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes exploreSlideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.explore-location-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 145, 255, 0.2);
}

/* Card Image */
.explore-card-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.explore-location-card:hover .explore-card-bg-image {
  transform: scale(1.15);
}

/* Gradient Overlay with Animation */
.explore-card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: background 0.4s ease;
}

.explore-location-card:hover .explore-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 145, 255, 0.15) 40%,
    rgba(0, 145, 255, 0.4) 100%
  );
}

/* Animated Gradient Border */
.explore-card-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 3px;
  background: linear-gradient(45deg, #0091ff, #3ccae7, #0091ff);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: exploreGradientShift 3s ease infinite;
}

.explore-location-card:hover .explore-card-overlay::before {
  opacity: 1;
}

@keyframes exploreGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Card Content */
.explore-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.5rem;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-location-card:hover .explore-card-content {
  transform: translateY(-15px);
}

.explore-property-count {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.explore-location-card:hover .explore-property-count {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.explore-location-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* More Details Button */
.explore-more-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(15px);
  width: fit-content;
}

.explore-location-card:hover .explore-more-details-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.explore-more-details-btn:hover {
  background: #ffffff;
  color: #0091ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.explore-arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.explore-more-details-btn:hover .explore-arrow-icon {
  transform: translateX(5px);
}

/* Shine Effect on Hover */
.explore-card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.explore-location-card:hover .explore-card-shine {
  left: 100%;
  top: 100%;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.testimonial-bg-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.testimonial-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  filter: blur(60px);
  animation: testimonialFloatCircle 20s ease-in-out infinite;
}

.testimonial-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.testimonial-circle-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  animation-delay: 5s;
}

@keyframes testimonialFloatCircle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.testimonial-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Section */
.testimonial-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(-30px);
  animation: testimonialFadeInDown 1s ease-out 0.2s forwards;
}

@keyframes testimonialFadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonial Cards Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 145, 255, 0.08);
  border: 2px solid rgba(0, 145, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
}

.testimonial-card.testimonial-animate-in {
  animation: testimonialSlideUp 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes testimonialSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 145, 255, 0.15);
  border-color: rgba(0, 145, 255, 0.2);
}

/* Gradient Border Effect on Hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Quote Icon */
.testimonial-quote-icon {
  font-size: 3.5rem;
  color: #0091ff;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
  opacity: 0.25;
  transform: scale(1.1);
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  min-height: 180px;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 145, 255, 0.1);
  transition: border-color 0.4s ease;
}

.testimonial-card:hover .testimonial-author {
  border-top-color: rgba(0, 145, 255, 0.25);
}

.testimonial-author-image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 145, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover .testimonial-author-image {
  border-color: #0091ff;
  transform: scale(1.05);
}

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

/* Company Logo */
.testimonial-company-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(0, 145, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-company-logo {
  border-color: #0091ff;
  transform: scale(1.05);
}

.testimonial-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-author-name::before {
  content: "by";
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
}

.testimonial-author-position {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  line-height: 1.5;
}

/* Decorative Elements */
.testimonial-card-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  border-radius: 50%;
  filter: blur(40px);
  transition: all 0.6s ease;
}

.testimonial-card:hover .testimonial-card-decoration {
  transform: scale(1.5);
  opacity: 0.8;
}

/* blog */

/* Blog Section */
.blog-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* Floating Office Icons Background */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 60px;
  opacity: 0.06;
  animation: floatAround 20s infinite ease-in-out;
}

.float-icon:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.float-icon:nth-child(2) {
  right: 15%;
  top: 10%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.float-icon:nth-child(3) {
  left: 20%;
  bottom: 30%;
  animation-delay: 4s;
  animation-duration: 22s;
}

.float-icon:nth-child(4) {
  right: 25%;
  bottom: 20%;
  animation-delay: 1s;
  animation-duration: 20s;
}

.float-icon:nth-child(5) {
  left: 50%;
  top: 50%;
  animation-delay: 3s;
  animation-duration: 25s;
}

.float-icon:nth-child(6) {
  right: 10%;
  top: 60%;
  animation-delay: 5s;
  animation-duration: 17s;
}

.float-icon:nth-child(7) {
  left: 30%;
  top: 70%;
  animation-delay: 2.5s;
  animation-duration: 19s;
}

.float-icon:nth-child(8) {
  right: 40%;
  bottom: 10%;
  animation-delay: 4.5s;
  animation-duration: 21s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(30px, -40px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
  }

  75% {
    transform: translate(40px, 20px) rotate(270deg) scale(1.05);
  }
}

/* Section Header */
.blog-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

/* Blog Grid */
.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0, 145, 255, 0.08);
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 145, 255, 0.15);
  border-color: rgba(0, 145, 255, 0.3);
}

.blog-card:hover::before {
  opacity: 1;
}

/* Card Image */
.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.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 .card-image img {
  transform: scale(1.1);
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0091ff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  border: 1px solid rgba(0, 145, 255, 0.2);
  transition: all 0.3s ease;
}

.blog-card:hover .category-badge {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}

.category-icon {
  font-size: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Card Content */
.card-content {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #999;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-icon {
  font-size: 1rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .card-title {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #666;
}

.author-icon {
  font-size: 1.1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0091ff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 0.8rem;
  color: #ff006e;
}

.arrow {
  transition: transform 0.3s ease;
}

.read-more:hover .arrow {
  transform: translateX(4px);
}

/* Navigation Buttons */
.blog-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.nav-btn {
  padding: 0.8rem 2rem;
  background: rgba(0, 145, 255, 0.08);
  color: #0091ff;
  border: 1px solid rgba(0, 145, 255, 0.2);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 145, 255, 0.25);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nav-btn:disabled:hover {
  transform: none;
  background: rgba(0, 145, 255, 0.08);
  color: #0091ff;
  box-shadow: none;
}

/* faq */
/* FAQ Section */
.faq-section {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
}

/* Floating Background Icons */
.faq-bg-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.04;
}

.faq-float-icon {
  position: absolute;
  font-size: 50px;
  animation: floatFAQ 25s infinite ease-in-out;
}

.faq-float-icon:nth-child(1) {
  left: 5%;
  top: 10%;
  animation-delay: 0s;
}

.faq-float-icon:nth-child(2) {
  right: 10%;
  top: 20%;
  animation-delay: 3s;
}

.faq-float-icon:nth-child(3) {
  left: 15%;
  bottom: 15%;
  animation-delay: 6s;
}

.faq-float-icon:nth-child(4) {
  right: 20%;
  bottom: 25%;
  animation-delay: 2s;
}

.faq-float-icon:nth-child(5) {
  left: 45%;
  top: 30%;
  animation-delay: 4s;
}

@keyframes floatFAQ {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -30px) rotate(90deg);
  }

  50% {
    transform: translate(-15px, 25px) rotate(180deg);
  }

  75% {
    transform: translate(30px, 15px) rotate(270deg);
  }
}

/* Container */
.faq-container {
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Search Box */

/* FAQ Items */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 3 FAQ in one row */
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  height: fit-content;
}

.faq-item:hover {
  border-color: rgba(0, 145, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 145, 255, 0.12);
  transform: translateX(5px);
}

.faq-item.active {
  border-color: #0091ff;
  box-shadow: 0 10px 40px rgba(0, 145, 255, 0.15);
}

/* Question */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  position: relative;
  gap: 1.5rem;
}

.question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.question-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.1),
    rgba(255, 0, 110, 0.1)
  );
  border-radius: 8px;
  font-weight: 700;
  color: #0091ff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item.active .question-number {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  transform: scale(1.1);
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-item.active .question-text {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.toggle-icon {
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 145, 255, 0.08);
  border-radius: 50%;
  transition: all 0.4s ease;
  font-size: 1.2rem;
}

.faq-item:hover .toggle-icon {
  background: rgba(0, 145, 255, 0.15);
}

.faq-item.active .toggle-icon {
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.answer-content {
  padding: 0 2rem 1.5rem 5rem;
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* Stats Section */
.faq-stats {
  margin-top: 4rem;
  padding: 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 145, 255, 0.08);
  text-align: center;
}

.stats-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  border-radius: 8px;
  border: 1px solid rgba(0, 145, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 145, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* CTA Section */
.faq-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  border-radius: 8px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotateCTA 10s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 3rem;
  color: #999;
  font-size: 1.1rem;
  display: none;
}

.no-results.show {
  display: block;
}

.lk-query-section {
  width: 100%;
}

.lk-query-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* LEFT SIDE - 3 CARDS */
.lk-query-left-simple {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* INDIVIDUAL CARD STYLE */
.lk-info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 145, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lk-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 145, 255, 0.15);
}

/* ICON CONTAINER */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
}

/* CARD CONTENT */
.card-content-query {
  flex: 1;
}

.card-content-query h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.card-content-query p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* RIGHT FORM */
.lk-query-right {
  background: #ffffff;
  padding: 3rem;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 145, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.lk-query-right h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.lk-query-right > p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.lk-query-form input {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: #1e293b;
}

.lk-query-form input::placeholder {
  color: #94a3b8;
}

.lk-query-form input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lk-query-form button {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #a855f7, #ec4899);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.lk-query-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.lk-query-form button:active {
  transform: translateY(-1px);
}

/* IMAGE ONLY CARD */
.card-inner {
  height: 420px;
}

.image-only {
  padding: 0;
  height: 100%;
}

.city-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.city-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.area-card:hover img {
  transform: scale(1.1);
}

/* dark overlay */
.city-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

/* city name */
.city-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}

.fab-wrapper {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
}

.fab {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: #126ee2;
  border-radius: 50%;
  box-shadow: 0px 5px 20px #81a4f1;
  cursor: pointer;
}

.fab:hover {
  background: #2c87e8;
}

.fab-dots {
  position: absolute;
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.fab-dots-1 {
  left: 14px;
}

.fab-dots-2 {
  left: 50%;
  transform: translate(-50%, -50%);
}

.fab-dots-3 {
  right: 14px;
}

.fab-wrapper:hover .fab-dots-1 {
  width: 30px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 8px;
}

.fab-wrapper:hover .fab-dots-2 {
  opacity: 0;
}

.fab-wrapper:hover .fab-dots-3 {
  width: 30px;
  right: 50%;
  transform: translate(50%, -50%) rotate(-45deg);
  border-radius: 8px;
}

.fab-wheel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  transform: scale(0);
  transform-origin: bottom right;
  transition: all 0.3s ease;
}

.fab-wrapper:hover .fab-wheel {
  transform: scale(1);
}

.fab-action {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #0f1941;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.fab-wrapper:hover .fab-action {
  opacity: 1;
}

.fab-action:hover {
  background: #f16100;
}

.fab-action-1 {
  right: -1rem;
  top: 0;
}

.fab-action-2 {
  right: 3.4rem;
  top: 0.5rem;
}

.fab-action-3 {
  left: 0.5rem;
  bottom: 3.4rem;
}

.fab-action-4 {
  left: 0;
  bottom: -1rem;
}

/* Navigation Item */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.has-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu - Glass Morphism Design */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-15px) scale(0.96);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 145, 255, 0.15);
  /* border-radius: 8px; */
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 15px 45px rgba(0, 145, 255, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}

/* Subtle Gradient Border Effect */
.dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav-item.has-dropdown.open .dropdown-menu::before {
  opacity: 1;
}

/* Small Arrow Pointer */
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(0, 145, 255, 0.15);
  border-top: 1px solid rgba(0, 145, 255, 0.15);
  transform: translateX(-50%) rotate(45deg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Active State */
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Dropdown Items - Compact & Professional */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

/* Hover Background Effect */
.dropdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.dropdown-item:hover::before {
  opacity: 1;
}

/* Icon Container - Compact Size */
.dropdown-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #0091ff;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.dropdown-item i svg {
  width: 18px;
  height: 18px;
}
/* Text Content - Smaller Font */
.dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.dropdown-item strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.dropdown-item span {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.2;
  transition: color 0.3s ease;
}

/* Text Hover Effect */
.dropdown-item:hover strong {
  /* background: linear-gradient(135deg, #0091ff, #ff006e); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 
.dropdown-item:hover span {
  color: #0091ff;
} */

/* Staggered Animation for Items */
.nav-item.has-dropdown.open .dropdown-item {
  animation: dropdownItemSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.nav-item.has-dropdown.open .dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}

.nav-item.has-dropdown.open .dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}

.nav-item.has-dropdown.open .dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes dropdownItemSlide {
  from {
    opacity: 0;
    transform: translateX(-15px) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Ripple Effect on Click */
.dropdown-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(0, 145, 255, 0.25), transparent); */
  opacity: 0;
  pointer-events: none;
}

.dropdown-item:active::after {
  animation: rippleDropdown 0.5s ease-out;
}

@keyframes rippleDropdown {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Smooth Closing Animation */
.nav-item.has-dropdown:not(.open) .dropdown-menu {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
