.property-highlights {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .property-highlights li {
        padding: 5px 0;
        font-size: 0.95em;
        color: #333;
    }
    .property-highlights li:before {
        content: "✓ ";
        color: #28a745;
        font-weight: bold;
        margin-right: 5px;
    }
    .location-highlights {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .location-highlights li {
        padding: 3px 0;
        font-size: 0.9em;
        color: #666;
    }
    .location-highlights li:before {
        content: "📍 ";
        margin-right: 5px;
    }
    .asset-gallery .asset-item {
        display: block;
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .asset-gallery .asset-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        text-decoration: none;
        color: inherit;
    }
    .asset-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
    }
    .asset-file {
        display: flex;
        align-items: center;
        padding: 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 1px solid #dee2e6;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    .asset-file:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--file-color, #007bff);
        transform: scaleX(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .asset-file:hover {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-color: var(--file-color, #007bff);
        transform: translateY(-2px);
    }
    .asset-file:hover:before {
        transform: scaleX(1);
    }
    .asset-file-icon {
        font-size: 40px;
        margin-right: 15px;
        color: var(--file-color, #007bff);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .asset-file:hover .asset-file-icon {
        transform: scale(1.1);
    }
    .asset-file-info h6 {
        margin: 0 0 5px 0;
        font-weight: 600;
        color: #333;
    }
    .asset-file-info small {
        color: #666;
        line-height: 1.4;
    }
    .plot-card {
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
    }
    .plot-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }
    .approval-badge {
        display: inline-block;
        background: linear-gradient(135deg, #e7f3ff 0%, #cce7ff 100%);
        color: #0066cc;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 0.8em;
        margin: 3px;
        font-weight: 500;
        border: 1px solid rgba(0, 102, 204, 0.2);
    }
    .callback-form {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        border: 1px solid #e9ecef;
    }
    .key-location-item {
        padding: 15px;
        border-left: 4px solid #007bff;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 0 8px 8px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .key-location-item:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .specs .icon-room {
        color: #007bff;
    }
    .asset-section {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .asset-section h6 {
        color: #495057;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: capitalize;
        font-size: 1.1em;
        position: relative;
        padding-left: 12px;
    }
    .asset-section h6:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: #007bff;
        border-radius: 2px;
    }
    .quick-info-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    }
    .info-stat {
        text-align: center;
    }
    .info-stat h4 {
        margin: 0;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .info-stat small {
        opacity: 0.9;
        font-weight: 500;
    }
    .badge {
        border-radius: 8px;
        font-weight: 500;
        padding: 6px 12px;
    }
    
    /* Enhanced image gallery */
    .img-property-slide img {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    
    /* Smooth scrolling for sticky sidebar */
    .sticky-top {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* File type specific colors */
    .asset-file[data-type="pdf"] {
        --file-color: #dc3545;
    }
    .asset-file[data-type="doc"] {
        --file-color: #007bff;
    }
    .asset-file[data-type="excel"] {
        --file-color: #28a745;
    }
    .asset-file[data-type="ppt"] {
        --file-color: #fd7e14;
    }
    .asset-file[data-type="archive"] {
        --file-color: #6f42c1;
    }
    .hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px; /* default height for PC */
}

/* Mobile view */
@media (max-width: 768px) {
  .hero {
    height: 250px;             /* decrease height on mobile 
    background-size: contain;  /* zoom out to show full image 
    background-position: top;  /* adjust alignment */
  }
}

/* ADD THESE STYLES TO property-single.css */

/* Project Title and Description Styles */
.project-details-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Enhanced Contact Section */
.project-contact-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #bbdefb;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.contact-section-title,
.form-section-title {
    color: #1976d2;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-buttons-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 80px;
    justify-content: center;
}

.contact-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.contact-btn:hover:before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.contact-number,
.contact-email {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Callback Form Enhancements */
.callback-request-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
}

.callback-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.callback-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    border-radius: 20px 20px 0 0;
}

.input-group-text {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    width: 45px;
    justify-content: center;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.submit-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .project-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .project-details-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .project-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-heading {
        font-size: 1.1rem;
    }
    
    .project-contact-info {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-btn {
        padding: 0.75rem;
        min-height: 70px;
        font-size: 0.9rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-number,
    .contact-email {
        font-size: 0.9rem;
    }
    
    .callback-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .callback-request-section {
        padding: 1rem;
    }
    
    .input-group-text {
        width: 40px;
        font-size: 0.9rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.65rem;
        font-size: 1rem; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    /* Single column layout for contact buttons on mobile */
    .contact-buttons-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 1.3rem;
    }
    
    .project-details-section {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
    
    .callback-form {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .project-contact-info {
        padding: 0.75rem;
    }
    
    .contact-btn {
        padding: 0.6rem;
        min-height: 60px;
        font-size: 0.85rem;
    }
    
    .btn-whatsapp {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .callback-request-section {
        padding: 0.75rem;
    }
}

/* Tablet landscape adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Large screens */
@media (min-width: 1025px) {
    .contact-buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .contact-btn {
        min-height: 90px;
    }
}
@media (max-width: 768px) {
  .specs {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .specs span {
    justify-content: flex-start;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .property-highlights li,
  .location-highlights li {
    font-size: 0.9rem;
    padding: 4px 0;
  }
  
  .list-unstyled li {
    margin-bottom: 0.75rem !important;
  }
}

.card {
  border: none;
  border-radius: 12px;
}

.card-header {
  border-radius: 12px 12px 0 0 !important;
  border-bottom: none;
  padding: 1rem 1.25rem;
}

.property-highlights li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}

.location-highlights li:before {
  content: "📍 ";
  margin-right: 8px;
}

.specs .caption {
  font-size: 0.95rem;
  color: #6c757d;
}

.badge {
  font-size: 0.8rem;
  padding: 0.5em 0.75em;
}

/* Stats Row Layout */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 0;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  flex: 1;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #dee2e6;
  margin: 0 1rem;
}

/* Contact Form PC Fix */
@media (min-width: 992px) {
  .col-lg-4 .sticky-top {
    position: sticky !important;
    top: 120px !important;
    z-index: 10;
  }
  
  .callback-form {
    margin-top: 0;
    max-width: 100%;
  }
  
  /* Ensure sidebar doesn't overlap */
  .col-lg-7 {
    padding-right: 2rem;
  }
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .stats-row {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  
  .stat-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0.5rem;
  }
  
  .stat-icon {
    margin-right: 1rem;
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  
  .stat-content {
    display: flex;
    flex-direction: column;
  }
  
  .stat-divider {
    display: none;
  }
  
  .col-lg-4 {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .card-body {
    padding: 1rem;
  }
  
  .property-highlights li,
  .location-highlights li {
    font-size: 0.9rem;
    padding: 4px 0;
  }
  
  .list-unstyled li {
    margin-bottom: 0.75rem !important;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

.card {
  border: none;
  border-radius: 12px;
}

.card-header {
  border-radius: 12px 12px 0 0 !important;
  border-bottom: none;
  padding: 1rem 1.25rem;
}

.property-highlights li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}

.location-highlights li:before {
  content: "📍 ";
  margin-right: 8px;
}

.badge {
  font-size: 0.8rem;
  padding: 0.5em 0.75em;
}

/* Desktop Layout Fix */
@media (min-width: 992px) {
  .sidebar-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  
  .col-lg-7 {
    padding-right: 2rem;
  }
  
  .col-lg-4 {
    padding-left: 1rem;
  }
  
  .callback-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
  }
  
  .quick-info-card {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Layout */
@media (max-width: 991px) {
  .sidebar-wrapper {
    margin-top: 2rem;
    position: relative;
  }
  
  .callback-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
  }
  
  .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Form styling improvements */
.callback-form-wrapper .form-control,
.callback-form-wrapper .form-select {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  font-size: 0.95rem;
}

.callback-form-wrapper .form-control:focus,
.callback-form-wrapper .form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.callback-form-wrapper .btn-primary {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.callback-form-wrapper .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 0;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  flex: 1;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #dee2e6;
  margin: 0 1rem;
}

/* Contact Form PC Fix */
@media (min-width: 992px) {
  .col-lg-4 .sticky-top {
    position: sticky !important;
    top: 120px !important;
    z-index: 10;
  }
  
  .callback-form {
    margin-top: 0;
    max-width: 100%;
  }
  
  /* Ensure sidebar doesn't overlap */
  .col-lg-7 {
    padding-right: 2rem;
  }
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .stats-row {
    flex-direction: row; /* Keep horizontal on mobile */
    gap: 0.5rem;
    padding: 1rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex-direction: column; /* Keep vertical alignment */
    text-align: center;
    flex: 1;
    min-width: 0; /* Allow shrinking */
  }
  
  .stat-icon {
    margin-right: 0;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
  }
  
  .stat-content {
    display: flex;
    flex-direction: column;
  }
  
  .stat-divider {
    width: 1px;
    height: 40px;
    margin: 0 0.5rem;
  }
  
  .col-lg-4 {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .card-body {
    padding: 1rem;
  }
  
  .property-highlights li,
  .location-highlights li {
    font-size: 0.9rem;
    padding: 4px 0;
  }
  
  .list-unstyled li {
    margin-bottom: 0.75rem !important;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

.card {
  border: none;
  border-radius: 12px;
}

.card-header {
  border-radius: 12px 12px 0 0 !important;
  border-bottom: none;
  padding: 1rem 1.25rem;
}

.property-highlights li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}

.location-highlights li:before {
  content: "📍 ";
  margin-right: 8px;
}

.badge {
  font-size: 0.8rem;
  padding: 0.5em 0.75em;
}

.key-location-card {
  display: flex;
  min-height: 140px;
  transition: all 0.3s ease;
  background: white;
}

.key-location-card:hover {
  background: #f8f9fa;
}

.location-image-section {
  flex: 0 0 120px;
  position: relative;
  overflow: hidden;
}

.location-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.key-location-card:hover .location-featured-image {
  transform: scale(1.05);
}

.location-placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 2rem;
}

.location-type-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
}

.primary-location-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #333;
  padding: 3px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-content-section {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-header {
  margin-bottom: 0.75rem;
}

.location-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.location-meta {
  margin-bottom: 0.5rem;
}

.distance-badge {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.highlight-pill {
  background: #e8f4fd;
  color: #0066cc;
  padding: 3px 6px;
  border-radius: 8px;
  font-size: 0.7rem;
  border: 1px solid #cce7ff;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.highlight-pill.more-highlights {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

.highlight-pill i {
  font-size: 0.6rem;
  opacity: 0.8;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .key-location-card {
    flex-direction: column;
    min-height: auto;
  }
  
  .location-image-section {
    flex: none;
    height: 120px;
  }
  
  .location-content-section {
    padding: 0.75rem;
  }
  
  .location-title {
    font-size: 0.95rem;
  }
  
  .highlight-pill {
    font-size: 0.65rem;
    padding: 2px 5px;
  }
  
  .distance-badge {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  /* Remove borders on mobile for cleaner look */
  .key-location-card {
    border-bottom: 1px solid #e9ecef !important;
    border-end: none !important;
  }
  
  .key-location-card:last-child {
    border-bottom: none !important;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .location-image-section {
    height: 100px;
  }
  
  .location-content-section {
    padding: 0.5rem;
  }
  
  .location-title {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .location-highlights {
    gap: 0.3rem;
  }
  
  .highlight-pill {
    font-size: 0.6rem;
    padding: 2px 4px;
  }
}

/* Animation for smooth loading */
.key-location-card {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Contact Details Card Styles */
.contact-details-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.contact-header h5 {
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-header .header-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    opacity: 0.9;
}

.contact-body {
    padding: 2rem;
    background: white;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-item:hover {
    background: #e3f2fd;
    border-left-color: #007bff;
    transform: translateX(5px);
}

.contact-item:last-child {
    margin-bottom: 0;
}



.contact-icon.primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.contact-icon.secondary {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}



.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    word-break: break-all;
}

.contact-action {
    margin-left: 1rem;
    flex-shrink: 0;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
}

.action-btn.call {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.action-btn.email {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
    margin: 1.5rem 0;
}

.contact-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.contact-footer-text {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.availability-badge .pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-body {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .contact-action {
        margin-left: 0;
        margin-top: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    .contact-footer {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-header {
        padding: 1.25rem;
    }
    
    .contact-body {
        padding: 1.25rem;
    }
    
    .contact-item {
        padding: 1rem 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}