@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0b1f3a;
  --primary-deep-blue: #0e2a50;
  --accent-gold: #f4b400;
  --accent-gold-light: #ffd54f;
  --text-light: #ffffff;
  --text-gray: #d1d5db;
  --text-gray-dark: #9ca3af;
  --bg-dark: #0a1428;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* BODY TEXT */
body {
  font-family: "Poppins", sans-serif;
}

/* HEADINGS (PREMIUM LOOK) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
}

/* NAVBAR LOGO (OPTIONAL PREMIUM) */
.logo span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* BUTTONS */
.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* PARAGRAPHS */
p {
  font-family: "Poppins", sans-serif;
  color: var(--text-gray);
}
body {
  color: var(--text-light);
  background: linear-gradient(
    135deg,
    #0b1f3a 0%,
    #0e2a50 25%,
    #1a3a52 75%,
    #0b1f3a 100%
  );
  background-attachment: fixed;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  letter-spacing: -1px;
}

/* ==========================================
   NAVBAR
   ========================================== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.98) 0%,
    rgba(14, 42, 80, 0.95) 100%
  );
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(244, 180, 0, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

nav .logo:hover {
  color: var(--accent-gold-light);
  transform: scale(1.05);
}

nav .logo span {
  font-size: 1.2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-gold-light)
  );
  transition: var(--transition);
  border-radius: 2px;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--accent-gold-light);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 1.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-gold);
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  margin-top: 70px;
  height: 90vh;

  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.7), rgba(14, 42, 80, 0.7)),
    url("./images/hero-index.png") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(244, 180, 0, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  animation: fadeInUp 1s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    135deg,
    var(--text-light) 0%,
    var(--accent-gold-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.2s backwards;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--accent-gold-light)
  );
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.4);
}

.logo span {
  display: inline-block;
  line-height: 1.2;
  font-weight: 300;
  font-size: 0.5rem;
}
section {
  padding: 5rem 2rem;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 180, 0, 0.3),
    transparent
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-align: center;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-gold-light)
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.gold-accent {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ==========================================
   CARDS
   ========================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(14, 42, 80, 0.6) 0%,
    rgba(14, 42, 80, 0.4) 100%
  );
  border: 1.5px solid rgba(244, 180, 0, 0.25);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(244, 180, 0, 0.1) 0%,
    transparent 70%
  );
  transition: var(--transition);
  pointer-events: none;
}

.card:hover::before {
  top: -100%;
  right: -100%;
}
.card:hover h3,
.card:hover p {
  color: black;
}
.card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(74%) sepia(41%) saturate(742%)
    hue-rotate(359deg) brightness(102%) contrast(101%);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  display: inline-block;
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(-5deg);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.card p {
  font-size: 0.98rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.card .btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.08) 0%,
    rgba(244, 180, 0, 0.02) 100%
  );
  border-left: 5px solid var(--accent-gold);
  padding: 2.2rem;
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(244, 180, 0, 0.15) 0%,
    transparent 70%
  );
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateX(12px);
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.12) 0%,
    rgba(244, 180, 0, 0.05) 100%
  );
  box-shadow: 0 10px 30px rgba(244, 180, 0, 0.1);
}

.feature-box:hover::before {
  right: -20px;
}

.feature-box h4 {
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.feature-box p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonial {
  background: linear-gradient(
    135deg,
    rgba(14, 42, 80, 0.6) 0%,
    rgba(14, 42, 80, 0.4) 100%
  );
  border: 1.5px solid rgba(244, 180, 0, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(244, 180, 0, 0.1);
  font-family: "Playfair Display", serif;
}

.testimonial:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.15);
  transform: translateY(-5px);
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.testimonial p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.95rem;
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form {
  background: linear-gradient(
    135deg,
    rgba(14, 42, 80, 0.6) 0%,
    rgba(14, 42, 80, 0.4) 100%
  );
  border: 1.5px solid rgba(244, 180, 0, 0.25);
  border-radius: 15px;
  padding: 3rem;
  max-width: 600px;
  margin: 2rem auto;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(11, 31, 58, 0.8);
  border: 1.5px solid rgba(244, 180, 0, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(244, 180, 0, 0.3);
  background: rgba(11, 31, 58, 0.9);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.info-box {
  background: linear-gradient(
    135deg,
    rgba(14, 42, 80, 0.6) 0%,
    rgba(14, 42, 80, 0.4) 100%
  );
  border: 1.5px solid rgba(244, 180, 0, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(244, 180, 0, 0.1) 0%,
    transparent 70%
  );
  transition: var(--transition);
}

.info-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
}

.info-box-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.info-box:hover .info-box-icon {
  transform: rotate(10deg) scale(1.1);
}

.info-box h4 {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  font-size: 1.2rem;
}

.info-box p {
  color: var(--text-gray);
  font-size: 0.98rem;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background: linear-gradient(
    180deg,
    rgba(10, 20, 40, 0.97) 0%,
    rgba(11, 31, 58, 1) 100%
  );
  border-top: 1px solid rgba(244, 180, 0, 0.2);
  padding: 3rem 0 1.5rem;
  color: var(--text-gray);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.footer-section p {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.footer-section strong {
  color: #fff;
  font-weight: 600;
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 180, 0, 0.18);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--text-gray);
}

footer .gold-accent {
  color: var(--accent-gold-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section h4 {
    font-size: 1.25rem;
  }

  .footer-section p {
    font-size: 0.95rem;
  }
}
/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(244, 180, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 25px rgba(244, 180, 0, 0.6);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(
      180deg,
      rgba(11, 31, 58, 0.98) 0%,
      rgba(14, 42, 80, 0.96) 100%
    );
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition);
    z-index: 999;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul a {
    font-size: 1.2rem;
    padding: 1rem;
    width: 100%;
    display: block;
  }

  nav ul {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-title::after {
    width: 60px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.8rem 1rem;
  }

  nav ul {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  nav .logo {
    font-size: 1.2rem;
  }

  nav .logo span {
    font-size: 1.4rem;
  }

  .hero {
    margin-top: 60px;
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-title::after {
    width: 50px;
    bottom: -10px;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .card-icon {
    font-size: 2.8rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card {
    padding: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.py-5 {
  padding: 5rem 0;
}

/* ==========================================
   SCROLL EFFECTS & PREMIUM TOUCHES
   ========================================== */

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(11, 31, 58, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--accent-gold),
    var(--accent-gold-light)
  );
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Selection styling */
::selection {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* Link styling */
a {
  transition: var(--transition);
}

/* Placeholder styling */
::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.logo img {
  height: 50px;
}
/* RTO SERVICES */

/* ===== VARIABLES ===== */

:root {
  --primary-dark: #0b1f3a;
  --secondary-dark: #0e2a50;
  --accent-gold: #f4b400;
  --text-light: #ffffff;
  --text-gray: #cbd5e1;
}

/* ===== GENERAL ===== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-gray);
}

/* ===== HERO ===== */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(8, 25, 50, 0.85), rgba(8, 25, 50, 0.85)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");
  background-size: cover;
  background-position: center;
  color: white;
}

/* ===== CARDS GRID ===== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ===== CARD DESIGN ===== */

.card {
  background: rgba(14, 42, 80, 0.6);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ===== CARD ICON ===== */

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

/* ===== CARD TEXT ===== */

.card h3 {
  margin-bottom: 10px;
  color: white;
}

.card p {
  color: var(--text-gray);
  font-size: 15px;
}

/* ===== BUTTON ===== */

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent-gold);
  color: black;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffcc33;
}

/* ===== FEATURE BOX (PRICING) ===== */

.feature-box {
  background: rgba(14, 42, 80, 0.6);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* ===== NAVBAR ===== */

nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.98),
    rgba(14, 42, 80, 0.95)
  );
  padding: 15px 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.logo span {
  color: var(--accent-gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--accent-gold);
}

/* ===== FOOTER ===== */

/* =========================
   CLEAN FOOTER DESIGN
   ========================= */

footer {
  background: linear-gradient(180deg, #081a33, #0b1f3a);
  padding: 3rem 1.5rem;
  color: var(--text-gray);
  border-top: 1px solid rgba(244, 180, 0, 0.2);
}

/* Container alignment */
footer .container {
  max-width: 1200px;
  margin: auto;
}

/* Grid layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Section styling */
.footer-section {
  text-align: left;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* Links */
.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

/* Bottom line */
.footer-bottom {
  border-top: 1px solid rgba(244, 180, 0, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.4rem 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }
}

/* ===== NEWSLETTER FORM ===== */

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-gold-light);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.2);
}

/* ===== BACK TO TOP BUTTON ===== */

#back-to-top:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== SEARCH OVERLAY ===== */

.search-form input:focus {
  outline: none;
  border-color: var(--accent-gold-light);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.2);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .social-links {
    justify-content: center !important;
  }

  .newsletter-form form {
    flex-direction: column !important;
    align-items: center !important;
  }

  .newsletter-form input {
    width: 100% !important;
    max-width: 300px !important;
  }

  .nav-actions {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .search-toggle {
    display: none !important;
  }
}
/* ==========================================
   MOBILE RESPONSIVE FIX (ADD AT BOTTOM)
   ========================================== */

html,
body {
  overflow-x: hidden;
}

/* ===== TABLET & MOBILE ===== */

@media (max-width: 768px) {
  /* Container */
  .container {
    width: 92%;
    padding: 0 10px;
  }

  /* Navbar */
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    padding: 12px 1rem;
  }

  nav .nav-container {
    flex-direction: row;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, #0b1f3a, #0e2a50);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 25px;
    transition: 0.4s;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    font-size: 18px;
    padding: 12px;
    display: block;
  }

  /* Hero Section */

  .hero {
    height: 75vh;
    padding: 0 20px;
    margin-top: 65px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* Buttons */

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 12px 20px;
  }

  /* Section Titles */

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  /* Cards */

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 22px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  /* Features */

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Contact Form */

  .contact-form {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
    padding: 12px;
  }

  /* Contact Info */

  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Footer */

  footer {
    padding: 25px 15px;
    font-size: 14px;
  }
}

/* ===== SMALL PHONES ===== */

@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .card {
    padding: 18px;
  }

  .card-icon {
    font-size: 30px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .contact-form {
    padding: 15px;
  }
}
.contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f4b400;
  color: black;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}
.search-container {
  position: relative;
}

.search-input {
  width: 0;
  padding: 8px;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 20px;
}

.search-container:hover .search-input {
  width: 180px;
  border: 1px solid #ccc;
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background: rgb(37, 211, 102);
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 4px 10px rgb(37, 211, 102);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =========================================================
   CAR SALES PAGE + SELL CAR PAGE
   Premium styling matching your blue-gold theme
   Add this at the END of style.css
   ========================================================= */

/* ---------- Shared page spacing ---------- */
.car-sales-page,
.sell-page {
  padding-top: 90px;
}

.car-sales-page section,
.sell-page section {
  position: relative;
}

.car-sales-page .container,
.sell-page .container {
  position: relative;
  z-index: 2;
}

/* ---------- Hero sections ---------- */
.car-sales-hero,
.sell-hero {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(
      circle at top right,
      rgba(244, 180, 0, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 213, 79, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(11, 31, 58, 0.97) 0%, rgba(10, 20, 40, 1) 100%);
  overflow: hidden;
}

.car-sales-hero::before,
.sell-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
    linear-gradient(-120deg, rgba(244, 180, 0, 0.03) 0%, transparent 35%);
  pointer-events: none;
}

.car-sales-hero-content,
.sell-hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.car-sales-text,
.sell-hero-left {
  max-width: 700px;
}

.car-sales-badge,
.sell-badge {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.12);
  border: 1px solid rgba(244, 180, 0, 0.28);
  color: var(--accent-gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.car-sales-text h1,
.sell-hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.08;
  color: var(--text-light);
  margin-bottom: 1.1rem;
  letter-spacing: -0.8px;
}

.car-sales-text p,
.sell-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-gray);
  max-width: 620px;
  margin-bottom: 1.8rem;
}

.car-sales-hero-buttons,
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.car-sales-image,
.sell-hero-right {
  display: flex;
  justify-content: center;
}

.car-sales-image img,
.hero-image-card img {
  width: 100%;
  max-width: 560px;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.hero-image-card {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* ---------- Highlight / stats ---------- */
.car-sales-highlights,
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.highlight-box,
.stat-card {
  padding: 1.25rem 1rem;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  text-align: center;
  backdrop-filter: blur(10px);
}

.highlight-box h3,
.stat-card h3 {
  color: var(--accent-gold-light);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.highlight-box p,
.stat-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin: 0;
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

/* ---------- Filter section ---------- */
.car-filter-section {
  padding: 0 0 2rem;
  margin-top: -1.8rem;
  z-index: 5;
}

.car-filter-box {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  background: linear-gradient(
    180deg,
    rgba(14, 42, 80, 0.95) 0%,
    rgba(11, 31, 58, 0.98) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.18);
  border-radius: 24px;
  padding: 1.3rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.filter-item {
  display: flex;
  flex-direction: column;
}

.filter-item label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.55rem;
}

.filter-item input,
.filter-item select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(244, 180, 0, 0.16);
  background: rgba(10, 20, 40, 0.78);
  color: var(--text-light);
  padding: 0 1rem;
  font-size: 0.96rem;
  outline: none;
  transition: var(--transition);
}

.filter-item input::placeholder {
  color: var(--text-gray-dark);
}

.filter-item input:focus,
.filter-item select:focus {
  border-color: rgba(244, 180, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.08);
}

.filter-btn-box {
  display: flex;
  align-items: end;
}

.filter-btn-box .btn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
}

/* ---------- Available cars section ---------- */
.featured-cars-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 40, 1) 0%,
    rgba(11, 31, 58, 0.96) 100%
  );
}

.cars-state-message {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  padding: 2rem 0;
}

.car-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.car-list-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  backdrop-filter: blur(10px);
}

.car-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
  border-color: rgba(244, 180, 0, 0.28);
}

.car-list-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.car-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.car-list-card:hover .car-list-image img {
  transform: scale(1.05);
}

.car-list-content {
  padding: 1.5rem;
}

.car-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.12);
  color: var(--accent-gold-light);
  border: 1px solid rgba(244, 180, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.car-list-content h3 {
  color: var(--text-light);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.car-price {
  color: var(--accent-gold-light);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.car-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0 0 1rem;
}

.car-meta li {
  background: rgba(10, 20, 40, 0.72);
  border: 1px solid rgba(244, 180, 0, 0.08);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.car-extra-info {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.car-extra-info p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.6;
}

.car-extra-info strong {
  color: var(--text-light);
}

.car-card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.car-card-buttons .btn {
  text-align: center;
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

/* ---------- Sell CTA ---------- */
.sell-car-cta {
  padding: 0 0 5rem;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.96) 0%,
    rgba(10, 20, 40, 1) 100%
  );
}

.sell-car-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(14, 42, 80, 0.95) 0%,
    rgba(11, 31, 58, 0.98) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.18);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.sell-car-box h2 {
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.sell-car-box p {
  color: var(--text-gray);
  margin: 0;
  max-width: 700px;
  line-height: 1.8;
}

/* ---------- Sell form section ---------- */
.sell-form-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 40, 1) 0%,
    rgba(11, 31, 58, 0.96) 100%
  );
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.6rem;
}

.section-heading h2 {
  color: var(--text-light);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.sell-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.form-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.16);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.form-card h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(244, 180, 0, 0.12);
}

.wide-card,
.upload-card,
.submit-wrap {
  grid-column: span 2;
}

.small-card {
  height: 100%;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(244, 180, 0, 0.16);
  background: rgba(10, 20, 40, 0.75);
  color: var(--text-light);
  padding: 0.95rem 1rem;
  font-size: 0.96rem;
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(244, 180, 0, 0.46);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.08);
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ---------- Radio pill style ---------- */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-option {
  position: relative;
  cursor: pointer;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(10, 20, 40, 0.75);
  border: 1px solid rgba(244, 180, 0, 0.14);
  color: var(--text-gray);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.pill-option input:checked + span {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 100%
  );
  color: #0b1f3a;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(244, 180, 0, 0.22);
}

/* ---------- Upload box ---------- */
.upload-box {
  border: 2px dashed rgba(244, 180, 0, 0.28);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  background: rgba(10, 20, 40, 0.55);
}

.upload-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.upload-box h4 {
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.upload-box p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.upload-box input[type="file"] {
  width: 100%;
  color: var(--text-gray);
  background: transparent;
  border: none;
  padding: 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.preview-item {
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(244, 180, 0, 0.16);
  background: rgba(10, 20, 40, 0.7);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Checkbox ---------- */
.check-option {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.94rem;
}

.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

/* ---------- Submit ---------- */
.submit-wrap {
  text-align: center;
}

.submit-btn {
  min-width: 220px;
  min-height: 54px;
  border-radius: 14px;
}

.sell-form-message {
  min-height: 24px;
  margin: 0.2rem 0 0;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 500;
}

/* ---------- Features ---------- */
.features-section {
  padding: 0 0 5rem;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.96) 0%,
    rgba(10, 20, 40, 1) 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 1.8rem 1.3rem;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  color: var(--text-light);
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* ---------- Better buttons for these pages ---------- */
.car-sales-page .btn,
.sell-page .btn {
  border-radius: 14px;
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(244, 180, 0, 0.35);
}

.btn-outline:hover {
  background: rgba(244, 180, 0, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.about-trainer {
  padding: 4rem 2rem;
  background: #0b1f3a;
}

.trainer-box {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.trainer-image img {
  width: 320px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trainer-content {
  flex: 1;
  color: white;
}

.trainer-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f4b400;
}

.trainer-content p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .trainer-box {
    flex-direction: column;
    text-align: center;
  }

  .trainer-image img {
    width: 100%;
    max-width: 300px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .car-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-filter-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-btn-box {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .car-sales-hero-content,
  .sell-hero-wrapper,
  .sell-form-grid {
    grid-template-columns: 1fr;
  }

  .wide-card,
  .upload-card,
  .submit-wrap {
    grid-column: span 1;
  }

  .car-sales-image img,
  .hero-image-card img {
    max-width: 100%;
    height: 360px;
  }

  .car-sales-highlights,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .sell-car-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .car-filter-box,
  .car-list-grid,
  .features-grid,
  .split-fields,
  .car-card-buttons,
  .car-meta {
    grid-template-columns: 1fr;
  }

  .filter-btn-box {
    grid-column: span 1;
  }

  .car-sales-text h1,
  .sell-hero-left h1 {
    font-size: 2.2rem;
  }

  .car-sales-hero,
  .sell-hero,
  .featured-cars-section,
  .sell-form-section,
  .features-section,
  .sell-car-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .form-card,
  .sell-car-box,
  .car-filter-box {
    padding: 1.2rem;
  }

  .car-list-content {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .car-sales-page,
  .sell-page {
    padding-top: 82px;
  }

  .car-sales-text h1,
  .sell-hero-left h1 {
    font-size: 1.95rem;
  }

  .car-sales-text p,
  .sell-subtitle {
    font-size: 0.96rem;
  }

  .car-sales-badge,
  .sell-badge {
    font-size: 0.76rem;
  }

  .car-sales-hero-buttons,
  .hero-btns {
    flex-direction: column;
  }

  .car-sales-hero-buttons .btn,
  .hero-btns .btn {
    width: 100%;
  }
}

/* DARK OVERLAY */
.card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* CONTENT ABOVE IMAGE */
.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

/* TEXT STYLING */
.card-bg h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-bg p {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* BUTTON IMPROVEMENT */
.card-bg .btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* HOVER EFFECT */
.card-bg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  color: #fff;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   IMAGE CARD (TOURS)
   ========================= */

.one {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/tours.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.two {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/carsale.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.three {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/drivschool.png") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.to1 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/tourpacks.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.to2 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/airport.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.to3 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/outstation.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.to4 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/group.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.to5 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/temple.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.to6 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/site.jpg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.place1 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/vijayawada.jpg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.place2 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/penugoda.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.place3 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/beach.jpg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.place4 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/tirumala.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.place5 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/rjy.jpeg") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.place6 {
  position: relative;
  overflow: hidden;
  padding: 0; /* remove default padding */

  background: url("./images/vadapalli.png") center/cover no-repeat;
  border-radius: 15px;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* admin styles */
/* =========================
   CAR ADMIN PAGE
   ========================= */

.car-admin-page {
  padding-top: 90px;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 40, 1) 0%,
    rgba(11, 31, 58, 0.96) 100%
  );
  min-height: 100vh;
}

.car-admin-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(
      circle at top right,
      rgba(244, 180, 0, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(11, 31, 58, 0.98) 0%, rgba(10, 20, 40, 1) 100%);
}

.admin-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.admin-badge {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.12);
  border: 1px solid rgba(244, 180, 0, 0.24);
  color: var(--accent-gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.car-admin-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.car-admin-hero p {
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0;
}

.admin-summary-section {
  padding: 0 0 2rem;
  margin-top: -1rem;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-summary-card {
  padding: 1.4rem;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.admin-summary-card h3 {
  color: var(--accent-gold-light);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.admin-summary-card p {
  color: var(--text-gray);
  margin: 0;
}

.admin-list-section {
  padding: 2rem 0 5rem;
}

.admin-message {
  min-height: 24px;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.admin-message.success {
  color: #4ade80;
}

.admin-message.error {
  color: #f87171;
}

.admin-car-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.admin-car-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.4rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  border: 1px solid rgba(244, 180, 0, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.admin-car-image {
  height: 100%;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
}

.admin-car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-car-content h3 {
  color: var(--text-light);
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.admin-price {
  color: var(--accent-gold-light);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.admin-status {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.admin-status.pending {
  background: rgba(244, 180, 0, 0.12);
  color: var(--accent-gold-light);
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.admin-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-details-grid p,
.admin-contact-box p {
  margin: 0;
  padding: 0.8rem 0.9rem;
  background: rgba(10, 20, 40, 0.7);
  border: 1px solid rgba(244, 180, 0, 0.08);
  border-radius: 12px;
  color: var(--text-gray);
  font-size: 0.92rem;
}

.admin-details-grid strong,
.admin-contact-box strong,
.admin-description strong {
  color: var(--text-light);
}

.admin-contact-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-description {
  padding: 1rem;
  background: rgba(10, 20, 40, 0.7);
  border: 1px solid rgba(244, 180, 0, 0.08);
  border-radius: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.admin-description p {
  margin: 0.4rem 0 0;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.admin-action-row .btn {
  min-width: 140px;
  border-radius: 12px;
}

@media (max-width: 1000px) {
  .admin-car-card {
    grid-template-columns: 1fr;
  }

  .admin-details-grid,
  .admin-contact-box,
  .admin-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .admin-details-grid,
  .admin-contact-box,
  .admin-summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-action-row {
    flex-direction: column;
  }

  .admin-action-row .btn {
    width: 100%;
  }
}

.maps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* MAP CARD */
.map-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.map-card:hover {
  transform: translateY(-6px);
}

/* MAP */
.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
  pointer-events: none; /* so click opens google maps */
}

/* INFO OVERLAY */
.map-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.map-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.map-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .maps-container {
    grid-template-columns: 1fr;
  }
}
