* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f4f7fc;
  color: #1e2a3e;
  line-height: 1.4;
}

/* NTSA-inspired palette: deep blues, gold accents */
:root {
  --ntsa-dark: #0b2b3b;
  --ntsa-blue: #1c6e8f;
  --ntsa-gold: #e7b42c;
  --ntsa-gold-dark: #c4910a;
  --ntsa-light-bg: #eef3f7;
  --ntsa-card: #ffffff;
  --ntsa-success: #1f8a4c;
  --ntsa-warning: #d9534f;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

/* header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo i {
  font-size: 2.2rem;
  color: var(--ntsa-gold);
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(
    135deg,
    var(--ntsa-dark) 0%,
    var(--ntsa-blue) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.tagline {
  color: #2c5a6e;
  font-weight: 500;
  background: rgba(28, 110, 143, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
}

/* hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2.5rem 0 3rem;
}

.hero-text {
  flex: 1.2;
}

.hero-text .badge {
  background: var(--ntsa-gold);
  color: #1e2a3e;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ntsa-dark);
}

.hero-text h2 span {
  color: var(--ntsa-blue);
  border-bottom: 3px solid var(--ntsa-gold);
  display: inline-block;
}

.hero-text p {
  font-size: 1.2rem;
  color: #2c495b;
  margin-bottom: 1.8rem;
  max-width: 90%;
}

.pain-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.pain-card {
  background: white;
  border-radius: 24px;
  padding: 0.6rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

.hero-image {
  flex: 1;
  background: linear-gradient(145deg, #ffffff, #eef2f5);
  border-radius: 48px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.mock-qr {
  background: white;
  border-radius: 32px;
  padding: 1rem;
  display: inline-block;
}

.mock-qr i {
  font-size: 7rem;
  color: var(--ntsa-dark);
}

/* Add these to your existing styles.css */

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ntsa-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ntsa-gold);
}

.nav-cta {
  background: var(--ntsa-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  color: var(--ntsa-dark) !important;
}

.nav-cta:hover {
  background: var(--ntsa-gold-dark);
  transform: translateY(-2px);
}

/* SEO Section */
.seo-section {
  margin: 3rem 0;
  padding: 2rem;
  background: white;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}

.seo-content h2 {
  color: var(--ntsa-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

.seo-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.seo-text {
  flex: 2;
}

.seo-text p {
  color: #4a6272;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.seo-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.seo-stats .stat {
  text-align: center;
  flex: 1;
}

.seo-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ntsa-blue);
}

.seo-stats .stat-label {
  font-size: 0.8rem;
  color: #6c757d;
}

.seo-image {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, #eef3f7, #ffffff);
  padding: 2rem;
  border-radius: 24px;
}

.seo-image i {
  font-size: 4rem;
  color: var(--ntsa-gold);
  margin-bottom: 1rem;
}

.seo-image p {
  color: var(--ntsa-dark);
  font-weight: 500;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .seo-grid {
    flex-direction: column;
  }

  .seo-stats {
    flex-direction: column;
    align-items: center;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    max-width: 100%;
  }

  .value-props {
    flex-direction: column;
  }

  .roi-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    justify-content: center;
  }

  .steps {
    flex-direction: column;
  }

  .finder-buttons {
    flex-direction: column;
  }

  .finder-buttons .btn {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }
}

/* Button disabled state */
.btn:disabled,
.btn-register:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Input focus states */
.input-group input:focus {
  outline: none;
  border-color: var(--ntsa-blue);
  box-shadow: 0 0 0 3px rgba(28, 110, 143, 0.1);
}

/* QR Preview styling */
#qrPreview {
  transition: all 0.3s ease;
}

#qrImage {
  transition: all 0.3s ease;
}

.qr-download {
  transition: all 0.3s ease;
}

.qr-download:hover {
  transform: translateY(-2px);
}

/* Toast notifications */
.notification-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--ntsa-gold);
  outline-offset: 2px;
}

/* ===== NEW SELLING SECTION: For Car Owners ===== */
.sell-section {
  background: linear-gradient(135deg, #0b2b3b 0%, #1c6e8f 100%);
  border-radius: 48px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  color: white;
  box-shadow: var(--shadow-md);
}

.sell-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sell-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.sell-header h2 i {
  color: var(--ntsa-gold);
  margin-right: 0.5rem;
}

.sell-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 32px;
  padding: 1.8rem;
  flex: 1;
  min-width: 220px;
  text-align: center;
  transition: transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
}

.value-card i {
  font-size: 2.8rem;
  color: var(--ntsa-gold);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
}

.roi-banner {
  background: var(--ntsa-gold);
  color: #1e2a3e;
  border-radius: 60px;
  padding: 1.2rem 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  font-weight: 700;
}

.roi-banner span {
  font-size: 1.2rem;
}

.roi-banner i {
  margin-right: 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-gold-solid {
  background: var(--ntsa-gold);
  color: #1e2a3e;
}

.btn-gold-solid:hover {
  background: var(--ntsa-gold-dark);
  transform: scale(1.02);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Testimonial section */
.testimonial-section {
  background: #e7f0f5;
  border-radius: 32px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

/* FAQ Section */
.faq-item {
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* steps section */
.section-title {
  text-align: center;
  margin: 3rem 0 1.5rem;
}

.section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ntsa-dark);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.step {
  background: var(--ntsa-card);
  border-radius: 32px;
  padding: 1.8rem;
  flex: 1;
  min-width: 220px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.step-icon {
  background: #eef3fa;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.step-icon i {
  font-size: 2rem;
  color: var(--ntsa-blue);
}

/* demo scanner */
.scanner-demo {
  background: var(--ntsa-card);
  border-radius: 40px;
  margin: 3rem 0;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 8px solid var(--ntsa-gold);
}

.finder-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 60px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary {
  background: var(--ntsa-blue);
  color: white;
}

.btn-gold {
  background: var(--ntsa-gold);
  color: #1e2a3e;
}

.notification-toast {
  background: #e9f7ef;
  border-radius: 60px;
  padding: 0.8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

/* registration panel */
.register-panel {
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.input-group {
  flex: 1;
  min-width: 180px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.input-group input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 40px;
  border: 1px solid #cddfe8;
}
/* Add to public/css/style.css */

/* Error styling for inputs */
.input-group input.input-error {
  border-color: #dc3545 !important;
  background-color: #fff8f8 !important;
}

.input-group.has-error label {
  color: #dc3545;
}

/* Alert message styles */
.alert-message {
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Field error message styling */
#regMessage {
  transition: all 0.3s ease;
}

/* Small error text styling */
small[id^="error-"] {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

small[id^="error-"] i {
  font-size: 0.7rem;
}

.btn-register {
  background: var(--ntsa-dark);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.alert-message {
  background: #eef2fa;
  padding: 0.7rem;
  border-radius: 60px;
  text-align: center;
  margin-top: 1rem;
}

/* Blog Section */
.blog-section {
  margin: 4rem 0;
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  color: var(--ntsa-dark);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header h2 i {
  color: var(--ntsa-gold);
  margin-right: 0.5rem;
}

.section-header p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.view-all-link {
  display: inline-block;
  color: var(--ntsa-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.view-all-link:hover {
  color: var(--ntsa-gold);
  transform: translateX(5px);
}

.view-all-link i {
  transition: transform 0.3s;
}

.view-all-link:hover i {
  transform: translateX(5px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #eef3f7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-image i {
  font-size: 4rem;
  color: var(--ntsa-blue);
  transition: transform 0.3s;
}

.blog-card:hover .blog-image i {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.blog-date {
  color: #6c757d;
}

.blog-date i {
  margin-right: 0.3rem;
}

.blog-category {
  background: rgba(231, 180, 44, 0.15);
  color: var(--ntsa-gold-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

.blog-card h3 {
  color: var(--ntsa-dark);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card p {
  color: #4a6272;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--ntsa-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--ntsa-gold);
  gap: 0.5rem;
}

/* Blog Page Styles */
.blog-hero {
  background: linear-gradient(135deg, #0b2b3b 0%, #1c6e8f 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 32px;
  margin-bottom: 3rem;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.blog-sidebar {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.blog-sidebar h3 {
  color: var(--ntsa-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ntsa-gold);
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  color: #4a6272;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
}

.category-list a:hover {
  color: var(--ntsa-gold);
}

.category-list .count {
  color: #6c757d;
  font-size: 0.8rem;
}

/* Single Blog Post */
.blog-post {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.blog-post h1 {
  color: var(--ntsa-dark);
  margin-bottom: 1rem;
}

.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.blog-post-content {
  line-height: 1.8;
  color: #4a6272;
}

.blog-post-content h2 {
  color: var(--ntsa-dark);
  margin: 1.5rem 0 1rem;
}

.blog-post-content p {
  margin-bottom: 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-item {
  display: inline-block;
}

.page-link {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: var(--ntsa-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.page-link:hover,
.page-item.active .page-link {
  background: var(--ntsa-blue);
  color: white;
  border-color: var(--ntsa-blue);
}

/* Responsive Blog */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 1.8rem;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .blog-post-meta {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}

.findsbin-footer {
  background: linear-gradient(135deg, #0b2b3b 0%, #1a4b63 100%);
  color: #eef3f7;
  font-family: "Inter", sans-serif;
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}

/* Main footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Brand column */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand .logo i {
  font-size: 2rem;
  color: #e7b42c;
}

.footer-brand .logo h3 {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e7b42c 0%, #ffd966 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-brand p {
  color: #cbdde6;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #eef3f7;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: #e7b42c;
  color: #0b2b3b;
  transform: translateY(-2px);
}

/* Footer headings */
.footer-col h4 {
  color: #e7b42c;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #e7b42c;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #cbdde6;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li a i {
  font-size: 0.8rem;
  color: #e7b42c;
  transition: transform 0.2s;
}

.footer-col ul li a:hover {
  color: #e7b42c;
}

.footer-col ul li a:hover i {
  transform: translateX(3px);
}

/* Contact info */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #cbdde6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  width: 24px;
  color: #e7b42c;
  font-size: 1rem;
}

/* App badges */
.app-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.app-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
  color: #eef3f7;
}

.app-badge i {
  font-size: 1.1rem;
}

.app-badge:hover {
  background: rgba(231, 180, 44, 0.2);
  color: #e7b42c;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9bb7c9;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #9bb7c9;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #e7b42c;
}

.payment-methods {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.payment-methods i {
  font-size: 1.3rem;
  color: #cbdde6;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  color: white;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #9bb7c9;
}

.newsletter-input-group button {
  background: #e7b42c;
  border: none;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  color: #0b2b3b;
  font-weight: 700;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.newsletter-input-group button:hover {
  background: #d4a017;
}

.newsletter-message {
  font-size: 0.7rem;
  color: #e7b42c;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 2rem 1.5rem 1rem;
  }
  .footer-grid {
    gap: 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .container {
    padding: 1rem;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .sell-header h2 {
    font-size: 1.8rem;
  }
}
