/* ========== GLOBAL RESET & ROOT VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b8891e;
  --dark-bg: #0c0c0c;
  --dark-surface: #1a1a1a;
  --text-light: #bababa;
  --white: #ffffff;
  --whatsapp-green: #25d366;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #fafafa;
  color: #222;
  transition:
    background var(--transition-smooth),
    color var(--transition-smooth);
}

body.dark-theme {
  background: #1e1c2a;
  color: #fff;
}

/* … (Keep all existing dark-theme overrides from the previous answer, they remain unchanged) … */
body.dark-theme header {
  background: #1e1c2a;
  color: #fff;
}
body.dark-theme .nav-link {
  color: #fff;
}
body.dark-theme .nav-link:hover {
  color: var(--gold-light);
}
body.dark-theme .section-title {
  color: #fff;
}
body.dark-theme .section-subtitle {
  color: var(--gold-light);
}
body.dark-theme .text-center h2 {
  color: #000;
}
body.dark-theme .services-content h3 {
  background-color: #edebeb;
  color: #000;
}
body.dark-theme .about-details .section-title {
  color: #000;
}
body.dark-theme .about-details .text {
  color: #222;
}
body.dark-theme .review {
  background: #fff;
}
body.dark-theme .footer-heading {
  background: none;
}
body.dark-theme .buyer-card {
  background: #2a2838;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}
body.dark-theme .buyer-description {
  color: #e0e0e0;
}
body.dark-theme .buyer-icon i {
  color: var(--gold-light);
}
body.dark-theme .about-section {
  background: #faf4f5;
}
body.dark-theme .scroll-top-btn {
  background: #2a2838;
  border-color: var(--gold-light);
}

/* ========== PRELOADER ========== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c0c0c;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-taxi {
  text-align: center;
  color: #fff;
}
.loader-taxi i {
  font-size: 4rem;
  color: var(--gold);
  animation: taxiBounce 0.8s infinite;
  display: block;
}
.loader-road {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 15px;
}
.loader-road span {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: roadDash 0.6s infinite;
}
.loader-road span:nth-child(2) {
  animation-delay: 0.15s;
}
.loader-road span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes taxiBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  60% {
    transform: translateY(-6px);
  }
}
@keyframes roadDash {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 9998;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  background: #20bd5a;
}
.whatsapp-float:active {
  transform: scale(0.95);
}
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: whatsappPulseInner 2s infinite;
  z-index: -1;
}
.whatsapp-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: whatsappPulseRing 2s infinite;
  z-index: -2;
}
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 80px;
}
@keyframes whatsappPulseInner {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes whatsappPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 105px;
  width: 44px;
  height: 44px;
  background: var(--dark-bg);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 9997;
  cursor: pointer;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ... (rest of the CSS from previous answer, but with the fixes below) ... */

/* ========== ANIMATIONS (keep existing keyframes) ========== */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 12px var(--gold);
  }
  50% {
    box-shadow:
      0 0 28px var(--gold-light),
      0 0 50px rgba(212, 168, 67, 0.4);
  }
  100% {
    box-shadow: 0 0 12px var(--gold);
  }
}
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(232, 201, 106, 0.8);
  }
}
@keyframes borderGlow {
  0%,
  100% {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
  }
  50% {
    border-color: var(--gold-light);
    box-shadow: 0 0 22px rgba(232, 201, 106, 0.6);
  }
}

/* ========== REVEAL ANIMATIONS (same as before) ========== */
.reveal {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.fade-up {
  opacity: 0;
  transform: translateY(50px);
}
.reveal.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.fade-left {
  opacity: 0;
  transform: translateX(-60px);
}
.reveal.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal.fade-right {
  opacity: 0;
  transform: translateX(60px);
}
.reveal.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5.5rem;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.35s;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.scroll-header {
  background: rgba(18, 18, 18, 0.98);
  height: 5rem;
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.95rem;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.logo img {
  width: 68px;
  border-radius: 50%;
  transition: 0.3s;
}
.logo img:hover {
  transform: scale(1.08);
}
#icon {
  width: 22px;
  cursor: pointer;
  margin-left: 12px;
  transition: 0.3s;
}
#icon:hover {
  transform: rotate(25deg) scale(1.15);
  filter: brightness(1.3);
}
.nav-toggle {
  font-size: 2.25rem;
  padding: 5px;
  cursor: pointer;
  z-index: 100;
  display: none;
  color: #f9f9f9;
}
.nav-toggle:hover {
  color: var(--gold-light);
}

/* ========== HOME SECTION ========== */
.home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(blue-illuminated-taxi-sign-on-white-car-roof-at-night-photo.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  filter: brightness(35%);
}
.home_content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.home_content span {
  color: var(--gold-light);
  font-size: 1.4rem;
  font-weight: 700;
  animation: glowPulse 3s infinite;
  display: inline-block;
}
.home_content .name {
  color: #fff;
  font-size: 4.2rem;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.7);
  margin-top: 0.8rem;
  font-weight: 800;
}
.home_content .text {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin: 1rem 0 3.5rem;
  line-height: 1.7;
}
.home_content .t2 {
  display: none;
}
.home_car {
  display: flex;
  justify-content: center;
  column-gap: 4rem;
  margin-bottom: 2rem;
}
.home_car-data {
  text-align: center;
  margin-bottom: -5rem;
}
.home_car-icon {
  border-radius: 50%;
  padding: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.home_car-data:hover .home_car-icon {
  background: rgba(212, 168, 67, 0.25);
  transform: scale(1.15);
}
.home_car-icon i {
  color: #fff;
}
.home_car-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}
.home_car-name {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-top: 8px;
  text-transform: uppercase;
}
.home_button {
  position: relative;
  border: 2px solid var(--gold);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  top: 6rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transition: 0.3s;
}
.home_button::before {
  content: "";
  border: 2px solid var(--gold-light);
  width: 90px;
  height: 90px;
  position: absolute;
  border-radius: 50%;
  animation: buttonPulse 3s infinite;
}
.home_button:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold-light);
  transform: scale(1.05);
}

/* ========== BUYERS SECTION ========== */
.buyers-section {
  padding: 80px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.section-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.section-subtitle::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 8px auto 0;
  border-radius: 2px;
}
.section-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 20px;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.buyer-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  border-radius: 16px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.buyer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold-dark)
  );
  opacity: 0;
  transition: 0.3s;
}
.buyer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: #e8e8e8;
}
.buyer-card:hover::before {
  opacity: 1;
}
.buyer-icon {
  font-size: 42px;
  margin-bottom: 18px;
  transition: 0.3s;
}
.buyer-card:hover .buyer-icon {
  transform: scale(1.2);
}
.buyer-icon i {
  color: var(--gold);
}
.buyer-description {
  color: #333;
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 500;
}
.btn {
  color: #fff;
  background: #000;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  grid-column: 1/-1;
  justify-self: center;
  animation: borderGlow 3s infinite;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-4px);
  background: #1a1a1a;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
}

/* ========== SERVICE SECTION ========== */
.service {
  background: #edebeb;
  padding-bottom: 30px;
}
.text-center {
  text-align: center;
  padding-top: 3rem;
}
.text-center h2 {
  font-size: 2.8rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.text-center h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 10px auto 0;
}
.services-content {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.row {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.row:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.s-img {
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 79%, 0 100%);
}
.s-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.7s;
}
.s-img img:hover {
  transform: scale(1.15);
}
.row h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 15px 15px 0;
}
.row p {
  font-size: 0.95rem;
  color: #5a5a5b;
  padding: 0 15px 20px;
  line-height: 1.6;
}
.button {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  flex-wrap: wrap;
}
.what {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: 0.3s;
}
.what:hover {
  background: #20bd5a;
  transform: translateY(-3px);
}
.call {
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  transition: 0.3s;
}
.call:hover {
  background: #fff;
  color: #000;
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 80px 60px;
  background: #faf4f5;
}
.about-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.about-image-wrapper .about-image {
  width: 460px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: 0.3s;
}
.about-image-wrapper .about-image:hover {
  transform: scale(1.03);
}
.about-details {
  max-width: 50%;
}
.about-details .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
}
.about-details .section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  display: block;
  margin: 10px 0 0;
  background: var(--gold);
  border-radius: 8px;
}
.about-details .text {
  line-height: 1.8;
  margin: 30px 0;
  font-size: 1.05rem;
  color: #444;
  text-align: left;
}

/* ========== REVIEW SECTION (IMPROVED RESPONSIVENESS) ========== */
.review {
  padding: 6rem 0;
  background: #f7e6df;
  border-radius: 300px 0 300px 0;
  margin-bottom: 3rem;
}
.review-content {
  padding: 2rem;
  text-align: center;
}
.review-card {
  max-width: 1100px;
  margin: 3rem auto 0;
  width: 100%;
}
.review-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1rem;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px 0 0;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.review-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.review-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold-dark)
  );
  opacity: 0.8;
}
.review-img img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-light);
  position: absolute;
  top: -28px;
  left: 20px;
  transition: 0.8s;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.review-item:hover .review-img img {
  transform: translateX(240px) rotate(360deg); /* reduced for mobile */
  border-color: var(--gold-dark);
}
.review-box {
  position: relative;
  padding: 30px 20px 24px;
  z-index: 30;
}
.review-name {
  text-align: center;
  margin-bottom: 0.8rem;
}
.review-name h1 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #222;
}
.review-name i {
  color: var(--gold);
  font-size: 1rem;
}
.review-description p {
  line-height: 1.6;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}
.review-description a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
}
.slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
  margin-top: 40px;
}
.swiper-slide-button {
  margin-top: -50px;
  color: var(--gold-dark);
  transition: 0.3s;
}
.swiper-slide-button:hover {
  color: #1e3932;
}
.swiper-pagination-bullet-active {
  background: var(--gold-dark) !important;
}

/* ========== CONTACT PAGE SPECIFIC (NEW & ENHANCED) ========== */
#page-header.about-header {
  background-image: url("banner.png");
  width: 100%;
  height: 70vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 5rem;
  background-position: center;
  position: relative;
}
.hp {
  font-size: 46px;
  color: #222;
  font-weight: 800;
}
.tx {
  font-size: 16px;
  color: var(--gold-dark);
  margin-top: 15px;
}

.info {
  max-width: 800px;
  margin: -4rem auto 3rem;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.details {
  text-align: center;
}
.details span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.5rem;
}
.details h2 {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 2rem;
}
.details h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #222;
}
.details li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.details li i {
  font-size: 1.5rem;
  color: var(--gold);
  width: 30px;
}
.details li p {
  margin: 0;
  font-weight: 500;
}
.details li p span {
  font-weight: 700;
  color: #000;
}

.contact .contents {
  display: flex;
  background: #000;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem;
}
.contact .contents iframe {
  height: 40rem;
  flex: 1 1 45rem;
  border-radius: 16px;
}
.titlee {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 3rem 0 1rem;
  font-size: 2rem;
}
.titlee span {
  color: var(--gold-light);
}

body.dark-theme .info {
  background: #2a2838;
  color: #fff;
}
body.dark-theme .details h2,
body.dark-theme .details h3 {
  color: #eee;
}
body.dark-theme .details li p span {
  color: var(--gold-light);
}

/* ========== FOOTER ========== */
footer {
  background: #0c0c0c;
  padding: 50px 40px 40px;
  margin-top: -40px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer-logo img {
  height: 90px;
  margin-top: -30px;
}
.footer-about {
  color: #bababa;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.footer-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #fff;
  display: inline-block;
  position: relative;
}
.footer-heading::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 6px;
  border-radius: 2px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #bababa;
  font-size: 0.95rem;
  transition: 0.2s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-icon {
  color: var(--gold-light);
  font-size: 18px;
  margin-top: 3px;
}
.contact-text {
  color: #bababa;
  line-height: 1.6;
  font-size: 0.9rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--gold);
  color: #bababa;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--gold-light);
}
.footer-bottom a:hover {
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE STYLES – Full mobile adaptation
   ========================================================================== */
@media (max-width: 1150px) {
  .home_car {
    column-gap: 4rem;
  }
  .home_content .name {
    font-size: 3.5rem;
  }
  .services-content {
    padding: 80px 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .buyers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .home_car {
    column-gap: 2rem;
  }
  .home_content .name {
    font-size: 2.5rem;
    margin-top: 3rem;
  }
  .home_content .text {
    display: none;
  }
  .home_content .t2 {
    display: block;
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
  }
  .buyers-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 50px auto 0;
  }
  .services-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 20px;
  }
  .about-section .section-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-details {
    max-width: 100%;
  }
  .about-details .section-title,
  .about-details .text {
    text-align: center;
  }
  .about-image-wrapper .about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }
  .review-item:hover .review-img img {
    transform: translateX(180px) rotate(360deg);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .info {
    margin: -2rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #181515;
    font-size: 1.3rem;
    text-align: center;
    padding-top: 6rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    transition: 0.35s;
    z-index: 99;
  }
  .show-nav {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 8px;
  }
  .nav-link {
    font-size: 1.15rem;
    padding: 12px 20px;
    display: block;
  }
  .nav-toggle {
    display: block;
    z-index: 101;
  }
  .home_content .name {
    font-size: 2rem;
  }
  .services-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .review {
    border-radius: 150px 0 150px 0;
  }
  .review-item:hover .review-img img {
    transform: translateX(100px) rotate(360deg);
  }
  .slider-wrapper {
    margin: 0 30px 40px;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
    bottom: 24px;
    right: 20px;
  }
  .scroll-top-btn {
    right: 85px;
    bottom: 24px;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .whatsapp-tooltip {
    display: none;
  }
  .info {
    margin: -1rem 1rem 2rem;
    padding: 2rem 1rem;
  }
  .hp {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .buyers-grid {
    grid-template-columns: 1fr;
  }
  .services-content {
    grid-template-columns: 1fr;
    padding: 40px 15px;
  }
  .review-item:hover .review-img img {
    transform: translateX(50px) rotate(360deg);
  }
  .slider-wrapper {
    margin: 0 10px 30px;
  }
  .swiper-slide-button {
    display: none;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-heading::after {
    margin: 6px auto 0;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .about-section {
    padding: 40px 20px;
  }
  .home_content .name {
    font-size: 1.6rem;
  }
  .home_button {
    width: 55px;
    height: 55px;
    font-size: 0.9rem;
  }
  .home_button::before {
    width: 72px;
    height: 72px;
  }
  .section-subtitle {
    font-size: 1.3rem;
  }
  .info {
    margin: 0 0.5rem 1.5rem;
  }
}

/* ========== GALLERY PAGE STYLES ========== */
.gallery-section {
  padding: 60px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 60px 60px;
}

body.dark-theme .gallery-section {
  background: #1e1c2a;
  color: #fff;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-section .section-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
  position: relative;
}

.gallery-section .section-subtitle::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 8px auto 0;
  border-radius: 2px;
}

.gallery-section .section-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #444;
  max-width: 700px;
  margin: 1.2rem auto 0;
  line-height: 1.6;
}

body.dark-theme .gallery-section .section-title {
  color: #ccc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.gallery-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-theme .gallery-card {
  background: #2a2838;
  border-color: rgba(255, 255, 255, 0.1);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-img {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.2rem;
  color: #fff;
  background: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-caption {
  padding: 20px 20px 25px;
  text-align: center;
}

.gallery-caption h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

body.dark-theme .gallery-caption h3 {
  color: #fff;
}

.gallery-caption p {
  color: #5a5a5b;
  font-size: 0.95rem;
  line-height: 1.5;
}

body.dark-theme .gallery-caption p {
  color: #bbb;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 20px 60px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-img {
    height: 200px;
  }
}
