
      /* Premium Post Requirement — responsive */
:root {
  --bg-deep: #0c1222;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-solid: #151b2e;
  --border: rgba(255, 255, 255, 0.1);
  --text: #e8ecf4;
  --text-muted: #94a3b8;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --accent-glow: rgba(201, 162, 39, 0.35);
  --success: #34d399;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --font: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background-color: #f8f8f8;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59, 130, 246, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(139, 92, 246, 0.06), transparent),
    var(--bg-deep);
}

.form-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  padding-bottom: 3rem;
}

.form-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.ftnbr{
    border: none !important;
    background: none !important;
}

.form-header__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #8b6914 100%);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #0c1222;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.form-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.requirement-form {
  background: var(--bg-card);
  /*backdrop-filter: blur(20px);*/
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.form-section {
  margin-bottom: 1.75rem;
}

.form-section:last-of-type {
  margin-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 15px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: black !important;
}

.section-title i {
  opacity: 0.9;
  font-size: 0.95rem;
}

.section-hint {
  margin: -0.25rem 0 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hidden {
  display: none !important;
}

.conditional.hidden {
  display: none !important;
}

/* Sell / Rent pills */
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.radio-pill {
  cursor: pointer;
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill__face {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: black;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.radio-pill input:focus-visible + .radio-pill__face {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.radio-pill input:checked + .radio-pill__face {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: black;
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.radio-pill:hover .radio-pill__face {
  border-color: rgba(201, 162, 39, 0.4);
  color: black;
}

/* Property type — radio tiles with icon */
.property-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 420px) {
  .property-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 560px) {
  .property-type-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.type-radio {
  cursor: pointer;
  position: relative;
  margin: 0;
}

.type-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-radio__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 88px;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.type-radio__face i {
  font-size: 1.35rem;
  color: var(--accent);
  opacity: 0.85;
}

.type-radio input:focus-visible + .type-radio__face {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.type-radio input:checked + .type-radio__face {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: black;
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.type-radio input:checked + .type-radio__face i {
  opacity: 1;
  color: var(--accent);
}

.type-radio:hover .type-radio__face {
  border-color: rgba(201, 162, 39, 0.4);
  color: black;
}

/* Requirement summary */
.requirement-summary {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: -0.5rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(201, 162, 39, 0.08);
  font-size: 0.88rem;
  color: black;
  line-height: 1.45;
}

.requirement-summary i {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.requirement-summary strong {
  color: var(--accent);
  font-weight: 600;
}

/* Fields */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row--stack-sm .field--full-sm {
    grid-column: 1 / -1;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  width: 100%;
}

.field__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: black;
}

.field__label i {
  color: var(--accent);
  width: 1rem;
  text-align: center;
  font-size: 0.75rem;
}

.field input,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder {
  color: white;
  opacity: 0.7;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Actions: one row, small devices */
.form-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-actions .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
}

@media (max-width: 360px) {
  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    flex: none;
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: #C41E3A;
  color: #0c1222;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}


    .banner-slide {
    position: relative;
    width: 100%;
    height: 400px; /* adjust as needed */
    overflow: hidden;
}

.banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 main fix */
}

.location-dropdown {
    position: absolute;
    background: #fff;
    width: 100%;
  /*  border: 1px solid #ddd;*/
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

.loc-item {
    padding: 10px;
    cursor: pointer;
    color: black;
}

.loc-item:hover {
    background: #f5f5f5;
}


.section {
  padding: 20px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 15px;
  gap: 12px;
}

.section-see-all {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #C41E3A;
  margin-right: 8px;
  white-space: nowrap;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.section-subtitle {
font-size: 15px;
    font-weight: 400;
    color: #5a6470;
    line-height: 20px;
    margin-bottom: 6px;
}

.horizontal-scroll-container {
  position: relative;
  padding: 0 15px;
}

.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-content {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

.category-card {
  min-width: 240px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-card:hover .category-title {
  color: #C41E3A;
}

.category-card:hover .category-count {
  color: #C41E3A;
}

.category-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 15px;
  text-align: center;
}

.category-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.category-count {
    font-size: 15px;
    font-weight: 400;
    color: #5a6470;
    line-height: 20px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.property-card {
  min-width: 280px;
  background: white;
  border-radius: 15px;
  overflow: hidden; /* allow content to grow; no clipping */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.property-card:hover .property-name,
.property-card:hover .property-type {
  color: #C41E3A;
}

.property-card:hover .property-price {
  color: #C41E3A;
}

.property-card-large {
  min-width: 320px;
}

.property-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-red);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.property-badge-rera {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1abc9c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}

.property-favorite:hover {
  background: white;
  transform: scale(1.1);
}

.property-favorite i {
  transition: color 0.2s;
}

.property-favorite.active i,
.property-favorite.active:hover i {
  color: #C41E3A;
}

.property-image-wrapper {
  position: relative;
  overflow: hidden;
}

.property-logo {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.property-content {
  padding: 40px 15px 15px;
  text-align: center;
}

.property-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 22px;
  white-space: normal;
  word-break: break-word;
}

.property-details {
  font-size: 14px;
    font-weight: 400;
    color: #5a6470;
    line-height: 20px;
    margin-bottom: 6px;
    white-space: normal;
    word-break: break-word;
}

.property-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.property-card-small {
  min-width: 220px;
}

.property-card-small .property-image {
  height: 140px;
}

.property-card-small .property-content {
  padding: 15px;
  text-align: left;
}

.property-card-small .property-name {
  font-size: 14px;
  margin-bottom: 8px;
}

.property-card-small .property-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.property-card-small .property-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.property-card-small .property-status {
  font-size: 12px;
  color: var(--text-light);
}

.property-gallery-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

      

.possession-date {
  position: absolute;
  bottom: 2px;
  left: 10px;
  background: rgba(0,0,0,.5);
  color: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}


    .category-card-link {
    text-decoration: none;
    color: var(--text-dark) !important;
    border: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.category-card-link:hover {
    color: inherit;
    text-decoration: none;
}


:root {
    --text-dark: #222; /* apna color */
}

a.category-card-link {
    text-decoration: none !important;
    color: var(--text-dark) !important;
    display: block;
}

.category-card-link * {
    color: var(--text-dark) !important;
}


    /* Premium Services - FREE, EXPERT, NEW, CERTIFIED - Premium card design */
        .premium-services {
            padding: 20px 0;
            background: linear-gradient(180deg, #0a0a0d 0%, #0f0f12 50%, #141418 100%);
        }

        /* Mobile: Sell Rent Plot PG Certified - last in scroll, icon + Read more only, shorter height */
        .premium-services-above-banner .premium-card-action {
            min-width: 80px;
            max-width: 95px;
            padding: 6px 8px 8px;
        }

        .premium-services-above-banner .premium-card-action .premium-card-body {
            gap: 6px;
        }

        .premium-services-above-banner .premium-card-action .premium-card-desc {
            display: none;
        }

        .premium-services-above-banner .premium-card-action .premium-card-content {
            display: flex;
        }

        .premium-services-above-banner .premium-card-action .premium-card-title {
            font-size: 10px;
            margin-bottom: 0;
        }

        .premium-services-above-banner .premium-card-action .premium-card-icon-wrap {
            width: 26px;
            height: 26px;
        }

        .premium-services-above-banner .premium-card-action .premium-card-icon-wrap i {
            font-size: 14px;
        }

        .premium-services-above-banner .premium-card-action .premium-card-cta-row {
            margin-top: 0;
        }

        .premium-services-above-banner .premium-card-action .premium-card-cta {
            font-size: 9px;
        }

        /* Premium section - white bg, icon top, content below, read more at bottom, thinner boxes */
        .premium-services-above-banner {
            position: relative;
            padding: 6px 0 8px;
            background: #fff;
        }

        .premium-services-above-banner .premium-services-scroll {
            padding: 0 8px;
            gap: 6px;
        }

        .premium-services-above-banner .premium-card {
            min-width: 104px;
            max-width: 122px;
            padding: 3px;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: #fff !important;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);
            border: 1px solid #e5e7eb;
        }

        .premium-services-above-banner .premium-card-body {
            flex-direction: column;
            align-items: center;
            gap: 2px;
            margin-top: 0;
            width: 100%;
        }

        .premium-services-above-banner .premium-card-icon-wrap {
            position: relative;
            width: 28px;
            height: 28px;
            order: 0;
            background: rgba(196, 30, 58, 0.08) !important;
        }

        .premium-services-above-banner .premium-card-icon-wrap .premium-badge {
            top: 50%;
            left: 0;
            right: auto;
            transform: translate(-69%, -51%);
            padding: 2px 5px;
            font-size: 7px;
        }

        .premium-services-above-banner .premium-card-icon-wrap i {
            font-size: 14px;
            color: #C41E3A !important;
        }

        .premium-services-above-banner .premium-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            order: 1;
        }

        .premium-services-above-banner .premium-card-title {
            font-size: 10px;
            margin-bottom: 0;
            text-align: center;
            color: #1e293b !important;
        }

        .premium-services-above-banner .premium-card-desc {
            font-size: 8px;
            margin-bottom: 0;
            text-align: center;
            line-height: 1.3;
            color: #64748b !important;
        }

        .premium-services-above-banner .premium-card-cta-row {
            order: 2;
            margin-top: 2px;
            flex-direction: column;
            gap: 2px;
        }

        .premium-services-above-banner .premium-card-cta {
            font-size: 8px;
            color: #C41E3A !important;
        }

        .premium-services-above-banner .premium-card-cta i {
            color: #C41E3A !important;
        }

        .premium-services-above-banner .premium-badge {
            color: #fff !important;
        }

        .premium-services-scroll {
            display: flex;
            gap: 14px;
            padding: 0 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
        }

        .premium-services-scroll::-webkit-scrollbar {
            display: none;
        }

        .premium-card {
            position: relative;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            padding: 20px 22px;
            border-radius: 18px;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 270px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.15);
        }

        .premium-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%, rgba(255,255,255,0.05) 100%);
            -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;
            pointer-events: none;
        }

        .premium-card:active {
            transform: scale(0.98);
        }

        .premium-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 12px;
            font-size: 9px;
            font-weight: 800;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.25);
        }

        .premium-badge-free {
            background: linear-gradient(135deg, #D2264D 0%, #B91C3C 100%);
            color: white;
            box-shadow: 0 2px 12px rgba(210, 38, 77, 0.6);
        }

        .premium-badge-expert {
            background: linear-gradient(135deg, #F9A42F 0%, #E8951E 100%);
            color: white;
            box-shadow: 0 2px 12px rgba(249, 164, 47, 0.6);
        }

        .premium-badge-new {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6);
        }

        .premium-badge-certified {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 2px 12px rgba(59, 130, 246, 0.6);
        }

        .premium-card-body {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-top: 8px;
        }

        .premium-card-valuation {
            background: linear-gradient(135deg, #6b1a2a 0%, #8B1538 50%, #5c1525 100%);
            border: 1px solid rgba(210, 38, 77, 0.3);
        }

        .premium-card-valuation:hover {
            box-shadow: 0 8px 36px rgba(196, 30, 58, 0.4);
            transform: translateY(-2px);
        }

        .premium-card-advice {
            background: linear-gradient(135deg, #7c4a1a 0%, #a65c1f 50%, #5c3d14 100%);
            border: 1px solid rgba(249, 164, 47, 0.3);
        }

        .premium-card-advice:hover {
            box-shadow: 0 8px 36px rgba(245, 158, 11, 0.35);
            transform: translateY(-2px);
        }

        .premium-card-new {
            background: linear-gradient(135deg, #0d4d3a 0%, #047857 50%, #064e3b 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .premium-card-new:hover {
            box-shadow: 0 8px 36px rgba(16, 185, 129, 0.35);
            transform: translateY(-2px);
        }

        .premium-card-certified {
            background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .premium-card-certified:hover {
            box-shadow: 0 8px 36px rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
        }

        .premium-card-icon-wrap {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            backdrop-filter: blur(8px);
        }

        .premium-card-valuation .premium-card-icon-wrap {
            background: rgba(240, 177, 185, 0.2);
        }

        .premium-card-valuation .premium-card-icon-wrap i,
        .premium-card-consultation .premium-card-icon-wrap i {
            font-size: 24px;
            color: #F0B1B9;
            -webkit-animation: ctaIconSpin 3.5s linear infinite 0.4s both;
            animation: ctaIconSpin 3.5s linear infinite 0.4s both;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .premium-card-advice .premium-card-icon-wrap {
            background: rgba(252, 218, 144, 0.2);
        }

        .premium-card-advice .premium-card-icon-wrap i,
        .premium-card-post .premium-card-icon-wrap i {
            font-size: 24px;
            color: #FCDA90;
            -webkit-animation: ctaIconSpin 3.5s linear infinite 0.4s both;
            animation: ctaIconSpin 3.5s linear infinite 0.4s both;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .premium-card-new .premium-card-icon-wrap {
            background: rgba(167, 243, 208, 0.2);
        }

        .premium-card-new .premium-card-icon-wrap i {
            font-size: 24px;
            color: #a7f3d0;
        }

        .premium-card-certified .premium-card-icon-wrap {
            background: rgba(191, 219, 254, 0.2);
        }

        .premium-card-certified .premium-card-icon-wrap i {
            font-size: 24px;
            color: #bfdbfe;
        }

        .premium-card-content {
            flex: 1;
            min-width: 0;
        }

        .premium-card-title {
            font-size: 15px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
            letter-spacing: -0.2px;
            line-height: 1.2;
        }

        .premium-card-desc {
            font-size: 12px;
            color: rgba(255,255,255,0.85);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .premium-card-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 16px;
            align-items: center;
        }

        .premium-card-cta {
            font-size: 12px;
            font-weight: 600;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.2s ease, opacity 0.2s ease;
            text-decoration: none;
        }

        .premium-card-cta i {
            font-size: 12px;
            transition: transform 0.2s ease;
            opacity: 0.9;
        }

        .premium-card:hover .premium-card-cta i {
            transform: translateX(3px);
        }

        .premium-card:hover .premium-card-cta {
            gap: 6px;
            opacity: 1;
        }

        .premium-card:hover .premium-card-cta:hover {
            text-decoration: underline;
        }

        @media (max-width: 480px) {
            .premium-card {
                min-width: 220px;
                padding: 14px 16px;
            }

            .premium-card-icon-wrap {
                width: 44px;
                height: 44px;
            }

            .premium-card-icon-wrap i {
                font-size: 22px;
            }

            .premium-card-title {
                font-size: 14px;
            }

            .premium-card-desc {
                font-size: 11px;
            }

            .premium-card-cta {
                font-size: 12px;
            }
        }
