
@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --maroon: #5e0008;
  --maroon-dark: #3d0005;
  --maroon-light: #8b1a1a;
  --gold: #f5c14c;
  --gold-dark: #c79a29;
  --gold-light: #ffd700;
  --cream: #f5e6c8;
  --cream-light: #fff8eb;
  --cream-dark: #e8d4a8;
  --tan: #f0c990;
  --text-dark: #2d1810;
  --text-light: #fff;
  --text-muted: #6b5b4d;
  --gradient-maroon: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  --gradient-hero: radial-gradient(circle at center, #4d0006 0%, #3d0005 100%);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 24px rgba(245, 193, 76, 0.4);
  --shadow-maroon: 0 8px 24px rgba(94, 0, 8, 0.3);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --container-width: 1200px;
  --section-padding: 80px;
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img{
  max-width: 100%;
}

ul {
  list-style: none;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--maroon-dark);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 193, 76, 0.5);
}

.btn--maroon {
  background: var(--gradient-maroon);
  color: var(--cream);
  box-shadow: var(--shadow-maroon);
}

.btn--maroon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(94, 0, 8, 0.4);
}

.btn--nav {
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.top-bar {
  background: rgba(245, 209, 110, 0.85);
  padding: 10px 0px;
  text-align: center;
}

.top-bar__text {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.top-bar__text .highlight {
  color: #d32f2f;
  font-weight: 800;
}

.nav-bar {
  background: var(--maroon-dark);
  padding: 0 20px;
}

.nav-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__tamil {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.logo__english {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav li a {
  display: block;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.main-nav li a:hover,
.main-nav li a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--gradient-hero);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
  max-width: 900px;
  margin-bottom: 30px;
}

.hero__best-price {
  color: var(--gold-dark);
  font-weight: 700;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: end;
}

.hero__left {
  display: flex;
  justify-content: center;
}

.hero__image-container {
  position: absolute;
  bottom: 0;
  left:10;
}

.hero__image {
  width: 100%;
  max-width: 400px;
}

.hero__rating {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__rating .g-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.hero__rating .stars {
  color: var(--gold);
  font-size: 14px;
}

.hero__rating .rating-text {
  color: var(--cream);
  font-size: 12px;
}

.hero__center {
  text-align: center;
}

.hero__brand {
  width: 320px;
  height: 260px;
}

.hero__benefits {
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 12px;
  color: var(--maroon-dark);
}

.hero__form-card {
  background: var(--cream-light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon-dark);
  text-align: center;
  margin-bottom: 20px;
 
}

.form-field {
  margin-bottom: 12px;
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 3px solid black;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 193, 76, 0.2);
  border-radius: 10px;
}

.form-field input::placeholder {
  color: #000;
}

.hero__cta-text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  text-align: right;
  margin-top: 30px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.badges {
  background: var(--cream-light);
  padding: 80px 0;
}

.badges__grid {
  display: flex;
  justify-content: space-around;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badge-item {
  text-align: center;
}

.badge-icon {
  width: 250px;
  height: 250px;
  background: var(--maroon);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin: 0 auto 15px;
  box-shadow: var(--shadow-maroon);
}

.badge-icon i {
  font-size: 36px;
  color: var(--gold);
}

.badge-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.badges__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--maroon);
  padding: 0px 30px;
  border-radius: 25px;
  width: fit-content;
  margin: 0 auto;
  color: var(--cream);
}

.badges__rating .g-icon {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.badges__rating .stars {
  color: var(--gold);
  font-size: 28px;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  background: var(--tan);
  padding: var(--section-padding) 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
 
  
}

.intro__text h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.text-maroon {
  color: var(--maroon);
}

.intro__text p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.8;
}

.intro__image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.certifications {
  display: flex;
  justify-content: space-around;
  background: var(--maroon);
  border-radius: 20px;
  padding: 25px;
  
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.cert-item i {
  font-size: 24px;
}

/* ============================================
   WHY SELL SECTION
   ============================================ */
.why-sell {
  background: var(--gradient-maroon);
  padding: var(--section-padding) 0;
}

.why-sell__grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: center;
}

.why-sell__image img {
  width: 100%;
  max-width: 450px;
}

.why-sell__content h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 35px;
}

.why-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  margin-left: 50px;
}

.why-list .number {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--maroon-dark);
  flex-shrink: 0;
}

.why-list h4 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-list p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================================
   GOLD WORTH SECTION
   ===========================================*/

.gold-worth {
  background: #fff;
  padding: var(--section-padding) 0;
}

.gold-worth__content {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.gold-worth__content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.gold-worth__content h2 span {
  color: #8d2828;
}

.gold-worth__content img {
  border-radius: 20px;
  width: 100%;
  max-height: 250px;
  margin: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.gold-worth__content p {
  color: rgba(17, 10, 10, 0.85);
  font-size: 19px;
  margin-bottom: 15px;
  line-height: 1.8;
  
}

.gold-worth__content .btn1 {
  margin-top: 20px;
  background-color: #3d0005;
  color: #fff;
  padding: 15px 20px;
  border-radius: 25px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
   background: 
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("./img/ask-bg.jpeg");
  background-size: cover;
  background-position: center;
  padding: var(--section-padding) 0;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-header p {
  color: var(--cream);
  font-size: 18px;
}

.faq-header p span {
  color: var(--gold);
  font-weight: 600;
}

.faq-badge {
  position: absolute;
  top: 40px;
  right: 120px;
  text-align: center;
  color: var(--gold);
}

.faq-badge img {
  width: 180px;
  height: 200px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 100px;
}

.faq-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 22px;
  color: var(--maroon);
}

.faq-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-card p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

.faq-card--highlight {
  background: var(--gold);
  color: var(--maroon-dark);
}


.faq-card .btn {
  margin-top: 15px;
}

/* ============================================
   WHAT CAN YOU SELL
   ============================================ */
.sell-section {
  background: var(--tan);
  padding: var(--section-padding) 0;
}

.sell-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.sell-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}

.sell-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 15px;
}

.sell-content h5 {
  font-size: 30px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
}

.sell-content .intro-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.sell-content h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.sell-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.sell-content li {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.sell-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: black;
}

.sell-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}

.sell-content > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.btn--maroon1 {
  background-color: #5e0008;
  color: #ddd;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results {
 background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("./img/result-bg.jpeg");
  background-size: cover;
  background-position: center;
  padding: 100px 30px ;
}

.results h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 25px;
}

.results__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  margin: 0 auto 20px;
  text-align: justify;
}

.result-card h3 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.result-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--gradient-maroon);
  padding: var(--section-padding) 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 25px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-text h4 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  margin-top:115px;
}

.about-image-card {
  position: relative;
  min-height: 300px;

}
.about-image-card img {
  border-radius: 30px;
}


.belief-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.belief-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
}

.belief-card h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 10px;
}

.belief-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.google-reviews {
  background: var(--cream-light);
  padding: var(--section-padding) 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.google-logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.review-btn {
  position: absolute;
  right: 0;
  top: 0;
  background: #4285f4;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.review-btn:hover {
  background: #3367d6;
}

.reviews-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-header .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviews-header .stars {
  color: #fbbc05;
  font-size: 18px;
}

.reviews-header .rating-text {
  font-size: 14px;
  color: var(--text-muted);
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  flex: 1;
}

.review-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px 25px 40px;
  text-align: center;
  position: relative;
}

.review-card .avatar img{
  width: 70px;
  height: 70px;
  background: #e0e0e0;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.review-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.review-card small {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card .stars {
  color: #fbbc05;
  font-size: 16px;
  margin: 10px 0;
}

.review-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.g-icon-small {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #4285f4;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #f5f5f5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gradient-maroon);
  color: var(--gold);
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: auto;
  margin-bottom: 15px;
}

.tagline {
  color: var(--cream);
  font-size: 14px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 13px;
}

.footer-item i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-item p {
  color: var(--cream);
  line-height: 1.6;
}

.footer-item strong {
  color: var(--gold);
}

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--cream);
  font-size: 14px;
}

.footer-links a::before {
  content: "➤ ";
  color: var(--gold);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-note h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-note > p {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.alert-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 25px;
}

.alert-btn:hover {
  background: rgba(245, 193, 76, 0.1);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 193, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.social-icon:hover {
  background: rgba(245, 193, 76, 0.3);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 193, 76, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: var(--cream);
  font-size: 14px;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-maroon);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--maroon-dark);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1100px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-badge {
    display: none;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 60px;
  }

  .hero__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero__left {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .hero__center {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .hero__right {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    justify-content: center;
  }

  .intro__grid,
  .why-sell__grid,
  .sell-container,
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-sell__image,
  .sell-image {
    order: -1;
  }

  .why-sell__image img,
  .sell-image img,
  .intro__image img {
    max-width: 350px;
    display: block;
    margin: 0 auto;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .belief-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-btn {
    position: static;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav-bar__content {
    flex-wrap: wrap;
    position: relative;
    padding: 15px 0;
  }
  .logo{
    margin: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--maroon-dark);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 100;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav li a {
    display: block;
    padding: 12px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .btn--nav {
    order: -1;
    margin-left: auto;
    margin-right: 15px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero__heading {
    font-size: 24px;
  }
 
  .hero__wrapper {
    grid-template-columns: 1fr;
  }

  .hero__left,
  .hero__center,
  .hero__right {
    grid-column: auto;
    grid-row: auto;
  }

  .hero__form-card {
    max-width: 100%;
  }

  .hero__cta-text {
    font-size: 22px;
    text-align: center;
  }

  .badges__grid {
    gap: 30px;
  }

  .intro__text h2 {
    font-size: 32px;
  }

  .certifications {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cert-item {
    justify-content: center;
  }
  .faq-grid,
  .results__grid,
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .belief-cards {
    grid-template-columns: 1fr;
  }

  .nav-btn {
    display: none;
  }

  .top-bar__text {
    font-size: 11px;
    line-height: 1.5;
  }
}
 
@media (max-width: 480px) {
  .hero__heading {
    font-size: 24px;
    text-align: center;
  }
  .logo{
    width: 110px;
    height: 130px;
    margin-top: 40px;
  }
  .nav-bar__content{
    padding: 0;
    height:160px;
  }
  .hero__image-container{
    position: sticky;

  }
 
  .hero__brand-name {
    font-size: 36px;
  }

  .hero__brand-sub {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .hero__benefits li {
    font-size: 12px;
  }

  .intro__text h2,
  .why-sell__content h2,
  .sell-content h2,
  .results h2,
  .about-text h2,
  .faq-header h2 {
    font-size: 26px;
    text-align: center;
  }

  .why-list h4 {
    font-size: 17px;
  }
  .intro__text p {
    text-align: justify;
    font-size: 15px;
  }
  .btn--maroon1{
    font-size: 16px;
  }
  .sell-content h2{
    font-size: 28px;
  }
  .sell-content h5{
    font-size: 22px;
  }
   .sell-content h3{
    text-align: center;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

