/* colorcode */
/* primary: white */
/* secondary  : #d71717 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: transform 1.2s ease, opacity 1s ease;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.preloader-logo {
  width: 160px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

/* breathing effect for logo */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

/* animated gradient text */
.preloader-text {
  font-family: "New Amsterdam", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #d71717, #bfbfbf, #d71717);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
  background-size: 200%;
  animation: gradientMove 3s linear infinite;
  margin-top: -20px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}


/* Slide up fade animation after load */
#preloader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Shared navbar styles */
.navbar {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  /* background: linear-gradient(90deg, #ffffff, #bfbfbf); */
  background: linear-gradient(90deg, #d71717, #bfbfbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.2px;
  transition: transform 0.3s ease;
  font-family: "New Amsterdam", sans-serif;
}

.logo:hover {
  transform: scale(1.05);
}

.navbar a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.navbar-desktop a::after {
  content: "";
  position: absolute;
  bottom: -27.5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d71717, #bfbfbf);
  transition: width 0.4s ease;
}

.navbar-desktop a:hover::after {
  width: 100%;
}

/* ----------- DESKTOP NAVBAR ----------- */
.navbar-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
}

.desktop-left,
.desktop-center,
.desktop-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.desktop-left {
  justify-content: flex-start;
}

.desktop-center {
  justify-content: center;
}

.desktop-right {
  justify-content: flex-end;
}

/* ----------- MOBILE NAVBAR ----------- */
.navbar-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.dropdown {
  display: none;
  flex-direction: column;
  background-color: #111;
  position: absolute;
  top: 65px;
  width: 90%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.dropdown.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  z-index: 100;
}

.dropdown a {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown a:hover {
  background-color: #1a1a1a;
}

/* ----------- RESPONSIVE BEHAVIOR ----------- */
@media (max-width: 768px) {
  .navbar-desktop {
    display: none;
  }

  .navbar-mobile {
    display: flex;
  }
}

@media (min-width: 769px) {
  .navbar-mobile {
    display: none;
  }
}

.firstsection {
  position: relative;
  background-image: url('../images/bannerimagewesterntow.jpeg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;

  text-align: center;
  overflow: hidden;
}

/* 🔹 Overlay */
.firstsection .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* 🔹 Content styling */
.firstsection .content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.firstsection h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.firstsection p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f1f1f1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s;
}

/* 🔹 Button */
.cta-btn {
  background:#d71717;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.4s;
}

.cta-btn:hover {
  background:#9e0c0c;
  transform: translateY(-3px);
}

/* 🔹 Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomBackground {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .firstsection h1 {
    font-size: 2.2rem;
  }

  .firstsection p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}

/* =====================================
   🔹 ULTRA LUXURY CTA SECTION
   ===================================== */

.cta-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #000 100%);
  color: #fff;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

/* Glowing Accent */
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(215,23,23,0.5), transparent 70%);
  filter: blur(150px);
  z-index: 0;
}

/* Main container */
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 70px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.cta-left {
  flex: 1 1 50%;
  animation: fadeInLeft 1.2s ease forwards;
}

.cta-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.cta-left h2 span {
  color: #d71717;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Decorative line under heading */
.cta-left h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #d71717, transparent);
  border-radius: 5px;
}

.cta-left p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 40px;
  max-width: 600px;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 45px;
  display: flex;
  gap: 25px;
}

.cta-btn {
  text-decoration: none;
  padding: 15px 42px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Call Now - Red Gradient Button */
.call-btn {
  background: linear-gradient(135deg, #d71717, #8a1010);
  color: #fff;
  box-shadow: 0 0 25px rgba(215,23,23,0.3);
}

.call-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.call-btn:hover::before {
  transform: translateX(100%);
}

.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(215,23,23,0.5);
}

/* Book Now - Transparent Glass Button */
.book-btn {
  border: 2px solid #d71717;
  color: #fff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.book-btn:hover {
  background: #d71717;
  box-shadow: 0 0 30px rgba(215,23,23,0.4);
  transform: scale(1.05);
}

/* RIGHT SIDE */
.cta-right {
  flex: 1 1 40%;
  text-align: center;
  animation: fadeInRight 1.2s ease forwards;
  position: relative;
}

.cta-image-wrap {
  position: relative;
  display: inline-block;
  overflow: visible;
}

.cta-right img {
  max-width: 100%;
  border-radius: 25px;
  filter: drop-shadow(0 0 30px rgba(215,23,23,0.25));
  animation: floatImg 5s ease-in-out infinite;
}

/* Reflection below image */
.cta-right img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}

/* Glow behind image */
.cta-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(215,23,23,0.35), transparent 70%);
  filter: blur(50px);
  z-index: -1;
}

/* ANIMATIONS */
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-left {
    flex: 1 1 100%;
  }

  .cta-right {
    flex: 1 1 100%;
    margin-top: 40px;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 90px 30px;
  }

  .cta-left h2 {
    font-size: 2.1rem;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}


/* ===============================
   🔹 Elegant Third Section (Luxury Style)
   =============================== */

.third-section {
  background: radial-gradient(circle at top left, #1a1a1a, #000);
  padding: 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ✨ Gradient glow background accent */
.third-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(215,23,23,0.5), transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

/* Layout */
.third-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* 🔸 Individual stat card */
.stat-box {
  flex: 1 1 calc(25% - 40px);
  min-width: 260px;
  perspective: 1000px;
}

.stat-inner {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 60px 30px;
  text-align: center;
  transition: all 0.6s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  position: relative;
  height: 100%;
}

/* 🔸 Glow border animation */
.stat-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(215,23,23,0.8), rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

/* Icon */
.icon {
  font-size: 2.5rem;
  color: #d71717;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

/* Headings */
.stat-inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #d71717);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.stat-inner p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover Animation */
.stat-inner:hover {
  transform: translateY(-15px) rotateX(8deg) rotateY(4deg);
  box-shadow: 0 25px 50px rgba(215,23,23,0.25);
}

.stat-inner:hover .icon {
  transform: scale(1.2) rotate(15deg);
  color: #fff;
  text-shadow: 0 0 15px #d71717;
}

.stat-inner:hover::after {
  opacity: 1;
}

/* Scroll Animation */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}

.stat-box {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.stat-box:nth-child(1) {animation-delay: 0.2s;}
.stat-box:nth-child(2) {animation-delay: 0.4s;}
.stat-box:nth-child(3) {animation-delay: 0.6s;}
.stat-box:nth-child(4) {animation-delay: 0.8s;}

/* Responsive */
@media (max-width: 992px) {
  .stat-box {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 600px) {
  .third-section {
    padding: 80px 30px;
  }
  .stat-box {
    flex: 1 1 100%;
  }
  .stat-inner {
    padding: 50px 25px;
  }
}





/* ===================================
   🔹 WHY CHOOSE US - Elegant Split Layout
   =================================== */

.why-choose-us {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

/* LEFT SIDE IMAGE */
.why-left {
  flex: 1 1 45%;
  position: relative;
}

.why-left img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.6s ease;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(215,23,23,0.5), rgba(0,0,0,0.5));
  border-radius: 25px;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.why-left:hover img {
  transform: scale(1.05);
}

.why-left:hover .image-overlay {
  opacity: 0.4;
}

/* RIGHT SIDE CONTENT */
.why-right {
  flex: 1 1 50%;
}

.why-right h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.why-right h2 span {
  color: #d71717;
}

.why-right p {
  color: #ccc;
  margin-bottom: 35px;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 550px;
}

/* FEATURES LIST */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #eee;
  transition: all 0.3s ease;
}

.features li i {
  color: #d71717;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.features li:hover i {
  transform: scale(1.3);
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.btn.call {
  background: #d71717;
  color: #fff;
}

.btn.call:hover {
  background: #fff;
  color: #d71717;
  box-shadow: 0 0 25px rgba(215,23,23,0.4);
}

.btn.book {
  background: transparent;
  border: 2px solid #d71717;
  color: #fff;
}

.btn.book:hover {
  background: #d71717;
  color: #fff;
  box-shadow: 0 0 25px rgba(215,23,23,0.3);
}

/* ANIMATIONS */
@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-60px);}
  to {opacity: 1; transform: translateX(0);}
}

.why-left {
  animation: fadeInLeft 1s ease forwards;
}

.why-right {
  animation: fadeInRight 1s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-left, .why-right {
    flex: 1 1 100%;
  }

  .why-right {
    margin-top: 40px;
  }

  .why-right p {
    max-width: 100%;
  }

  .features li {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .why-choose-us {
    padding: 80px 30px;
  }

  .why-right h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}



/* ============================================
   🔹 LUXURY CONTACT FORM SECTION
   ============================================ */

.contact-section {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #fff;
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215,23,23,0.4), transparent 70%);
  filter: blur(130px);
  z-index: 0;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 60px;
}

/* LEFT SIDE */
.contact-left {
  flex: 1 1 45%;
}

.contact-left h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left h2 span {
  color: #d71717;
}

.contact-left p {
  color: #ccc;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 35px;
}

.contact-points {
  list-style: none;
  padding: 0;
}

.contact-points li {
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-points i {
  color: #d71717;
  font-size: 1.2rem;
}

/* RIGHT SIDE FORM */
.contact-right {
  flex: 1 1 45%;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(215,23,23,0.15);
  transition: all 0.3s ease;
}

.contact-right:hover {
  box-shadow: 0 0 40px rgba(215,23,23,0.25);
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  padding: 12px 5px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d71717;
  box-shadow: 0 4px 15px rgba(215,23,23,0.2);
}

.contact-form label {
  position: absolute;
  left: 5px;
  top: 12px;
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact-form input:focus + label,
.contact-form input:valid + label,
.contact-form textarea:focus + label,
.contact-form textarea:valid + label {
  top: -12px;
  font-size: 0.85rem;
  color: #d71717;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: linear-gradient(135deg, #d71717, #8a1010);
  color: #fff;
  border: none;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(215,23,23,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-left p {
    max-width: 90%;
    margin: 0 auto 30px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 30px;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-right {
    width: 100%;
  }
}

/* ============================================
   🔹 FAQ SECTION (Elegant Accordion)
   ============================================ */

.faq-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215,23,23,0.35), transparent 70%);
  filter: blur(150px);
  z-index: 0;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.faq-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.faq-title span {
  color: #d71717;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #d71717, transparent);
  border-radius: 5px;
}

.faq-subtitle {
  text-align: center;
  color: #bbb;
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* FAQ Items */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 0 20px rgba(215,23,23,0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.faq-icon {
  font-size: 1.5rem;
  color: #d71717;
  transition: transform 0.4s ease;
}

/* Hidden Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0 25px;
  transition: all 0.4s ease;
}

.faq-answer p {
  color: #ccc;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 20px 0;
}

/* Active (Open) State */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 25px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 90px 30px;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}



/* =============================================
   🔹 LUXURY FOOTER DESIGN
   ============================================= */

.footer-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 60px 40px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215,23,23,0.35), transparent 70%);
  filter: blur(150px);
  z-index: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 60px;
}

/* Brand Column */
.footer-logo {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #d71717;
}

.footer-col p {
  color: #ccc;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 340px;
}

/* Column Headings */
.footer-col h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d71717, transparent);
  border-radius: 5px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #d71717;
  letter-spacing: 0.5px;
}

/* Contact Info */
.contact-info li {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.95rem;
}

.contact-info i {
  color: #d71717;
  margin-right: 8px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #fff;
  transition: 0.4s ease;
}

.social-icons a:hover {
  background: #d71717;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(215,23,23,0.4);
}

/* Bottom Line */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  font-size: 0.95rem;
  color: #999;
}

.footer-bottom p {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col p {
    margin: 0 auto 20px;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 60px 30px 30px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-col h3 {
    font-size: 1.15rem;
  }
}


.towing-services-section {
    background: #000;
}

.section-title {
    color: #d71717;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtext {
    color: #bfbfbf;
    font-size: 17px;
    line-height: 1.7;
}

.title-line {
    width: 70px;
    height: 4px;
    background: #d71717;
    margin-top: 12px;
    border-radius: 10px;
}

.service-item {
    background: #0e0e0e;
    border: 1px solid #1c1c1c;
    padding: 24px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: #d71717;
    box-shadow: 0 0 18px rgba(215, 23, 23, 0.25);
}

.service-icon {
    font-size: 32px;
    color: #d71717;
}

.service-title {
    color: #fff;
    font-weight: 600;
    margin-top: 12px;
}

.service-text {
    color: #9f9f9f;
    font-size: 15px;
    margin-top: 5px;
}

