
img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
/* ==================== HERO SECTION (RESPONSIVE) ==================== */
.hero {
  position: relative !important;
  background: linear-gradient(120deg, #f0f8ff 0%, #e0f4ff 100%);
  z-index: 2;
  display: flex;
  align-items: flex-start; /* Kept your original alignment */
  justify-content: center;
  flex-wrap: wrap;
  /* Default Padding for Desktops/Large Screens */
  padding: 4rem 6rem; /* Increased top/bottom and side padding for a more spacious feel */

  gap: 2rem;
}

/* --- */

/* Tablet-sized screens and smaller (e.g., up to 768px) */
@media (max-width: 768px) {
  .hero {
    /* Reduced padding for medium screens */
    padding: 6rem 3rem; 
    gap: 2rem; /* Reduced gap slightly */
  }
}

/* --- */

/* Mobile-sized screens and smaller (e.g., up to 480px) */
@media (max-width: 480px) {
  .hero {
    /* Significantly reduced padding for small screens to prevent content crunching */
    padding: 4rem 1rem; /* 1rem is 16px of horizontal padding—minimal but enough */
    /* Changed alignment for mobile to center content when wrapped */
    align-items: center; 
    text-align: center; /* Optional: Center text on mobile */
  }
}

/* --- */

.hero-left {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* For mobile: align items to center when text-align is centered */
  align-items: flex-start; 
  gap: 1.5rem;
  padding:1px;
}

/* For mobile text alignment consistency */
@media (max-width: 480px) {
  .hero-left {
    align-items: center; 
  }
}
.hero-left h1 {
  font-size: 3.1rem;
  font-weight: 800;
  color: #0e3872;
  line-height: 1.5;
}

.hero-left .text-primary {
  color: var(--primary);
}

.hero-left p {
  font-size: 2.2rem;
  color: #0e3872;
  line-height: 1.5;
  font-weight: 600;
}

.avatar-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.avatar-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
}

.avatar-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #444;
}

.avatar-info strong {
  font-weight: 600;
  color: var(--secondary);
}

.avatar-info span {
  font-size: 0.8rem;
  color: #666;
}

.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  justify-content: center !important;
  color: #fff;
  padding: 14px 20px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 13px 34px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.05);
}

.btn-secondary {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: transparent;
  color: var(--secondary);
  transform: scale(1.05);
}

.stats {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stats .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stats .card .number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.stats .card .label {
  font-size: 0.875rem;
  color: #666;
}

/* ==================== HERO RIGHT - LIVE AUCTION CARD ==================== */
.hero-right {
  flex: 1;
  max-width: 480px;
  min-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}


.auction-container {
  background: white;
  border-radius: 24px;
  max-width: 380px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
  animation: cardFloat 2s ease-in-out infinite;
  position: relative;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-image-section {
  position: relative;
  padding: 20px 20px 12px 20px;
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f4f8 100%);
}

.car-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  animation: carReveal 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.6s ease;
}

.auction-container:hover .car-image {
  transform: scale(1.05) rotate(-1deg);
}

@keyframes carReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateX(-100px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.car-info-box {
  margin-top: 12px;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  animation: infoSlideUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes infoSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.car-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.car-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.7rem;
  font-weight: 600;
}

.spec-icon {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 8px;
}

.price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 2px solid #f0f0f0;
}

.current-bid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bid-label {
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.bid-amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  animation: priceUpdate 0.6s ease;
}

@keyframes priceUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    color: var(--primary);
  }
  100% {
    transform: scale(1);
  }
}

.bidders-info {
  text-align: right;
}

.bidders-count {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2c3e50;
}

.bidders-label {
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}


.winner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 10;
  padding: 20px;
}

.winner-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.winner-profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #25D366;
  margin-bottom: 12px;
  animation: profilePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  object-fit: cover;
}

@keyframes profilePop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.winner-text {
  font-size: 2.5rem;
  font-weight: 900;
  background:#25D366;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: winnerGlow 2s ease-in-out infinite;
  text-shadow: 0 0 40px #ffd700;
  margin-bottom: 6px;
}

@keyframes winnerGlow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 20px #ffd700);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 40px rgba(255, 215, 0, 1));
    transform: scale(1.1);
  }
}

.winner-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(25, 22, 22);
  margin-top: 6px;
  animation: nameSlideUp 1s ease;
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
  text-align: center;
}

@keyframes nameSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.winner-badge {
  background:#25D366;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 10px;
  animation: badgePop 1s ease;
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
  box-shadow: 0 3px 15px #25D366;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-top: 1px solid #eee;
}
.timer-section {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
}

.timer-label {
  font-size: 0.7rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1.5px;
}

.timer-display {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  font-family: 'Courier New', monospace;
  text-shadow: 0 3px 10px rgba(217, 58, 0, 0.3);
  animation: timerPulse 1s ease-in-out infinite;
}

.bid-section {
  flex: 1;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  max-width: 220px;
  min-height: 60px;
  margin: 8px auto;
}

.bid-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.bid-section:hover::before {
  width: 300px;
  height: 300px;
}

.bid-section:hover {
  transform: scale(1.05);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.bid-section:active {
  transform: scale(0.98);
}

.bid-section.closed {
  background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
  cursor: not-allowed;
  animation: none;
}



@keyframes timerPulse {
  0%, 100% {
    transform: scale(1);
    color: var(--primary-dark);
  }
  50% {
    transform: scale(1.05);
    color: var(--primary);
  }
}

.timer-display.critical {
  color: #e74c3c;
  animation: criticalBlink 0.5s ease-in-out infinite;
}

@keyframes criticalBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.confetti-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-20px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(600px) rotate(720deg);
  }
}

.bid-notification {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  animation: bidPopup 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
  z-index: 20;
}

@keyframes bidPopup {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) translateY(-80px);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Extra Large Desktop (1440px and above) - Optimization */
@media (min-width: 1440px) {
  .hero {
    padding: 3rem 5rem;
    gap: 15rem;
  }
  
  .hero-left {
    max-width: 600px;
  }
  
  .hero-right {
    max-width: 460px;
  }
  
  .auction-container {
    max-width: 420px;
  }
}

/* Large Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
  .hero {
    gap: 6rem;
    padding: 2.5rem 4rem;
  }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
  .hero {
    gap: 6rem;
    padding: 2rem 3rem;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }

  .hero-left p {
    font-size: 2rem;
  }
}

/* Tablet Landscape (900px - 1023px) */
@media (max-width: 1023px) {
  .hero {
    gap: 4rem;
    padding: 2rem 2.5rem;
  }

  .hero-left {
    max-width: 480px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left p {
    font-size: 1.8rem;
  }

  .hero-right {
    max-width: 400px;
    min-width: 340px;
  }

  .auction-container {
    max-width: 360px;
  }
}

/* Tablet Portrait (768px - 899px) */
@media (max-width: 899px) {
  .hero {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 2rem;
    min-height: auto;
    align-items: center !important;
  }

  .hero-left {
    max-width: 100%;
    align-items: center !important;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 1.6rem;
  }

  .avatar-box {
    justify-content: center;
  }

  .cta {
    justify-content: center;
    width: 100%;
  }

  .stats {
    justify-content: center;
    width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 500px;
    min-width: auto;
    padding-top: 1rem;
  }

  .auction-container {
    max-width: 100%;
  }
}

/* Small Tablet (640px - 767px) */
@media (max-width: 767px) {
  .hero {
    padding: 1.5rem 1.5rem;
    gap: 2.5rem;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1.4rem;
  }

  .avatar-box img {
    width: 55px;
    height: 55px;
  }

  .avatar-info {
    font-size: 0.85rem;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    padding: 11px 28px;
    font-size: 0.95rem;
  }

  .stats .card {
    padding: 0.9rem 1.3rem;
    min-width: 110px;
  }

  .stats .card .number {
    font-size: 1.4rem;
  }

  .hero-right {
    max-width: 420px;
  }

  .card-image-section {
    padding: 18px;
  }

  .car-name {
    font-size: 1.05rem;
  }

  .bid-section {
    font-size: 1.3rem;
    padding: 9px 18px;
    min-height: 55px;
  }

  .timer-display {
    font-size: 2rem;
  }
}

/* Mobile Large (480px - 639px) */
@media (max-width: 639px) {
  .hero {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .hero-left h1 {
    font-size: 1.75rem;
  }

  .hero-left p {
    font-size: 1.2rem;
  }

  .avatar-box {
    flex-direction: column;
    gap: 0.75rem;
  }

  .avatar-box img {
    width: 50px;
    height: 50px;
  }

  .avatar-info {
    text-align: center;
    font-size: 0.8rem;
  }

  .cta {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    width: 100%;
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .stats {
    gap: 0.75rem;
    width: 100%;
  }

  .stats .card {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 0;
    padding: 0.75rem 1rem;
  }

  .stats .card .number {
    font-size: 1.3rem;
  }

  .stats .card .label {
    font-size: 0.75rem;
  }

  .hero-right {
    min-width: 280px;
    max-width: 100%;
    padding-top: 0.5rem;
  }

  .auction-container {
    max-width: 100%;
    border-radius: 20px;
  }

  .card-image-section {
    padding: 15px;
  }

  .car-image {
    border-radius: 12px;
  }

  .car-info-box {
    padding: 10px;
    border-radius: 10px;
  }

  .car-name {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .car-specs {
    gap: 8px;
  }

  .spec-item {
    font-size: 0.65rem;
  }

  .spec-icon {
    width: 14px;
    height: 14px;
    font-size: 7px;
  }

  .bid-amount {
    font-size: 1.2rem;
  }

  .bidders-count {
    font-size: 1.1rem;
  }

  .bid-label,
  .bidders-label {
    font-size: 0.6rem;
  }

  .card-footer {
    padding: 10px;
  }

  .bid-section {
    font-size: 1.2rem;
    padding: 8px 16px;
    min-height: 50px;
    max-width: 180px;
  }

  .timer-section {
    padding: 18px;
  }

  .timer-label {
    font-size: 0.65rem;
  }

  .timer-display {
    font-size: 1.8rem;
  }

  .winner-text {
    font-size: 2rem;
  }

  .winner-profile {
    width: 65px;
    height: 65px;
  }

  .winner-name {
    font-size: 1.05rem;
  }

  .winner-badge {
    font-size: 0.65rem;
    padding: 4px 14px;
  }

  .bid-notification {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}

/* Mobile Medium (375px - 479px) */
@media (max-width: 479px) {
  .hero {
    padding: 1.25rem 0.75rem;
  }

  .hero-left h1 {
    font-size: 1.6rem;
  }

  .hero-left p {
    font-size: 1.1rem;
  }

  .avatar-box img {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary);
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  .stats .card {
    padding: 0.7rem 0.9rem;
  }

  .stats .card .number {
    font-size: 1.2rem;
  }

  .card-image-section {
    padding: 12px;
  }

  .car-specs {
    gap: 6px;
  }

  .car-specs .spec-item {
    font-size: 0.6rem;
  }

  .price-section {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .bidders-info {
    text-align: left;
  }

  .card-footer {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .bid-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .timer-section {
    width: 100%;
    padding: 15px;
  }

  .timer-display {
    font-size: 1.6rem;
  }

  .winner-text {
    font-size: 1.8rem;
  }

  .winner-profile {
    width: 60px;
    height: 60px;
  }

  .winner-name {
    font-size: 1rem;
  }
}

/* Mobile Small (320px - 374px) */
@media (max-width: 374px) {
  .hero {
    padding: 1rem 0.5rem;
    gap: 1.5rem;
  }

  .hero-left h1 {
    font-size: 1.4rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-left {
    gap: 0;
  }

  .avatar-box {
    margin-top: 0.75rem;
  }

  .avatar-box img {
    width: 40px;
    height: 40px;
  }

  .avatar-info {
    font-size: 0.75rem;
  }

  .avatar-info span {
    font-size: 0.7rem;
  }

  .cta {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .stats {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .stats .card {
    flex: 1 1 calc(50% - 0.25rem);
    padding: 0.6rem 0.75rem;
    border-radius: 1.5rem;
  }

  .stats .card .number {
    font-size: 1.1rem;
  }

  .stats .card .label {
    font-size: 0.7rem;
  }

  .hero-right {
    min-width: 100%;
    padding-top: 0;
  }

  .auction-container {
    border-radius: 18px;
  }

  .card-image-section {
    padding: 10px;
  }

  .car-image {
    border-radius: 10px;
  }

  .car-info-box {
    padding: 8px;
    margin-top: 10px;
  }

  .car-name {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .car-specs {
    gap: 5px;
    margin-bottom: 8px;
  }

  .spec-item {
    font-size: 0.55rem;
  }

  .spec-icon {
    width: 12px;
    height: 12px;
    font-size: 6px;
  }

  .price-section {
    padding-top: 8px;
  }

  .bid-label,
  .bidders-label {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }

  .bid-amount {
    font-size: 1.1rem;
  }

  .bidders-count {
    font-size: 1rem;
  }

  .card-footer {
    padding: 8px;
    gap: 8px;
  }

  .bid-section {
    font-size: 1.1rem;
    padding: 8px 14px;
    min-height: 45px;
    border-radius: 8px;
  }

  .timer-section {
    padding: 12px;
  }

  .timer-label {
    font-size: 0.6rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }

  .timer-display {
    font-size: 1.5rem;
  }

  .winner-overlay {
    padding: 15px;
  }

  .winner-profile {
    width: 55px;
    height: 55px;
    border: 2px solid #ffd700;
    margin-bottom: 10px;
  }

  .winner-text {
    font-size: 1.6rem;
  }

  .winner-name {
    font-size: 0.9rem;
    margin-top: 5px;
  }

  .winner-badge {
    font-size: 0.6rem;
    padding: 4px 12px;
    margin-top: 8px;
    border-radius: 15px;
  }

  .bid-notification {
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 10px;
  }
}

/* Ultra Small Mobile (280px - 319px) - Emergency breakpoint */
@media (max-width: 319px) {
  .hero {
    padding: 0.75rem 0.25rem;
    gap: 1rem;
  }

  .hero-left h1 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 0.9rem;
  }

  .avatar-box img {
    width: 35px;
    height: 35px;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    padding: 9px 16px;
    font-size: 0.8rem;
  }

  .stats .card {
    padding: 0.5rem 0.6rem;
  }

  .stats .card .number {
    font-size: 1rem;
  }

  .stats .card .label {
    font-size: 0.65rem;
  }

  .car-name {
    font-size: 0.85rem;
  }

  .bid-amount {
    font-size: 1rem;
  }

  .bidders-count {
    font-size: 0.9rem;
  }

  .bid-section {
    font-size: 1rem;
    padding: 7px 12px;
    min-height: 42px;
  }

  .timer-display {
    font-size: 1.3rem;
  }

  .winner-text {
    font-size: 1.4rem;
  }

  .winner-profile {
    width: 50px;
    height: 50px;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 1.5rem 2rem;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .hero-left p {
    font-size: 1.2rem;
  }

  .stats {
    margin-top: 1rem;
  }

  .hero-right {
    padding-top: 1rem;
  }

  .auction-container {
    max-width: 320px;
  }

  .card-image-section {
    padding: 12px;
  }

  .winner-text {
    font-size: 1.8rem;
  }
}

/* High DPI / Retina Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .car-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .avatar-box img,
  .winner-profile {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .auction-container {
    animation: none;
  }

  .car-image,
  .car-info-box,
  .winner-profile,
  .winner-text,
  .winner-name,
  .winner-badge {
    animation: none;
    opacity: 1;
  }

  .timer-display {
    animation: none;
  }

  .bid-section::before {
    transition: none;
  }
}

/* Print Styles */
@media print {
  .hero {
    min-height: auto;
    padding: 1rem;
    background: white;
  }

  .btn-primary,
  .btn-outline,
  .btn-secondary {
    border: 2px solid #000;
    background: white;
    color: #000;
  }

  .auction-container {
    box-shadow: none;
    border: 1px solid #000;
    animation: none;
  }

  .winner-overlay,
  .bid-notification,
  .confetti-particle {
    display: none;
  }

  .timer-display,
  .bid-section {
    animation: none;
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    min-height: 48px;
  }

  .bid-section {
    min-height: 56px;
    padding: 12px 20px;
  }

  .spec-item {
    padding: 2px;
  }
}



/* Flexbox Gap Fallback for Older Browsers */
@supports not (gap: 1rem) {
  .hero-left > * + * {
    margin-top: 0.1rem;
  }

  .cta > * + * {
    margin-left: 1rem;
  }

  .stats > * + * {
    margin-left: 1rem;
  }

  .car-specs > * + * {
    margin-left: 10px;
  }

  @media (max-width: 639px) {
    .cta > * + * {
      margin-left: 0;
      margin-top: 0.75rem;
    }
  }
}

/* ==================== FEATURES SECTION 
.features-section {
  text-align: center;
  padding: 60px 8vw;
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, #f0f8ff 0%, #e0f4ff 100%);
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2a2e3a;
}

.features-subtitle {
  font-size: 1.05rem;
  color: #657185;
  margin-bottom: 32px;
}

.features-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1).visible {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
  transition-delay: 0.2s;
}

.feature-card:nth-child(3).visible {
  transition-delay: 0.3s;
}

.feature-card:nth-child(4).visible {
  transition-delay: 0.4s;
}

.feature-icon {
  font-size: 1.3rem;
  color: #ff6600;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.15);
}

/* ==================== LIVE & UPCOMING AUCTIONS SECTION ==================== */
.live-auctions-section {
  background: #fff;
  padding: 40px 8vw;
  position: relative;
  z-index: 2;
}

.live-header {
  text-align: left;
  margin-bottom: -94px;
}

.badge {
  display: inline-block;
  background: #e0f4ff;
  color: #ff6600;
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

.live-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2a2e3a;
  margin: 4px 0;
}

.highlight {
  color: #ff6600;
}

.live-subtitle {
  font-size: 1rem;
  color: #7f8c98;
  margin-bottom: 16px;
}

.live-tabs {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: left;
  margin-bottom: 30px;
}

.tab-btn {
  background: #f9f8fd;
  border: none;
  border-radius: 32px;
  padding: 20px 38px;
  font-size: 1rem;
  font-weight: 600;
  color: #5a5471;
  cursor: pointer;
  transition: all 0.20s;
}

.tab-btn .live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff6600;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.tab-btn.active {
  background: #ff6600;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.3);
}

.live-content {
  max-width: 1100px;
  margin: 0 auto;
}

.search-wrapper {
  text-align: right;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  max-width: 400px;
  padding: 18px 24px;
  font-size: 1rem;
  border: 2px solid #ececf2;
  border-radius: 32px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #ff6600;
}

.auction-listings {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.auction-listings.active {
  display: flex;
}

.auction-row {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  padding: 5px 20px;
  gap: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.auction-row:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.seller-info {
  flex: 2;
  min-width: 220px;
}

.seller-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.seller-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.seller-badge {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
}

.vehicle-info {
  flex: 1.5;
  min-width: 180px;
}

.vehicle-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.vehicle-count span {
  font-weight: 400;
  color: #6b7280;
}

.location {
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.auction-type {
  flex: 1;
  min-width: 100px;
}

.type-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.type-badge.online {
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

.schedule-info {
  flex: 2;
  display: flex;
  gap: 20px;
  min-width: 280px;
}

.start-date,
.end-date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-icon {
  font-size: 1rem;
  color: #6b7280;
}

.date-time .date {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

.date-time .time {
  font-size: 0.8rem;
  color: #6b7280;
}

.action-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 120px;
}

.live-badge {
  background: #ff6600;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 12px;
  animation: blink 1.2s infinite;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.view-btn {
  background: #2a6cff;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.view-btn:hover {
  background: #1a4ec8;
  transform: translateY(-2px);
}
/* Match auction row style */
.no-upcoming {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-height: 120px;
}

.no-upcoming-text {
  font-weight: 600;
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
  animation: fadeIn 0.8s ease;
}

.no-upcoming-text::before {
  content: "";
  font-size: 1.2rem;
}

/* Optional hover effect */
.no-upcoming:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0,     0.06);
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==================== VEHICLE AUCTION PLATFORM SECTION ==================== */
.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.left-panel {
  flex: 1 1 40%;
  min-width: 300px;
  background: #fdf3fc;
  border: 1px solid #ffe6f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255, 102, 0, 0.2);
}

.left-panel h3 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.left-panel h3::before {
  content: '•';
  position: absolute;
  left: -24px;
  top: 0;
  color: #ff6600;
  font-size: 1.6rem;
}

.left-panel p {
  color: #7a7a89;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.features-list div {
  position: relative;
  background: linear-gradient(90deg, #fff0f5, #ffe6f0);
  border-radius: 12px;
  padding: 12px 16px 12px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  box-shadow: 2px 2px 4px rgba(255, 102, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-list div:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 12px rgba(255, 102, 0, 0.4);
}

.features-list div::before {
  content: '✔︎';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6600;
  font-weight: 700;
}

.right-panel {
  flex: 1 1 25%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.stat-card {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stat-card.primary {
  background: linear-gradient(90deg, #ff6600, #ff914d);
  color: #ffffff;
}

.stat-card.light {
  background: #fff5f0;
  color: #ff6600;
  border: 1px solid #ffd1a3;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: inherit;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: inherit;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
}

/* ==================== MOBILE APP PROMO SECTION ==================== */
/* ==================== MOBILE APP SECTION - STANDALONE ==================== */
/* Namespace: .mobapp-section to avoid conflicts */

.mobapp-section {
  position: relative;
  background: #ffffff;
 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 60px;
  overflow: hidden;
}

/* Background Decorative Circles */
.mobapp-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.1;
}

.mobapp-bg-circle-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  top: -100px;
  left: -100px;
  animation: mobappCircleFloat1 20s ease-in-out infinite;
}

.mobapp-bg-circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  bottom: -50px;
  right: -50px;
  animation: mobappCircleFloat2 15s ease-in-out infinite;
}

.mobapp-bg-circle-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #42a5f5, #1976d2);
  top: 50%;
  left: -75px;
  animation: mobappCircleFloat3 18s ease-in-out infinite;
}

@keyframes mobappCircleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}

@keyframes mobappCircleFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.2); }
}

@keyframes mobappCircleFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(0.9); }
}

/* Container */
.mobapp-section .mobapp-container {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==================== LEFT CONTENT ==================== */
.mobapp-section .mobapp-content {
  flex: 1;
  min-width: 300px;
}

.mobapp-section .mobapp-tag {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: mobappSlideInLeft 0.6s ease-out;
}

@keyframes mobappSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobapp-section .mobapp-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #0a1f44;
  animation: mobappSlideInLeft 0.6s ease-out 0.1s both;
}

.mobapp-section .mobapp-highlight {
  background: linear-gradient(120deg, #1976d2 0%, #42a5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: mobappGradientShift 3s ease infinite;
}

@keyframes mobappGradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.mobapp-section .mobapp-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
  animation: mobappSlideInLeft 0.6s ease-out 0.2s both;
}

/* Features List */
.mobapp-section .mobapp-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.mobapp-section .mobapp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
  animation: mobappSlideInLeft 0.6s ease-out both;
  opacity: 0;
}

.mobapp-section .mobapp-features li:nth-child(1) { animation-delay: 0.3s; }
.mobapp-section .mobapp-features li:nth-child(2) { animation-delay: 0.4s; }
.mobapp-section .mobapp-features li:nth-child(3) { animation-delay: 0.5s; }
.mobapp-section .mobapp-features li:nth-child(4) { animation-delay: 0.6s; }

.mobapp-section .mobapp-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #e3f2fd;
  border-radius: 50%;
  color: #1976d2;
  font-weight: bold;
  flex-shrink: 0;
}

/* App Download Buttons */
.mobapp-section .mobapp-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  animation: mobappSlideInLeft 0.6s ease-out 0.7s both;
}

.mobapp-section .mobapp-buttons img {
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.mobapp-section .mobapp-buttons img:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Stats */
.mobapp-section .mobapp-stats {
  display: flex;
  gap: 50px;
  animation: mobappSlideInLeft 0.6s ease-out 0.8s both;
}

.mobapp-section .mobapp-stat {
  text-align: left;
}

.mobapp-section .mobapp-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 5px;
}

.mobapp-section .mobapp-stat-label {
  font-size: 14px;
  color: #666;
}

/* ==================== PHONE WRAPPER ==================== */
.mobapp-section .mobapp-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  flex-shrink: 0;
  perspective: 1000px;
  animation: mobappPhoneEntry 1s ease-out, mobappPhoneFloat 6s ease-in-out 1s infinite;
}

@keyframes mobappPhoneEntry {
  0% {
    opacity: 0;
    transform: translateX(100px) rotateY(30deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes mobappPhoneFloat {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) rotateY(5deg);
  }
  50% {
    transform: translateY(0px) rotateY(0deg);
  }
  75% {
    transform: translateY(-10px) rotateY(-5deg);
  }
}

/* Glow Effect Behind Phone */
.mobapp-section .mobapp-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 140, 66, 0.2) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: mobappGlowPulse 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes mobappGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Floating Particles */
.mobapp-section .mobapp-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.6), rgba(255, 140, 66, 0.4));
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
  pointer-events: none;
  z-index: 1;
}

.mobapp-section .mobapp-particle-1 {
  width: 15px;
  height: 15px;
  top: 20%;
  left: 10%;
  animation: mobappParticleFloat1 8s ease-in-out infinite;
}

.mobapp-section .mobapp-particle-2 {
  width: 20px;
  height: 20px;
  top: 60%;
  right: 15%;
  animation: mobappParticleFloat2 10s ease-in-out infinite;
}

.mobapp-section .mobapp-particle-3 {
  width: 12px;
  height: 12px;
  bottom: 15%;
  left: 20%;
  animation: mobappParticleFloat3 7s ease-in-out infinite;
}




/* ==================== PHONE MOCKUP ==================== */
.mobapp-section .mobapp-phone {
  width: 280px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5), 
    0 0 30px rgba(255, 255, 255, 0.1),
    0 0 50px rgba(255, 107, 53, 0.2);
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.mobapp-section .mobapp-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.mobapp-section .mobapp-phone-screen {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* ==================== APP CONTENT INSIDE PHONE ==================== */

/* Top Status Bar */
.mobapp-section .mobapp-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px 12px 15px;
  background: white;
}

.mobapp-section .mobapp-live-badge-top {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.mobapp-section .mobapp-live-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  animation: mobappLivePulse 2s ease-in-out infinite;
}

@keyframes mobappLivePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0);
  }
}

.mobapp-section .mobapp-stats-icons {
  display: flex;
  gap: 15px;
}

.mobapp-section .mobapp-stat-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #999;
  font-size: 11px;
}

.mobapp-section .mobapp-stat-icon svg {
  opacity: 0.6;
}

/* Vehicle Card */
.mobapp-section .mobapp-vehicle-card {
  background: white;
  padding: 15px;
  margin: 0 15px 15px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: mobappCardEntry 0.8s ease-out 0.3s both;
}

@keyframes mobappCardEntry {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mobapp-section .mobapp-car-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
}

/* Vehicle Info */
.mobapp-section .mobapp-vehicle-info {
  padding: 0 15px 15px 15px;
  background: white;
  animation: mobappFadeInUp 0.6s ease-out 0.5s both;
}

.mobapp-section .mobapp-vehicle-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.mobapp-section .mobapp-vehicle-specs {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* Bid Section */
.mobapp-section .mobapp-bid-section {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: white;
  animation: mobappFadeInUp 0.6s ease-out 0.6s both;
}

.mobapp-section .mobapp-current-bid {
  flex: 1;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 10px;
}

.mobapp-section .mobapp-bid-label {
  font-size: 9px;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.mobapp-section .mobapp-bid-amount-large {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.mobapp-section .mobapp-time-left {
  text-align: right;
}

.mobapp-section .mobapp-time-label {
  font-size: 9px;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.mobapp-section .mobapp-countdown-timer {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
}

.mobapp-section .mobapp-time-digit {
  animation: mobappDigitFlip 1s ease-in-out infinite;
}

.mobapp-section .mobapp-time-separator {
  animation: mobappSeparatorBlink 1s ease-in-out infinite;
}

@keyframes mobappDigitFlip {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.95); }
}

@keyframes mobappSeparatorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Place Bid Button */
.mobapp-section .mobapp-place-bid-btn {
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 15px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s;
  animation: mobappFadeInUp 0.6s ease-out 0.7s both, mobappButtonGlow 2s ease-in-out infinite;
}

@keyframes mobappButtonGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.7);
  }
}

.mobapp-section .mobapp-place-bid-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

@keyframes mobappFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .mobapp-section .mobapp-container {
    flex-direction: column;
    gap: 50px;
  }

  .mobapp-section .mobapp-content {
    max-width: 100%;
    text-align: center;
  }

  .mobapp-section .mobapp-features li {
    justify-content: center;
  }

  .mobapp-section .mobapp-buttons {
    justify-content: center;
  }

  .mobapp-section .mobapp-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobapp-section {
    padding: 60px 30px;
  }

  .mobapp-section .mobapp-heading {
    font-size: 36px;
  }

  .mobapp-section .mobapp-phone {
    width: 250px;
    height: 520px;
  }

  .mobapp-section .mobapp-phone-wrapper {
    padding: 30px 20px;
  }

  .mobapp-section .mobapp-phone-glow {
    width: 250px;
    height: 250px;
  }

  .mobapp-section .mobapp-particle-1,
  .mobapp-section .mobapp-particle-2,
  .mobapp-section .mobapp-particle-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobapp-section {
    padding: 40px 20px;
  }

  .mobapp-section .mobapp-heading {
    font-size: 28px;
  }

  .mobapp-section .mobapp-description {
    font-size: 16px;
  }

  .mobapp-section .mobapp-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .mobapp-section .mobapp-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mobapp-section .mobapp-buttons img {
    width: 100%;
    max-width: 200px;
  }

  .mobapp-section .mobapp-phone {
    width: 220px;
    height: 460px;
  }
}

/* ==================== TRUSTED PARTNERS SECTION ==================== */
.partners-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
   box-shadow: 0 6px 6px rgba(0, 0, 0, 0.08);
   background: #fff;
   border-radius:8px;
   
}
  
.partners-badge {
  display: inline-block;
  background: #fff;
  color: #168fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;


}

.partners-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a1c3a;
  margin-bottom: 12px;
}

.partners-subtitle {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 50px;
}

.slider {
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.stats-section .stat-card {
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border: 1px solid #e6f0ff;
  padding: 40px 30px;
}

.badges-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-pill {
  background: linear-gradient(135deg, #ff6600 0%, #ff914d 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
  transition: transform 0.3s ease;
}

.badge-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

/* ==================== CORE VALUES SECTION ==================== */
.values-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.value-card[data-delay="0"] {
  animation-delay: 0s;
}

.value-card[data-delay="150"] {
  animation-delay: 0.15s;
}

.value-card[data-delay="300"] {
  animation-delay: 0.3s;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1c3a;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
}

.cta-card {
  background: linear-gradient(135deg, #ff6600 0%, #ff914d 100%);
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 36px rgba(255, 102, 0, 0.3);
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-btn {
  background: #fff;
  color: #ff6600;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==================== BLUE CTA SECTION ==================== */
.cta-blue {
  max-width: 900px;
  margin: 80px auto;
  padding: 80px 40px;
  background: linear-gradient(135deg, #168fff 0%, #667eea 100%);
  border-radius: 24px;
  text-align: center;
  color: #fff;
}

.cta-blue h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-blue p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-blue .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #168fff;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==================== JOURNEY CTA SECTION ==================== */
.cta-wrapper {
  max-width: 1070px;
  margin: 20px auto;
  padding: 40px 0px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.cta-wrapper h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-wrapper p {
  color: #555;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* ==================== CONTACT SECTION ==================== */
 /* ==================== CONTACT SECTION ==================== */
    .contact-section {
    max-width: 1100px;
    margin: 10px auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end; /* Keep this as start */
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Changed from 0 to 20px */
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    height: 100%; /* Added this */
}

        .contact-header {
            margin-bottom: 20px;
        }

        .contact-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0a1c3a;
            margin-bottom: 10px;
        }

        .contact-title .highlight {
            background: linear-gradient(135deg, #ff6600 0%, #ff914d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-subtitle {
            font-size: 1rem;
            color: #5a6c7d;
            line-height: 1.6;
            margin-bottom: 5px;
        }

        .contact-subtitle .brand {
            font-weight: 700;
            color: #ff6600;
        }

        .contact-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }

        .department-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0a1c3a;
            margin-bottom: 18px;
        }

        .phone-section,
        .email-section {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            background: #f8fbff;
            border-radius: 10px;
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .phone-section:hover,
        .email-section:hover {
            transform: translateX(6px);
        }

        .phone-icon,
        .email-icon {
            font-size: 1.6rem;
        }

        .label {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .number,
        .email {
            font-size: 1.05rem;
            font-weight: 700;
            color: #0a1c3a;
        }

        .business-hours {
            background: #fff5f0;
            padding: 18px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .hours-title {
            font-size: 1rem;
            font-weight: 700;
            color: #ff6600;
            margin-bottom: 12px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #ffe6d9;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 600;
            color: #0a1c3a;
        }

        .hours-time.open {
            color: #10b981;
        }

        .hours-time.closed {
            color: #ef4444;
        }

        .action-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #ff6600;
            color: #fff;
            border: none;
        }

        .btn-primary:hover {
            background: #e55a00;
        }

        .btn-secondary {
            background: #fff;
            color: #ff6600;
            border: 2px solid #ff6600;
        }

        .btn-secondary:hover {
            background: #ff6600;
            color: #fff;
        }

        /* ==================== RIGHT SIDE - OFFICE CARDS ==================== */
        .office-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .flex-container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: end;
}

        .office-card {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            min-height: 160px;
        }

        .office-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #ff6600 0%, #ff914d 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .office-card:hover::before {
            transform: scaleY(1);
        }

        .office-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(255, 102, 0, 0.15);
        }

        .office-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .office-icon {
            font-size: 1.5rem;
            color: #ff6600;
            background: #fff5f0;
            padding: 8px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .office-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: #ff6600;
            margin: 0;
        }

    .office-address {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

        .office-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.85rem;
            color: #888;
        }

        .office-badge {
            background: #f0fdf4;
            color: #10b981;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .office-badge.branch {
            background: #eff6ff;
            color: #3b82f6;
        }

        .office-badge::before {
            content: '●';
            font-size: 0.6rem;
        }

/* ==================== FOOTER ==================== */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #0b1033;
  color: #adadc2;
  font-size: 0.9rem;
  margin-top: 60px;
}

footer a {
  color: #6e4eda;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #8b6ef7;
  text-decoration: underline;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Large Tablets & Small Desktops (1024px and below) */
@media (max-width: 1024px) {
  .hero {
    padding: 3rem 4rem;
    gap: 4rem;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }

  .hero-left p {
    font-size: 1.8rem;
  }

  .live-header {
    margin-bottom: 20px;
  }

  .auction-row {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .schedule-info {
    flex-direction: column;
    gap: 8px;
  }

  .container {
    gap: 20px;
  }

  .left-panel {
    padding: 28px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

/* Tablets (900px and below) */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 3rem 3rem;
    gap: 3rem;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-left {
    align-items: center;
  }

  .cta {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .avatar-box {
    justify-content: center;
  }

  .live-tabs {
    justify-content: center;
  }

  .search-wrapper {
    text-align: center;
  }

  .search-input {
    max-width: 100%;
  }
}

/* Mobile & Small Tablets (768px and below) */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .hero-left p {
    font-size: 1.4rem;
  }

  .hero-right {
    min-width: 100%;
    padding-top: 0;
  }

  .auction-container {
    max-width: 100%;
  }

  .card-footer {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .bid-section {
    max-width: 100%;
    font-size: 1.3rem;
    min-height: 50px;
    margin: 0;
  }

  .timer-section {
    padding: 16px;
    width: 100%;
  }

  .timer-display {
    font-size: 1.8rem;
  }

  .winner-text {
    font-size: 1.8rem;
  }

  .winner-profile {
    width: 60px;
    height: 60px;
  }

  .features-section {
    padding: 40px 5vw;
  }

  .features-title {
    font-size: 1.8rem;
  }

  .features-cards {
    gap: 16px;
  }

  .feature-card {
    min-width: 100%;
    padding: 16px 20px;
  }

  .live-auctions-section {
    padding: 30px 5vw;
  }

  .live-title {
    font-size: 2rem;
  }

  .tab-btn {
    padding: 16px 28px;
    font-size: 0.95rem;
  }

  .auction-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .seller-info,
  .vehicle-info,
  .auction-type,
  .schedule-info {
    min-width: 100%;
  }

  .action-section {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    min-width: 100%;
  }

  .container {
    flex-direction: column;
    margin: 40px auto;
    padding: 0 15px;
  }

  .left-panel {
    padding: 24px;
    min-width: 100%;
  }

  .right-panel {
    flex: 1 1 100%;
    gap: 16px;
    align-items: stretch;
  }

  .stat-card {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .promo-wrap {
    flex-direction: column;
    padding: 30px 20px;
    margin: 40px auto;
  }

  .promo-left {
    min-width: 100%;
  }

  .promo-title,
  .promo-subtitle {
    font-size: 1.8rem;
  }

  .promo-stats {
    gap: 30px;
    justify-content: center;
  }

  .promo-right {
    min-width: 100%;
  }

  .partners-section {
    padding: 0 15px;
  }

  .partners-title {
    font-size: 2rem;
  }

  .partner-card {
    width: 150px;
    height: 80px;
  }

  .stats-section {
    padding: 0 15px;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-section {
    padding: 0 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-blue {
    padding: 60px 24px;
    margin: 60px 15px;
  }

  .cta-blue h2 {
    font-size: 2rem;
  }

  .cta-blue .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-white,
  .btn-outline {
    width: 100%;
  }

  .cta-wrapper {
    padding: 40px 20px;
    margin: 60px 15px;
  }

  .cta-wrapper h2 {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 15px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .contact-right {
    min-height: 350px;
  }
}

/* Small Mobile (600px and below) */
@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 1.9rem;
  }

  .hero-left p {
    font-size: 1.2rem;
  }

  .stats {
    gap: 0.75rem;
  }

  .stats .card {
    padding: 0.75rem 1rem;
  }

  .stats .card .number {
    font-size: 1.3rem;
  }

  .stats .card .label {
    font-size: 0.75rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .features-title {
    font-size: 1.6rem;
  }

  .features-subtitle {
    font-size: 0.95rem;
  }

  .live-title {
    font-size: 1.8rem;
  }

  .live-subtitle {
    font-size: 0.9rem;
  }

  .tab-btn {
    padding: 14px 24px;
    width: 100%;
    font-size: 0.9rem;
  }

  .promo-title,
  .promo-subtitle {
    font-size: 1.6rem;
  }

  .promo-desc {
    font-size: 0.95rem;
  }

  .partners-title {
    font-size: 1.6rem;
  }

  .cta-blue h2 {
    font-size: 1.6rem;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .number,
  .email {
    font-size: 1rem;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}