/* =============================================
   HOME PAGE STYLES - Used Furniture Buyer Chennai
   Optimized for SEO and Performance
   ============================================= */

/* Hero Banner - Home Page Specific */
.hero-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/used-furniture-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 6px solid var(--accent-gold);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='1.5' opacity='0.8'%3E%3Cpath d='M40 40L60 20M40 40L20 20M40 40L20 60M40 40L60 60M30 30L50 10M30 30L10 10M30 30L10 50M30 30L50 50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  animation: patternMove 60s linear infinite;
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: floatUp 20s infinite linear;
  opacity: 0.6;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  margin: 0 auto;
  max-width: 95%;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--dark-grey);
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
  color: white;
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 45px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  color: white;
  font-weight: 500;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-feature:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-feature i {
  font-size: 1.4rem;
  margin-right: 12px;
  color: var(--accent-gold);
}

.hero-feature span {
  font-weight: 600;
  font-size: 1.05rem;
  color: white;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--accent-gold);
  color: var(--dark-grey);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-hero-primary:hover:before {
  left: 100%;
}

.btn-hero-primary:hover {
  background: var(--primary-orange);
  color: var(--pure-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}

.btn-hero-secondary {
  background: rgba(0, 0, 0, 0.6);
  color: var(--pure-white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Video Section */
.video-showcase-section {
  background: var(--warm-white);
  padding: 80px 0;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-pink);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-badge i {
  font-size: 1rem;
}

.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0,0,0,0.3);
}

.play-button {
  width: 72px;
  height: 72px;
  background: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button i {
  font-size: 1.8rem;
  color: var(--primary-pink);
  margin-left: 5px;
}

.video-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--pure-white);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
}

.video-feature {
  display: flex;
  margin-bottom: 25px;
}

.video-feature:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.feature-icon i {
  font-size: 1.3rem;
  color: var(--primary-pink);
}

/* Enhanced CTA */
.enhanced-cta {
  background: var(--primary-teal);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--pure-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin: 50px 0;
}

.enhanced-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.enhanced-cta-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--dark-grey);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.enhanced-cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--pure-white);
}

.enhanced-cta p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 700px;
}

.enhanced-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.enhanced-cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: calc(33.33% - 20px);
}

.enhanced-cta-feature .feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: 5px;
  color: var(--dark-grey);
  box-shadow: var(--shadow-sm);
}

.enhanced-cta-feature .feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--pure-white);
}

.enhanced-cta-feature .feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.8;
}

.enhanced-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-cta-primary {
  background: var(--accent-gold);
  color: var(--dark-grey);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-cta-primary:hover {
  background: var(--pure-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  color: var(--primary-teal);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--pure-white);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: var(--pure-white);
}

.enhanced-cta-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.enhanced-cta-shape::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .enhanced-cta {
    padding: 40px 30px;
  }
  
  .enhanced-cta h3 {
    font-size: 2rem;
  }
  
  .enhanced-cta-feature {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .enhanced-cta {
    padding: 30px 20px;
    text-align: center;
  }
  
  .enhanced-cta-features {
    justify-content: center;
  }
  
  .enhanced-cta-feature {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .enhanced-cta-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .hero-buttons {
    gap: 15px;
  }
}

/* =============================================
   PREMIUM SERVICE SECTION - REDESIGNED
   Modern and Enhanced Design
   ============================================= */

.premium-service-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.premium-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006A5C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.premium-service-section .container {
  position: relative;
  z-index: 1;
}

/* Service Highlights */
.premium-service-content {
  padding: 20px 0;
}

.service-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-teal);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.5rem;
  color: white;
}

.highlight-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.highlight-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Service Stats */
.service-stats {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #e9ecef;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Premium Service Visual */
.premium-service-visual {
  position: relative;
  padding: 20px;
}

.main-service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-service-image:hover img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-gold), #f39c12);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-badge i {
  font-size: 1.1rem;
}

/* Floating Service Cards */
.floating-service-cards {
  position: relative;
}

.service-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  animation: float 6s ease-in-out infinite;
}

.service-card.top-left {
  top: -30px;
  left: -30px;
  animation-delay: 0s;
}

.service-card.bottom-right {
  bottom: -30px;
  right: -30px;
  animation-delay: 3s;
}

.service-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card .card-icon i {
  font-size: 1.2rem;
  color: white;
}

.service-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.service-card .card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Process Flow Section */
.process-flow-section {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.process-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.process-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 50px 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 280px;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary-teal);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: var(--primary-teal);
  transform: scale(1.1);
}

.process-step:hover .step-icon i {
  color: white;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 106, 92, 0.1);
  color: var(--primary-teal);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-tag i {
  font-size: 0.8rem;
}

.process-arrow {
  color: var(--primary-teal);
  font-size: 2rem;
  margin: 0 20px;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 991px) {
  .process-flow {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }
  
  .service-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .floating-service-cards .service-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 15px 0;
  }
}

@media (max-width: 767px) {
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .process-flow-section {
    padding: 40px 20px;
  }
  
  .step-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =============================================
   PREMIUM FURNITURE BUYERS SECTION - COMPACT DESIGN
   Space-efficient and Modern
   ============================================= */

.premium-buyers-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.premium-buyers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF6F00' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.premium-buyers-section .container {
  position: relative;
  z-index: 1;
}

/* Compact Content */
.premium-buyers-content-compact {
  padding: 20px 0;
}

.premium-buyers-content-compact h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.lead-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Compact Features */
.compact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.compact-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--primary-teal);
  transition: all 0.3s ease;
}

.compact-feature:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary-orange);
}

.feature-icon-compact {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-compact i {
  font-size: 1.2rem;
  color: white;
}

.feature-content-compact h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.feature-content-compact p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Compact CTA */
.compact-cta {
  margin-top: 25px;
}

.btn-compact-primary {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 106, 92, 0.3);
}

.btn-compact-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 106, 92, 0.4);
  text-decoration: none;
  color: white;
}

/* Compact Visual */
.premium-buyers-visual-compact {
  position: relative;
  padding: 10px;
}

.main-image-compact {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.main-image-compact img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image-compact:hover img {
  transform: scale(1.03);
}

/* Stats Overlay */
.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item-compact {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
  .premium-buyers-section {
    padding: 40px 0;
  }
  
  .compact-features {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .premium-buyers-content-compact h3 {
    font-size: 1.4rem;
  }
  
  .main-image-compact img {
    height: 250px;
  }
  
  .stats-overlay {
    flex-direction: column;
    gap: 10px;
  }
  
  .compact-feature {
    padding: 15px;
  }
}

/* =============================================
   STATS COUNTER DESIGN - Professional Service Section
   Modern Counter Design
   ============================================= */

.stats-counter {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
  position: relative;
  overflow: hidden;
}

.stats-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 106, 92, 0.02), rgba(255, 111, 0, 0.02));
  z-index: 0;
}

.stats-counter:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary-orange);
}

.counter-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-teal), #65625f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.counter-icon i {
  font-size: 1.25rem;
  color: white;
}

.stats-counter:hover .counter-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 106, 92, 0.3);
}

.counter-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.counter-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Responsive Design for Stats Counter */
@media (max-width: 767px) {
  .stats-counter {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
  
  .counter-icon {
    width: 60px;
    height: 60px;
  }
  
  .counter-icon i {
    font-size: 1.25rem;
  }
  
  .counter-value {
    font-size: 2rem;
  }
  
  .counter-label {
    font-size: 0.9rem;
  }
}
