* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ======= PREMIUM FUTURISTIC NAVBAR ======= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75),
    rgba(25, 25, 25, 0.85)
  );
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(255, 0, 0, 0.05);
}

/* Logo Styling */
.nav-left .logo {
  height: 80px;
  width: 300px; /* or increase to match your preferred width */
  filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.4));
  user-select: none;
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

/* Links */
.nav-links a {
  position: relative;
  font-size: 1rem;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  letter-spacing: 0.6px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff1c1c;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ff1c1c;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button */
.nav-links button {
  background: linear-gradient(to right, #ff1c1c, #990000);
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 28, 28, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-links button:hover {
  background: linear-gradient(to right, #cc0000, #660000);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  margin-left: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1.5rem 2rem;
    display: none;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .nav-links button {
    margin-bottom: 1.2rem;
    width: 100%;
    text-align: left;
  }

  .hamburger {
    display: block;
  }
}

/* ========== BOOK APPOINTMENT MODAL ========== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  color: #fff;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}

.modal-content form input {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

.modal-content form input::placeholder {
  color: #666;
}

.modal-content form button {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(to right, #ff1c1c, #990000);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content form button:hover {
  background: linear-gradient(to right, #e64a19, #ff6d00);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.modal-content form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  resize: none;
}

.modal-content form textarea::placeholder {
  color: #666;
}

/* Modal Show Animation */
.modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex; /* maintain layout */
}

.modal.show-modal {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.show-modal .modal-content {
  transform: scale(1);
}

/* ========== MODERN SLIDER (UPDATED WITH THUMBNAILS & ARROWS) ========== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #010101;
  color: #eee;
}

.slider {
  height: 100vh;
  margin-top: -50px;
  position: relative;
}

.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .list .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, #000 40%, transparent);
}

.slider .list .item .content {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 500px;
  max-width: 80%;
  z-index: 1;
}

.slider .list .item .content p:nth-child(1) {
  text-transform: uppercase;
  letter-spacing: 10px;
}

.slider .list .item .content h2 {
  font-size: 100px;
  margin: 0;
}

.slider .list .item .content p:nth-child(3) {
  font-size: 1.2rem;
  margin-top: 10px;
}

.slide-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(to right, #ff1c1c, #990000);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.slide-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #ff865e, #ff5733);
}

.slider .list .item.active {
  opacity: 1;
  z-index: 10;
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
  animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
  animation-duration: 1.3s;
}

.arrows {
  position: absolute;
  top: 30%;
  right: 50px;
  z-index: 100;
}

.arrows button {
  background-color: #eee5;
  border: none;
  font-family: monospace;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: x-large;
  color: #eee;
  transition: 0.5s;
}

.arrows button:hover {
  background-color: #eee;
  color: black;
}

.thumbnail {
  position: absolute;
  bottom: 50px;
  z-index: 11;
  display: flex;
  gap: 10px;
  width: 100%;
  height: 250px;
  padding: 0 50px;
  box-sizing: border-box;
  overflow: auto;
  justify-content: center;
}

.thumbnail::-webkit-scrollbar {
  width: 0;
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  filter: brightness(0.5);
  transition: 0.5s;
  flex-shrink: 0;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.thumbnail .item.active {
  filter: brightness(1.5);
}

.thumbnail .item .content {
  position: absolute;
  inset: auto 10px 10px 10px;
}

@media screen and (max-width: 678px) {
  .thumbnail {
    justify-content: start;
  }
  .slider .list .item .content h2 {
    font-size: 60px;
  }
  .arrows {
    top: 10%;
  }
}

.highlight-tagline {
  background: transparent;
  color: #fff;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 22px;
  border-left: 6px solid #990000;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glowTagline 2.5s ease-in-out infinite;
  margin-bottom: 25px;
}

@keyframes glowTagline {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(153, 0, 0, 0.4);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 30px rgba(153, 0, 0, 0.6);
    transform: scale(1.03);
  }
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
  background: url("../images/bg-tech.png") center/cover no-repeat fixed;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* overlay for text contrast */
  z-index: -1;
}

.why-choose h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.choose-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.choose-block {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.choose-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.choose-block img {
  width: 5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 3px rgba(255, 87, 51, 0.5));
}

.choose-block h3 {
  color: #ff4c2b;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.choose-block p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 1.8rem;
  }

  .choose-block h3 {
    font-size: 1.1rem;
  }

  .choose-block p {
    font-size: 0.9rem;
  }

  .choose-block img {
    width: 44px;
  }
}

/* ========== OUR SERVICES ========== */
.services {
  background: url("../images/bg-tech.png") center/cover no-repeat fixed;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.services h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Base styling for rows */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  transition: all 0.8s ease;
}

/* Scroll animations */
.service-row.left {
  transform: translateX(-60px);
}

.service-row.right {
  transform: translateX(60px);
}

.service-row.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Left and Right alignment */
.service-row.left .service-image {
  order: 1;
}
.service-row.left .service-text {
  order: 2;
  text-align: left;
}

.service-row.right .service-image {
  order: 2;
}
.service-row.right .service-text {
  order: 1;
  text-align: right;
}

.service-image {
  position: relative;
}

.service-image img {
  height: 250px;
  width: 500px;
  filter: drop-shadow(0 0 3px rgba(255, 87, 51, 0.5));
}

/* Blinking Dot */
/* Futuristic Magenta-Purple Dot for Dark Theme */
.dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at center, #ffffff 40%, #ff0000 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.3);
  animation: pulse-red 1.5s infinite ease-in-out;
  cursor: pointer;
  z-index: 10;
}

/* Tooltip on hover */
.dot::after {
  content: attr(title);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(20, 20, 20, 0.9);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dot:hover::after {
  opacity: 1;
}

/* White rotating ring */
.dot::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  animation: rotate-ring 3s linear infinite;
}

/* Pulsing red glow */
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4),
      0 0 30px rgba(255, 0, 0, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.7),
      0 0 60px rgba(255, 0, 0, 0.5);
    transform: scale(1.2);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4),
      0 0 30px rgba(255, 0, 0, 0.2);
    transform: scale(1);
  }
}

/* Rotating animation for white ring */
@keyframes rotate-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Unique dot positions for each image */
.dot1 {
  top: 40%;
  left: 22%;
} /* For 1st image */
.dot2 {
  top: 20%;
  right: 22%;
} /* For 2nd image */
.dot3 {
  bottom: 55%;
  left: 53%;
} /* For 3rd image */
.dot4 {
  top: 46%;
  right: 72%;
} /* For 4th image */
.dot5 {
  bottom: 32%;
  left: 50%;
} /* For 5th image */

/* Responsive */
@media (max-width: 768px) {
  .services h2 {
    font-size: 1.8rem;
  }

  .service-row {
    flex-direction: column;
    text-align: center !important;
    transform: translateY(40px);
  }

  .service-row.visible {
    transform: translateY(0);
  }

  .service-image,
  .service-text {
    order: unset !important;
  }

  .service-text h3 {
    font-size: 1.1rem;
  }

  .service-text p {
    font-size: 0.9rem;
  }

  .service-image img {
    width: 100%;
    height: auto;
  }

  .dot {
    width: 12px;
    height: 12px;
  }
}

/* ========== MORE SERVICES ========== */
.more-services {
  background: url("../images/bg-tech.png") center/cover no-repeat fixed;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.more-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.more-services h2 {
  font-size: 2.2rem;
  color: #ffffff;
  /* margin-bottom: 2rem; */
}

/* Car Image at the Top */
.car-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 1.2rem; */
}

.more-services-car {
  max-width: 1000px;
  width: 90%;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

/* Services Grid */
.more-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.more-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 0.8rem 0.4rem;
}

.more-service-item img {
  width: 65px;
  height: 70px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 2px rgba(255, 87, 51, 0.4));
}

.more-service-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.more-service-item p {
  font-size: 0.75rem;
  color: #ccc;
  line-height: 1.3;
  max-width: 120px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .more-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .more-service-item p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .more-services h2 {
    font-size: 1.8rem;
  }

  .more-services-car {
    width: 100%;
  }

  .more-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .more-service-item h4 {
    font-size: 0.85rem;
  }

  .more-service-item p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .more-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .more-service-item {
    padding: 0.6rem 0.3rem;
  }

  .more-service-item img {
    width: 30px;
    height: 32px;
  }

  .more-service-item h4 {
    font-size: 0.75rem;
  }

  .more-service-item p {
    font-size: 0.65rem;
  }
}

/* ========== BRANDS WE SERVE ========== */
.brands {
  background: url("../images/bg-tech.jpg") center/cover no-repeat fixed;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.brands::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.brands h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

/* Slider Container */
.brand-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* Scrolling Track */
.brand-track {
  display: flex;
  gap: 3rem;
  animation: scrollBrands 40s linear infinite;
  align-items: center;
  padding: 1rem 0;
}

/* Duplicate for seamless loop */
.brand-track > * {
  flex: 0 0 auto;
}

.brand-track::after {
  content: attr(data-duplicate);
  display: none;
}

.brand-track img {
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9)
    drop-shadow(0 0 2px rgba(255, 87, 51, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

/* Keyframes for scroll */
@keyframes scrollBrands {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Scaling */
@media (max-width: 768px) {
  .brands h2 {
    font-size: 1.8rem;
  }

  .brand-track {
    gap: 2rem;
  }

  .brand-track img {
    height: 60px;
  }
}

/* ========== CUSTOMER TESTIMONIALS ========== */
.testimonials {
  background: url("../images/bg-testimonials.png") center/cover no-repeat fixed;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* dark overlay for contrast */
  z-index: -1;
}

.testimonials h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Style */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(255, 87, 51, 0.2);
}

/* Profile Image */
.customer-pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(255, 87, 51, 0.3);
  margin-bottom: 1.2rem;
}

/* Testimonial Text */
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #f0f0f0;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
  content: '"';
  font-size: 1.5rem;
  color: #ff5733;
}

.reviewer {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 1.8rem;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
  }

  .reviewer {
    font-size: 0.8rem;
  }

  .customer-pic {
    width: 60px;
    height: 60px;
  }
}

/* ========== ABOUT US ========== */
.about {
  background: url("../images/bg-testimonials.png") center/cover no-repeat fixed;
  padding: 4rem 2rem;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== TEXT BLOCK ========== */
.about-text {
  flex: 1 1 55%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.about-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #cccccc;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.about-text ul li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  padding-left: 1.6rem;
  position: relative;
  color: #ff4c2b;
  font-weight: 500;
}

.about-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff4c2b;
  font-size: 1rem;
}

/* ========== IMAGE BLOCK ========== */
.about-image {
  flex: 1 1 40%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.about-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(255, 87, 51, 0.2);
  object-fit: cover;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-text ul {
    text-align: left;
  }

  .about-text ul li {
    font-size: 0.9rem;
  }

  .about-image img {
    width: 90%;
  }
}

/* ========== SPLIT CONTACT SECTION ========== */
.contact-split {
  background: linear-gradient(to bottom right, #0f0f0f, #1a1a1a);
  color: #f0f0f0;
  padding: 4rem 1.5rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2.5rem;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  color: #ff4c2b;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.info-item img {
  width: 32px;
  height: 32px;
}

.info-item a {
  color: #ff784e;
  text-decoration: none;
}

.contact-form {
  flex: 1 1 55%;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-form p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.contact-form form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(to right, #ff1c1c, #990000);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(to right, #e5391c, #ff6d00);
}

/* Overlay */
.thank-you-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.thank-you-overlay.show {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

.thank-you-box {
  background: #1e1e1e;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(255, 87, 51, 0.3);
}

.thank-you-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ff4c2b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 1.6rem;
  }
}

/* ========== SITE FOOTER ========== */
.site-footer {
  background: linear-gradient(to right, #1a1a1a, #2d0d0d);
  color: #f1f1f1;
  padding: 1.8rem 1.5rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 87, 51, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left p {
  margin: 0;
  color: #ccc;
  font-size: 0.92rem;
}

.footer-right a {
  margin-left: 1rem;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-right a img {
  height: 30px;
  width: 30px;
  filter: grayscale(100%) brightness(0.9);
}

.footer-right a:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.15);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-right a {
    margin-left: 0.6rem;
    margin-right: 0.6rem;
  }
}

/* Why Choose Us - Red & Black Theme */
.why-choose {
  background-color: #0d0d0d;
  text-align: center;
  padding: 4rem 2rem;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #ff3c3c; /* Bright Red */
}

.choose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(255, 60, 60, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ff3c3c20;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(255, 60, 60, 0.4);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
}

.card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 1rem;
  color: #cccccc;
}
