
   /* Responsive - Tablet */
        @media (min-width: 821px) and (max-width: 1200px) {
            .bottom-nav-content {
                max-width: 100%;
            }

            .project-card {
                width: 300px;
            }

            .property-card {
                width: 260px;
            }

            .agent-card {
                width: 300px;
            }

            .premium-services-scroll {
                padding: 0 24px;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 576px) {
            .project-card {
                width: 260px;
            }

            .property-card {
                width: 220px;
            }

            .agent-card {
                width: 260px;
            }

            .popup-form {
                max-width: 100%;
                border-radius: 16px;
            }

            .popup-header {
                border-radius: 16px 16px 0 0;
                padding: 20px;
            }

            .popup-title {
                font-size: 20px;
            }

            .popup-body {
                padding: 20px;
            }
        }

        @media (max-width: 400px) {
            .search-box {
                padding: 8px 12px;
                gap: 8px;
            }

            .search-dropdown {
                font-size: 13px;
                padding-right: 8px;
            }

            .ai-mode {
                padding: 5px 10px;
                font-size: 11px;
            }

/*            .ai-mode span {
                display: none;
            }*/

            .post-property-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .premium-card {
                min-width: 240px;
            }

            .project-card {
                width: 240px;
            }

            .property-card {
                width: 200px;
            }

            .agent-card {
                width: 240px;
            }
        }
        
        
         /* Popup Form */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            z-index: 2999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        .popup-form {
            background-color: white;
            border-radius: 20px;
            padding: 0;
            width: 100%;
            max-width: 450px;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

       

        /* Prevent background scrolling while modal open */
        body.modal-open {
            overflow: hidden !important;
            height: 100%;
            touch-action: none;
        }

        .popup-overlay.active .popup-form {
            transform: scale(1);
        }

        /* Premium profile modal (reference style) */
       

        .popup-header {
            background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
            color: white;
            padding: 24px;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            color: white;
            cursor: pointer;
            background: rgba(255,255,255,0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .popup-close:hover {
            background-color: rgba(255,255,255,0.3);
        }

        .popup-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .popup-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }

        .popup-body {
            padding: 24px;
        }

        .ai-voice-body {
            text-align: center;
        }

        .ai-voice-placeholder {
            padding: 24px 0;
        }

        .ai-voice-placeholder .ai-voice-icon {
            font-size: 48px;
            color: #C41E3A;
            margin-bottom: 12px;
        }

        .ai-voice-placeholder p {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .ai-voice-btn {
            padding: 12px 24px;
            background: #C41E3A;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
        }

        .ai-voice-btn:hover {
            background: #8B1538;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-label .required {
            color: #C41E3A;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
            background-color: #fafafa;
        }

        .form-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: #C41E3A;
            background-color: white;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }

        .checkbox-group {
            margin-bottom: 16px;
        }

        .checkbox-item {
            display: flex;
            align-items: start;
            gap: 12px;
            padding: 12px;
            background-color: #fafafa;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .checkbox-item:hover {
            background-color: #f0f0f0;
        }

        .checkbox-item input[type="checkbox"] {
            margin-top: 2px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #C41E3A;
        }

        .checkbox-item label {
            font-size: 14px;
            color: #333;
            cursor: pointer;
            flex: 1;
            line-height: 1.5;
            user-select: none;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }
        
        
        
         /* Project Property CTA Section */
        .project-property-cta-section {
            background: #f5f0e8;
            padding: 28px 16px;
        }
        .project-property-cta-inner {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px 24px;
        }
        .project-property-cta-top {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
            min-width: 200px;
        }
        .project-property-cta-image {
            flex-shrink: 0;
            width: 160px;
            height: 160px;
            border-radius: 12px;
            overflow: hidden;
            background: #e8e4dc;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .project-property-cta-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .project-property-cta-content {
            flex: 1;
            min-width: 0;
        }
        .project-property-cta-tagline {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .project-property-cta-heading {
            font-size: 22px;
            font-weight: 700;
            color: #2d3748;
            margin: 0;
            line-height: 1.35;
        }
        .project-property-cta-highlight {
            color: #C41E3A;
        }
        .project-property-cta-action {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .project-property-cta-buttons-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .project-property-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            background: #C41E3A;
            color: #fff;
            box-shadow: 0 4px 14px rgba(196, 30, 58, 0.3);
        }
        .project-property-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
            background: #a91a30;
        }
        .project-property-cta-consultation {
            background: #fff;
            color: #C41E3A;
            border: 2px solid #C41E3A;
            box-shadow: none;
        }
        .project-property-cta-consultation:hover {
            background: #fef2f2;
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
        }
        .project-property-cta-icon-wrap {
            display: inline-flex;
            margin-right: 6px;
            -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;
        }
        .project-property-cta-btn i {
            font-size: 16px;
        }
        @-webkit-keyframes ctaIconSpin {
            0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
            100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
        }
        @keyframes ctaIconSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .project-property-cta-note {
            font-size: 12px;
            color: #4a5568;
            margin: 10px 0 0;
        }
        @media (max-width: 821px) {
            .project-property-cta-section {
                padding: 16px 16px;
                margin: 16px 0;
            }
            .project-property-cta-inner {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
            }
            .project-property-cta-note {
                margin: 10px 0 0;
            }
            .project-property-cta-top {
                flex-direction: row;
                text-align: left;
                gap: 16px;
                min-width: 0;
            }
            .project-property-cta-content {
                min-width: 0;
            }
            .project-property-cta-heading {
                font-size: 18px;
            }
            .project-property-cta-image {
                width: 100px;
                height: 100px;
                flex-shrink: 0;
            }
            .project-property-cta-action {
                align-items: stretch;
            }
            .project-property-cta-buttons-wrap {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
            .project-property-cta-btn {
                flex: 1;
                min-width: 130px;
                padding: 12px 16px;
                font-size: 14px;
            }
        }
        @media (max-width: 480px) {
            .project-property-cta-section {
                padding: 14px 12px;
                margin: 14px 0;
            }
            .project-property-cta-inner {
                gap: 14px;
            }
            .project-property-cta-action {
                gap: 0;
                margin-bottom: -17px;
            }
            .project-property-cta-note {
                margin: 8px 0 0;
            }
            .project-property-cta-top {
                gap: 12px;
            }
            .project-property-cta-tagline {
                font-size: 12px;
            }
            .project-property-cta-heading {
                font-size: 16px;
            }
            .project-property-cta-image {
                width: 80px;
                height: 80px;
            }
            .project-property-cta-buttons-wrap {
                flex-direction: row;
                gap: 8px;
                justify-content: center;
            }
            .project-property-cta-btn {
                flex: 1;
                min-width: 0;
                padding: 10px 12px;
                font-size: 13px;
            }
            .project-property-cta-icon-wrap {
                margin-right: 4px;
            }
            .project-property-cta-btn i {
                font-size: 14px;
            }
        }
      
        .contact-agent-btn {
            flex: 1;
            padding: 4px 2px;
            border: 2px solid #C41E3A;
            background-color: white;
            color: #C41E3A;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .contact-agent-btn:hover {
            background-color: #C41E3A;
            color: white;
        }


/* Default (Desktop/System View) */
.systemview {
    display: block;
}
.mbileview {
    display: none;
}

/* Mobile View (0px – 1100px) */
@media (max-width: 1100px) {
    .systemview {
        display: none;
    }
    .mbileview {
        display: block;
    }
}


        /*extra we can check bad me*/
        

.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);
}

 


/* Desktop search filter popup */
@media (min-width: 768px) {
    .search-filter-overlay {
        align-items: center;
    }

    .search-filter-popup {
        border-radius: 20px;
        /*max-height: 80vh;*/
    }

    .share-overlay {
        align-items: center;
    }

    .share-popup {
        border-radius: 20px;
    }

    .share-options {
        grid-template-columns: repeat(6, 1fr);
    }
}




/* ==================== */
/* SHARE POPUP */
/* ==================== */
.share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.share-overlay.active {
    opacity: 1;
    visibility: visible;
}

.share-popup {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.share-overlay.active .share-popup {
    transform: translateY(0);
}

.share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.share-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.close-share {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.2s;
}

.close-share:hover {
    background: #e0e0e0;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 20px 32px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s;
}

.share-option:hover {
    background: #f5f5f5;
}

.share-option i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.share-option[data-platform="whatsapp"] i {
    background: #25D366;
}

.share-option[data-platform="facebook"] i {
    background: #1877F2;
}

.share-option[data-platform="twitter"] i {
    background: #1DA1F2;
}

.share-option[data-platform="telegram"] i {
    background: #0088CC;
}

.share-option[data-platform="email"] i {
    background: #EA4335;
}

.share-option[data-platform="copy"] i {
    background: #666;
}

.share-option span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Copy success animation */
.share-option.copied i {
    background: #4CAF50 !important;
}

.share-option.copied span {
    color: #4CAF50;
}

/* Floating Chat Stack - right side, above footer (AI + Chatbox, premium design) */
        .float-chat-stack {
            position: fixed;
            bottom: 100px;
            right: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 999;
        }

        .float-chat-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .float-chat-ai {
            background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
            color: #fff;
            box-shadow: 0 4px 20px rgba(196, 30, 58, 0.45), 0 2px 8px rgba(0,0,0,0.08);
        }

        .float-chat-ai:hover {
            background: linear-gradient(135deg, #6B0F28 0%, #8B1538 100%);
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(196, 30, 58, 0.5), 0 4px 12px rgba(0,0,0,0.1);
        }

        .float-chat-box {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
            color: #fff;
            box-shadow: 0 4px 20px rgba(45, 90, 135, 0.4), 0 2px 8px rgba(0,0,0,0.08);
        }

        .float-chat-box:hover {
            background: linear-gradient(135deg, #152a45 0%, #1e3a5f 100%);
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(45, 90, 135, 0.5), 0 4px 12px rgba(0,0,0,0.1);
        }

        .float-chat-btn:active {
            transform: scale(0.96);
        }

        .chat-popup-body .chat-placeholder {
            text-align: center;
            padding: 32px 24px;
        }

        .chat-placeholder-icon {
            font-size: 48px;
            color: #C41E3A;
            margin-bottom: 16px;
        }

        .chat-placeholder p {
            color: #4b5563;
            margin-bottom: 8px;
        }

        .chat-placeholder-hint {
            font-size: 14px;
            color: #9ca3af;
        }
