/* ==========================================================================
   Sellers2Buyer - Professional Form & Responsive CSS System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Design Tokens */
  --bg-primary: #0a0d14;
  --bg-secondary: #111622;
  --bg-card: rgba(17, 22, 34, 0.82);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(99, 102, 241, 0.35);

  /* Color Palette */
  --color-brand-primary: #6366f1; /* Indigo */
  --color-brand-accent: #10b981;  /* Emerald */
  --color-india-saffron: #ff9933; /* Saffron Accent */
  --color-text-main: #f9fafb;
  --color-text-muted: #9ca3af;
  --color-text-dim: #6b7280;

  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.22);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.45);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Universal Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 45%),
              radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
              var(--bg-primary);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-brand-text {
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, #818cf8 50%, var(--color-brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-glow);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(10, 13, 20, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Outfit', sans-serif;
  color: white;
}

.logo-india {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-india-saffron), var(--color-brand-primary), var(--color-brand-accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 18px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.admin-nav-link {
  color: #a5b4fc;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-text-link {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-text-link:hover {
  color: white;
}

.user-greeting {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-brand-accent);
  white-space: nowrap;
}

/* Buttons (Responsive Text Wrapping) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-primary), #4f46e5);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-brand-accent), #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--color-text-main);
}

.btn-outline:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Mobile Hamburger Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
  transition: background var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  transform: translateY(-10px);
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  overflow-y: auto;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.mobile-drawer-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Post Property Multi-Step Form System */
.step-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(17, 22, 34, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.step-item.active {
  opacity: 1;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-primary), #4f46e5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.8rem;
}

.post-property-form {
  padding: 2.8rem;
}

.form-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2.2rem;
}

.form-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}

.form-section-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  margin-top: 0.3rem;
  display: block;
}

/* Category Selector Radio Cards */
.category-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-radio {
  position: absolute;
  top: 15px;
  right: 15px;
  accent-color: var(--color-brand-primary);
}

.category-card:hover, .category-card.selected {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-name {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.category-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

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

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

/* Drag & Drop File Upload Box */
.file-upload-box {
  border: 2px dashed rgba(99, 102, 241, 0.4);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.file-upload-box:hover {
  border-color: var(--color-brand-primary);
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.22);
}

.upload-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 0.8rem;
}

.upload-box-content {
  pointer-events: none;
}

/* Hero & Listings */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 153, 51, 0.12);
  border: 1px solid rgba(255, 153, 51, 0.28);
  color: #fdba74;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  font-family: 'Outfit', sans-serif;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

.visual-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.floating-glass-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  padding: 1rem;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-section {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.filter-bar {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 1rem;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.form-select, .form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-select option {
  background-color: var(--bg-secondary);
  color: white;
}

.form-select:focus, .form-input:focus {
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
}

.listings-section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.property-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-featured {
  top: 12px;
  right: 12px;
  left: auto;
  background: linear-gradient(135deg, var(--color-india-saffron), var(--color-brand-primary));
  border: none;
}

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

.property-location {
  font-size: 0.82rem;
  color: var(--color-brand-accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.property-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.property-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.8rem;
}

.property-specs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.features-section {
  padding: 5rem 0;
  position: relative;
}

.corp-feature-card {
  background: rgba(13, 17, 26, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.corp-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(17, 22, 34, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.15);
}

.corp-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.corp-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.corp-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.corp-card-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.corp-card-list li {
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.corp-card-list li span {
  color: #6ee7b7;
  font-weight: 800;
}

.corp-metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2.2rem;
  background: rgba(13, 17, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.corp-metric-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.3rem;
  font-family: 'Outfit', sans-serif;
}

.corp-metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calculator-section {
  padding: 4.5rem 0;
}

.calculator-box {
  padding: 2.2rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.package-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 1rem;
}

.package-item.selected {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--color-brand-primary);
}

.package-summary {
  padding: 1.8rem;
  background: rgba(10, 13, 20, 0.85);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.total-price {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--color-brand-accent);
  margin: 0.8rem 0;
}

.faq-section {
  padding: 4.5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.faq-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--color-brand-primary);
}

.accordion-item {
  margin-bottom: 0.8rem;
  border-radius: var(--radius-sm);
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0 1.2rem;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 1rem 1.2rem;
}

footer {
  background: #06080d;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3.8rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2.8rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: white;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* Highlighted Web Vistara Credit Link */
.webvistara-highlight {
  font-weight: 800;
  background: linear-gradient(135deg, #ff9933 0%, #6366f1 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 3px;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.webvistara-highlight:hover {
  transform: translateY(-1px) scale(1.05);
  text-shadow: 0 0 14px rgba(255, 153, 51, 0.4);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.8rem 1.4rem;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Admin Dashboard */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1.2rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr;
  gap: 1.8rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.admin-table th, .admin-table td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Breakpoints */
@media (max-width: 992px) {
  .nav-links, .desktop-actions {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .visual-frame img {
    height: 360px;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  .post-property-form {
    padding: 1.5rem 1rem;
  }
  .step-progress-bar {
    padding: 0.8rem;
  }
  .step-label {
    display: none;
  }
  .category-selector-grid {
    grid-template-columns: 1fr;
  }
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .filter-bar {
    grid-template-columns: 1fr;
  }
  .property-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .calculator-box {
    padding: 1.3rem;
  }
  .modal-container {
    padding: 1.4rem 1.1rem;
  }
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-glass-tag {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0.8rem;
  }
  .form-grid-2, .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 1.15rem;
  }
  .logo-india {
    width: 32px;
    height: 32px;
  }
  .package-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
