/* ==========================================================================
   GIGL MARKETING - LUXURY REAL ESTATE COMPONENT STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HEADER & TOP BAR & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

/* Top bar for Contact & Overseas Notice */
.header-topbar {
  background-color: var(--primary-dark);
  color: #94a3b8;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
}

.topbar-item i {
  color: var(--accent);
}

.topbar-item a:hover {
  color: var(--accent-light);
}

/* Main Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.brand-logo-text span {
  color: var(--accent);
  font-weight: 800;
}

.brand-tagline {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -3px;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   2. DESKTOP MEGA MENU (SOCIETIES)
   -------------------------------------------------------------------------- */
.nav-item-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 900px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1050;
}

.nav-item-dropdown:hover .mega-menu,
.nav-item-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
}

.mega-menu-column h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-menu-column h5 i {
  color: var(--accent);
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mega-menu-list a {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.mega-menu-list a:hover {
  background-color: var(--accent-subtle);
  color: var(--primary);
  transform: translateX(3px);
}

.mega-menu-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background-color: var(--surface-alt);
  color: var(--text-muted);
}

.mega-menu-featured-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-menu-featured-box h6 {
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.mega-menu-featured-box p {
  font-size: 0.8125rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.mega-disclaimer-note {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

/* --------------------------------------------------------------------------
   3. MOBILE NAVIGATION DRAWER & HAMBURGER
   -------------------------------------------------------------------------- */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--surface);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 16, 30, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-accordion-toggle {
  cursor: pointer;
}

.mobile-accordion-content {
  display: none;
  padding: 0.5rem 0 0.75rem 1rem;
  flex-direction: column;
  gap: 0.45rem;
  background-color: var(--surface-alt);
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}

.mobile-accordion-content.active {
  display: flex;
}

.mobile-sub-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.mobile-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: var(--surface-alt);
}

/* --------------------------------------------------------------------------
   4. HERO SLIDER (HOMEPAGE)
   -------------------------------------------------------------------------- */
.hero-slider-container {
  position: relative;
  height: 640px;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 16, 30, 0.92) 0%,
    rgba(6, 16, 30, 0.75) 50%,
    rgba(6, 16, 30, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 155, 60, 0.18);
  border: 1px solid var(--border-gold);
  color: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Controls */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.hero-nav-arrow:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.hero-nav-prev { left: 2rem; }
.hero-nav-next { right: 2rem; }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-dot.active {
  background-color: var(--accent);
  width: 32px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   5. STATS STRIP
   -------------------------------------------------------------------------- */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
  position: relative;
  z-index: 30;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0.5rem 1rem;
}

.stat-card:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.stat-value span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.stat-note {
  font-size: 0.785rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. CARDS & HOVER EFFECTS
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 155, 60, 0.4);
}

.card-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
}

.card-badge-gold {
  background-color: var(--accent);
  color: #ffffff;
}

.card-city-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(6, 16, 30, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

/* Category Feature Cards (Section 4) */
.category-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(6, 16, 30, 0.95) 0%, rgba(6, 16, 30, 0.4) 60%, rgba(6, 16, 30, 0.1) 100%);
  z-index: 2;
  transition: background var(--transition-normal);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(0deg, rgba(6, 16, 30, 0.98) 0%, rgba(6, 16, 30, 0.6) 70%, rgba(6, 16, 30, 0.2) 100%);
}

.category-card-content {
  position: relative;
  z-index: 3;
}

.category-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.category-card-title {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.category-card-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   7. WHY CHOOSE US & PROCESS (SECTIONS 8 & 9)
   -------------------------------------------------------------------------- */
.feature-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.feature-box-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background-color: var(--accent-subtle);
  border: 1px solid var(--border-gold);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-box h4 {
  margin-bottom: 0.65rem;
}

/* 4-Step Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1rem;
}

.process-number-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--accent);
  color: var(--accent-light);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-md);
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   8. ACCORDION (FAQ)
   -------------------------------------------------------------------------- */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  font-size: 0.9rem;
  color: var(--accent);
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: var(--surface);
}

.accordion-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. FORMS & INPUTS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.form-label span.req {
  color: var(--error);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.form-control.is-invalid {
  border-color: var(--error);
  background-color: #fef2f2;
}

.form-feedback {
  font-size: 0.775rem;
  color: var(--error);
  display: none;
}

.form-control.is-invalid + .form-feedback {
  display: block;
}

/* --------------------------------------------------------------------------
   10. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.floating-whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  animation: pulseGlow 2.5s infinite;
  transition: transform var(--transition-normal);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp-tooltip {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.social-icon-btn:hover {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  font-size: 0.825rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--accent-light);
}

/* --------------------------------------------------------------------------
   12. BREADCRUMBS
   -------------------------------------------------------------------------- */
.breadcrumbs-bar {
  background-color: var(--surface-alt);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--text-light);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   13. MODAL POPUP
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 16, 30, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-header {
  background-color: var(--primary);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-menu, .topbar-left, .header-consult-btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-slider-container {
    height: 560px;
  }

  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-nav-arrow {
    display: none;
  }

  .floating-whatsapp-tooltip {
    display: none;
  }

  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

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

/* ==========================================================================
   New Homepage Enhanced Sections: Ticker, ROI Calculator, Overseas Desk & Comparison
   ========================================================================== */

/* 1. Live Market Pulse & News Ticker */
.market-pulse-ticker {
  background: linear-gradient(90deg, #0b1a30 0%, #162a4a 50%, #0b1a30 100%);
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
  padding: 0.65rem 0;
  color: #f1f5f9;
  font-size: 0.85rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.market-pulse-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.ticker-items::-webkit-scrollbar { display: none; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
  font-size: 0.825rem;
}

.ticker-item strong { color: var(--accent); }

/* 2. Bahria Town Peshawar Spotlight Showcase Banner */
.spotlight-banner {
  background: linear-gradient(135deg, #0b1a30 0%, #162e54 60%, #06101e 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 155, 60, 0.25);
  margin-bottom: 3.5rem;
}

.spotlight-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.spotlight-badge-kp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.25) 0%, rgba(200, 155, 60, 0.1) 100%);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.spotlight-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.spotlight-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #e2e8f0;
  font-size: 0.9rem;
}

.spotlight-feature-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spotlight-card-preview {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

/* 3. Interactive ROI & Installment Calculator */
.calc-container-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.calc-inputs-panel {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.calc-results-panel {
  padding: 2.5rem;
  background: linear-gradient(135deg, #0b1a30 0%, #162a4a 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-preset-btns {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.calc-preset-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-main);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-preset-btn.active,
.calc-preset-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.calc-slider-wrapper {
  margin-bottom: 1.75rem;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.calc-slider-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.calc-range-input {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--accent);
  cursor: pointer;
}

.calc-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.calc-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.calc-stat-label {
  font-size: 0.775rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.calc-stat-val {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
}

.calc-stat-val.highlight {
  color: #10b981;
}

/* 4. Side-by-Side Society Comparison Matrix */
.comparison-matrix-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--surface-alt);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-weight: 700;
}

.comparison-table tr:hover {
  background: rgba(200, 155, 60, 0.04);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* 5. Overseas Investors Dedicated Concierge */
.overseas-concierge-card {
  background: radial-gradient(circle at 80% 20%, #1a365d 0%, #0b1a30 70%, #06101e 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.overseas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.overseas-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.overseas-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent);
}

.overseas-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* 6. Filter Pills */
.filter-pills-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-pill-tab {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.filter-pill-tab.active,
.filter-pill-tab:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
  .calc-container-card {
    grid-template-columns: 1fr;
  }
  .calc-inputs-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.75rem;
  }
  .calc-results-panel {
    padding: 1.75rem;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .overseas-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-banner {
    padding: 2rem 1.5rem;
  }
  .overseas-concierge-card {
    padding: 2.25rem 1.5rem;
  }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN – ALL DEVICE BREAKPOINTS
   Covers: Mobile (≤480px), Small Mobile (≤576px), Tablet (≤768px),
           Large Tablet (≤992px), Desktop (≤1024px), Wide (≤1280px)
   ========================================================================== */

/* ---- 1280px: Large Desktop clamp / container refinement ---- */
@media (max-width: 1280px) {
  :root {
    --container-padding: 1.25rem;
  }
  .mega-menu {
    width: 780px;
  }
}

/* ---- 1024px: Tablet Landscape / Small Desktop ---- */
@media (max-width: 1024px) {
  .nav-menu, .topbar-left, .header-consult-btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2-col grids become 2-col on tablet */
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About section: stack 2-col grid */
  .grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem !important;
  }

  /* Comparison table remains scrollable */
  .comparison-matrix-wrapper {
    overflow-x: auto;
  }
}

/* ---- 768px: Tablet Portrait ---- */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --container-padding: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2rem 0;
  }

  /* Hero */
  .hero-slider-container {
    height: 520px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-nav-arrow {
    display: none;
  }

  /* Grids → single column */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  /* Stats strip */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0.5rem;
  }

  .stat-card:nth-child(even) {
    border-right: none;
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-value {
    font-size: 2rem;
  }

  /* Section header */
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Category cards – shorter on mobile */
  .category-card {
    height: 280px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Floating WhatsApp */
  .floating-whatsapp-tooltip {
    display: none;
  }

  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  /* About / Investment section 2-col stacking */
  .grid-cols-2 {
    gap: 2rem !important;
  }

  /* Section badge wrapping */
  .section-badge {
    font-size: 0.775rem;
    padding: 0.3rem 0.8rem;
  }

  /* Buttons in CTAs */
  .hero-cta-row .btn-lg,
  [style*="display: flex"] .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Topbar hide on small devices */
  .header-topbar {
    display: none;
  }

  /* Market pulse ticker */
  .market-pulse-ticker {
    padding: 0.5rem 0;
  }

  .ticker-items {
    gap: 1.25rem;
  }

  /* Spotlight banner */
  .spotlight-banner {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }

  .spotlight-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Overseas concierge card */
  .overseas-concierge-card {
    padding: 1.75rem 1.25rem;
  }

  .overseas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  /* Accordion FAQ */
  .accordion-wrapper {
    max-width: 100%;
  }

  /* Comparison table */
  .comparison-matrix-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 640px;
  }

  /* Modal */
  .modal-overlay {
    padding: 1rem;
    align-items: flex-end;
  }

  .modal-container {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92vh;
    overflow-y: auto;
  }

  /* Filter pills */
  .filter-pills-container {
    gap: 0.4rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-pill-tab {
    flex-shrink: 0;
    font-size: 0.825rem;
    padding: 0.45rem 1rem;
  }

  /* Breadcrumbs */
  .breadcrumb-list {
    font-size: 0.8rem;
  }

  /* Card images */
  .card-img-wrapper {
    height: 200px;
  }
}

/* ---- 576px: Small Tablets / Large Phones ---- */
@media (max-width: 576px) {
  :root {
    --container-padding: 0.875rem;
  }

  h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: clamp(1.2rem, 5vw, 1.5rem); }

  /* Hero */
  .hero-slider-container {
    height: 480px;
  }

  .hero-badge {
    font-size: 0.775rem;
    padding: 0.35rem 0.75rem;
  }

  /* Stats 2-col stays, just tighten */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-value {
    font-size: 1.85rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-note {
    font-size: 0.7rem;
  }

  /* Feature box padding */
  .feature-box {
    padding: 1.5rem;
  }

  /* About section image height reduction */
  .grid-cols-2 > div[style*="height: 420px"],
  .grid-cols-2 > div[style*="height: 460px"] {
    height: 260px !important;
  }

  /* Floating info badge on about/investment section */
  div[style*="position: absolute; bottom: -1.5rem"] {
    position: static !important;
    margin-top: 1rem;
    max-width: 100% !important;
  }

  /* ROI Calculator */
  .calc-preset-btns {
    gap: 0.4rem;
  }

  .calc-preset-btn {
    font-size: 0.775rem;
    padding: 0.4rem 0.75rem;
  }

  /* Section spacing */
  .section {
    padding: 2.5rem 0;
  }

  /* Category cards */
  .category-card {
    height: 240px;
    padding: 1.25rem;
  }

  .category-card-title {
    font-size: 1.15rem;
  }

  /* Mega menu (should be hidden at this point, just in case) */
  .mega-menu {
    display: none;
  }

  /* Buttons block on small screens */
  .hero-cta-row .btn,
  div[style*="display: flex; gap: 1rem; align-items: center"] > .btn {
    width: 100%;
    justify-content: center;
  }

  /* Process numbers */
  .process-number-badge {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ---- 480px: Mobile Phones (standard) ---- */
@media (max-width: 480px) {
  :root {
    --container-padding: 0.75rem;
    --header-height: 65px;
  }

  /* Hero shrink */
  .hero-slider-container {
    height: 440px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  /* Stats single column on very small phones */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
  }

  /* Logo text size */
  .brand-logo {
    font-size: 1.3rem;
  }

  .brand-logo-icon {
    width: 38px;
    height: 38px;
  }

  /* Mobile drawer: full width */
  .mobile-nav-drawer {
    width: 100%;
    max-width: 100%;
  }

  /* Section */
  .section {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  /* Cards */
  .card-img-wrapper {
    height: 185px;
  }

  .card-body {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  /* Feature boxes */
  .feature-box {
    padding: 1.25rem;
  }

  /* ROI calculator preset buttons wrap & shrink */
  .calc-preset-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-preset-btn {
    text-align: center;
    padding: 0.6rem 1rem;
  }

  /* Footer social */
  .footer-social-links {
    justify-content: flex-start;
  }

  /* Filter pills: scrollable single row */
  .filter-pills-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.75rem;
  }

  /* Overseas desk */
  .overseas-concierge-card {
    padding: 1.5rem 1rem;
  }

  /* Breadcrumbs bar */
  .breadcrumbs-bar {
    padding: 0.75rem 0;
  }

  /* Accordion */
  .accordion-header {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  /* Modal */
  .modal-body {
    padding: 1.5rem 1.25rem;
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  /* Floating WhatsApp positioning */
  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  /* Category cards */
  .category-card {
    height: 220px;
    padding: 1rem;
  }

  /* Ticker on very small phones */
  .market-pulse-inner {
    gap: 0.75rem;
  }

  .pulse-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
}

/* ---- 360px: Very Small Phones ---- */
@media (max-width: 360px) {
  :root {
    --container-padding: 0.625rem;
  }

  .hero-slider-container {
    height: 400px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .brand-logo {
    font-size: 1.15rem;
  }

  .brand-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .card-img-wrapper {
    height: 165px;
  }

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

/* ---- Print / Accessibility: Prefer reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   ABOUT PAGE & INNER-PAGE SPECIFIC RESPONSIVE STYLES
   ========================================================================== */

/* About page: Who We Are grid */
.about-who-grid {
  align-items: center;
  gap: 4rem;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 420px;
}

@media (max-width: 1024px) {
  .about-who-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .about-who-grid {
    gap: 2rem;
  }

  .about-img-wrapper {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .about-who-grid {
    gap: 1.5rem;
  }

  .about-img-wrapper {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .about-img-wrapper {
    height: 200px;
  }
}
