@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif, Poppins;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Remove list dots globally */
ul,
ol {
  list-style: none;
}

ul li {
  list-style: none;
}

.banner {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* overflow: hidden; Removed to allow dropdown to show */
  background-image: radial-gradient(circle, #171424, black);
  box-sizing: border-box;
  padding-top: 1px; /* Prevent margin collapse */
}

.navbar {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  border-radius: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(15, 15, 25, 0.9);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 15px 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(235, 89, 95, 0.3);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.navbar:hover {
  background: rgba(15, 15, 25, 0.95);
  border-bottom-color: rgba(235, 89, 95, 0.5);
}

.logo {
  width: 130px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

/* Hide mobile quote button by default (desktop) */
.mobile-quote-btn {
  display: none !important;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 8px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #e5e7eb;
  text-transform: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 8px 16px;
  transition: color 0.3s ease;
  border-radius: 6px;
  position: relative;
  display: inline-block;
}

.navbar ul li a:hover {
  color: #eb595f;
}

.navbar ul li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #eb595f;
  transition: width 0.3s ease;
}

.navbar ul li:hover::after {
  width: calc(100% - 32px);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  min-width: 220px;
  width: max-content;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(235, 89, 95, 0.4);
  z-index: 1000;
  border-radius: 10px;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: none;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
}

.dropdown-content a {
  color: #e5e7eb;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14.5px;
  text-transform: none;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.dropdown-content a:hover {
  background: rgba(235, 89, 95, 0.2);
  color: #ffffff;
  padding-left: 20px;
  box-shadow: inset 3px 0 0 #eb595f;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

/* Dropdown scrollbar styling - hidden */
.dropdown-content::-webkit-scrollbar {
  display: none;
}

.dropdown-content {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.contentindex {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  color: white;
  margin-left: 80px;
}

.content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}

.contentindex h1,
.content h1 {
  font-size: 70px;
}

.contentindex p,
.content p {
  margin: 20px unset;
  font-weight: 100;
  line-height: 25px;
  font-size: 20px;
  width: 45%;
}

.btn_hd {
  font-size: 15px;
  padding: 14px 32px;
  text-align: center;
  margin-left: 20px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #eb595f 0%, #d63d44 100%);
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(235, 89, 95, 0.3);
  letter-spacing: 0.5px;
}

.btn_hd:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 89, 95, 0.4);
}

.btn_hd span {
  display: none; /* Remove the old span animation */
}

.btn_sp {
  font-size: 17px;
  width: 200px;
  padding: 12px 0;
  text-align: center;
  margin-top: 20px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #eb595f;
  background: transparent;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.getq_btn {
  margin-right: 15px;
}

.btn_sp:not(:last-child) {
  margin-right: 15px;
}

/* Hide Buy Leads button on desktop */
.buy-leads-btn {
  display: none;
}


button:hover span {
  width: 100%;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #eb595f;
  border-radius: 15px;
}

body {
  overflow: overlay;
}

.up {
  background: #eb595f;
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 1;
  padding: 10px 10px 10px 10px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

.up.active {
  visibility: visible;
  opacity: 1;
}

.up i {
  color: #ffffff;
  font-size: 50px;
}

/* BETWEEN */
.rd {
  color: #eb595f;
  transition: 0.5s;
  cursor: pointer;
}

.rd:hover {
  transform: translateX(3%);
}

/* LAST */
.last {
  position: relative;
  background-image: url("../source/bk.jpg");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  height: 400px;
}

.last div {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.last div h1 {
  font-size: 35px;
}

.last div button {
  font-size: 25px;
  color: black;
  transition: 0.5s;
}

.last div button {
  font-size: 25px;
  width: 220px;
  padding: 12px 20px;
  text-align: center;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #eb595f;
  background: transparent;
  color: black;
  cursor: pointer;
  position: relative;
}

.last div button:hover {
  background-color: #eb595f;
  color: white;
}

/* FOOTER */
.ftr-m {
  color: #f3f3f3;
  padding: 30px 30px 0 30px;
  background-image: radial-gradient(circle, #171424, black);
  align-items: center;
  justify-content: space-between;
}

.ftr-t {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #ffffff;
  margin: 0 0 20px 0;
}

.ftr-t img {
  width: 160px;
  max-width: 100%;
  height: auto;
}

.ftr-t ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.ftr-t ul li {
  display: flex;
  align-items: center;
}

.ftr-t ul li a {
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.ftr-t ul li a:hover {
  transform: translateY(-3px);
}

.ftr-t ul li a i {
  font-size: 32px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ftr-t ul li a i:hover {
  color: #eb595f;
  transform: scale(1.1);
}

.ftr-d {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #f4f4f4;
}

.ftr-d div {
  width: 250px;
}

.ftr-d div h3 {
  color: #eb595f;

  margin: 0 0 10px 0;
}

.ftr-d div ul {
  line-height: 30px;
}

.ftr-d div a {
  text-decoration: none;
  color: white;
}

.ftr-d div a:hover {
  color: #eb595f;
}

.ftr-b {
  position: relative;
  padding: 15px 0 12px 0;
  width: 100%;
  text-align: center;
}

.ftr-b h2 {
  position: absolute;
  top: 3px;
  color: #41303e;
  transition: 2s;
  cursor: default;
  font-size: 30px;
  left: 0px;
}

.ftr-b h2:hover {
  left: 20px;
  color: #eb595f;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

/* Responsive navbar for screens below 1180px */
/* Desktop navbar - above 1179px */
@media screen and (min-width: 1180px) {
  .mobile-quote-btn {
    display: none !important;
    /* Hide mobile GET QUOTE button on desktop */
  }

  .navbar ul li.mobile-quote-btn {
    display: none !important;
    /* Extra specificity to hide mobile button */
  }

  .btn_hd {
    display: inline-block;
    /* Show desktop GET QUOTE button */
  }

  .mobile-menu-toggle {
    display: none !important;
    /* Hide hamburger on desktop */
  }

  .navbar ul {
    display: flex !important;
    /* Show normal navbar on desktop */
    position: static;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    flex-direction: row;
    width: auto;
    box-shadow: none;
    backdrop-filter: none;
  }

  .navbar ul li {
    margin: 0 15px;
    width: auto;
  }

  .navbar ul li a {
    font-size: 16px;
    margin: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 1179px) {
  /* Navbar styles moved to responsive-navbar.css */

  .contentindex {
    display: flex;
    top: 40%;
    left: unset;
    text-align: center;
    color: white;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
  }

  .house {
    right: 36% !important;
    top: 50% !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1124px) {
  .navbar {
    width: 95%;
    padding: 5px 15px;
    align-items: center;
    gap: 10px;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 15px;
    margin-top: 0;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(235, 89, 95, 0.3);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .navbar ul.show {
    display: grid !important;
  }

  .navbar ul li {
    margin: 10px 15px;
  }

  .logo {
    width: 140px;
  }

  .btn_hd {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Dropdown adjustments */
  .dropdown-content {
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
  }

  .dropdown-content a {
    padding: 5px 10px;
    margin: 2px;
    border-radius: 5px;
    background: rgba(235, 89, 95, 0.1);
  }
}

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  /* Footer adjustments */
  .ftr-m {
    padding: 20px;
  }
  .ftr-t {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 20px 0;
  }
  .ftr-t img {
    width: 150px;
    max-width: 80%;
  }

  .ftr-t ul {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .ftr-t ul li a i {
    font-size: 28px;
  }

  .ftr-s {
    width: 100%;
    text-align: center;
  }

  .ftr-d {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .ftr-d div {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Mobile Styles (320px - 768px) */
@media screen and (max-width: 768px) {
  .house {
    display: none !important;
  }

  .banner {
    height: 600px !important;
    min-height: 600px !important;
    padding-top: 1px;
  }

  .navbar {
    width: full;
    padding: 10px;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none !important;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 15px;
    margin-top: 0;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(235, 89, 95, 0.3);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .navbar ul.show {
    display: grid !important;
  }

  .navbar ul li {
    margin: 8px 0;
    width: 100%;
  }

  .navbar ul li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }

  .logo {
    width: 120px;
  }

  .btn_hd {
    padding: 12px 24px;
    font-size: 12px;
    margin-left: 10px;
  }

  /* Mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
  }

  /* Dropdown for mobile */
  .dropdown-content {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    background: rgba(235, 89, 95, 0.1);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
  }

  .dropdown-content a {
    padding: 8px;
    text-align: center;
    border-radius: 5px;
    background: rgba(235, 89, 95, 0.2);
    font-size: 14px;
  }

  /* Content adjustments */
  .content {
    padding: 20px;
    text-align: center;
  }

  .content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .content p {
    font-size: 16px;
    margin-top: 15px;
  }

  /* Footer mobile */
  .ftr-m {
    padding: 40px 20px 20px;
  }

  .ftr-t {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
  }

  .ftr-t img {
    width: 140px;
    max-width: 70%;
  }

  .ftr-t ul {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .ftr-t ul li a i {
    font-size: 24px;
  }

  /* Grid layout for footer links */
  .ftr-d {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
    padding: 0 0 20px 0;
    text-align: left;
    align-items: start;
    border-bottom: none;
  }

  .ftr-d div {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .ftr-d div h3 {
    font-size: 15px;
    margin-bottom: 15px;
    color: #eb595f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .ftr-d div ul {
    padding: 0;
    line-height: 24px;
  }

  .ftr-d div ul li {
    margin-bottom: 8px;
  }

  .ftr-d div a {
    font-size: 13px;
    color: #ccc;
    display: block;
  }

  /* "Get in touch" section - full width at bottom */
  .ftr-d div:last-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ftr-d div:last-child h3 {
    margin-bottom: 15px;
  }

  .ftr-d div:last-child ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .ftr-b {
    padding: 20px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
  }

  .ftr-b p {
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
  }
}

/* Up button styles */
.up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #eb595f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.up.active {
  opacity: 1;
  visibility: visible;
}

.up:hover {
  background: #d63d44;
  transform: scale(1.1);
}

.up i {
  color: white;
  font-size: 20px;
}

/* Responsive testimonial cards */
@media screen and (max-width: 768px) {
  .d5 {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .d5 .m-10 {
    margin: 10px 0;
    width: 100%;
    max-width: 350px;
  }

  .contentindex h1,
  .content h1 {
    font-size: 42px;
  }

  .contentindex p,
  .content p {
    font-size: 16px;
    width: 90%;
    margin: 15px auto;
    line-height: 1.5;
  }

  /* Hero buttons stack vertically on mobile */
  .contentindex div,
  .content div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .btn_sp {
    width: 85%;
    max-width: 280px;
    font-size: 16px;
    padding: 14px 20px;
  }

  .getq_btn {
    margin-right: 0;
  }

  .btn_sp:not(:last-child) {
    margin-right: 0;
  }

  /* Show Buy Leads button on mobile */
  .buy-leads-btn {
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {
  .up {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }

  .up i {
    font-size: 16px;
  }

  .d5 .m-10 {
    max-width: 320px;
    padding: 15px;
    margin: 8px 0;
  }
}

/* Small Mobile Styles (320px - 480px) */
@media screen and (max-width: 480px) {
  .navbar {
    padding: 8px;
  }

  .logo {
    width: 100px;
  }

  .btn_hd {
    padding: 10px 20px;
    font-size: 11px;
  }

  .contentindex h1,
  .content h1 {
    font-size: 28px;
    letter-spacing: 0;
  }

  .contentindex p,
  .content p {
    font-size: 14px;
    width: 95%;
  }

  .btn_sp {
    width: 90%;
    max-width: 260px;
    font-size: 14px;
    padding: 12px 16px;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
  }

  .dropdown-content a {
    font-size: 13px;
    padding: 6px;
  }

  .ftr-s h2 {
    font-size: 16px;
  }

  .cont p {
    font-size: 12px;
  }

  .ftr-d-b button {
    width: 180px;
    font-size: 14px;
  }

  .ftr-b-c h1 {
    font-size: 20px;
  }
}

/* ========================================
   PRELOADER OVERLAY STYLES
   ======================================== */

.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-overlay .socket {
  position: relative;
  left: auto;
  top: auto;
  margin: 0;
  transform: scale(1.5);
}

/* Ensure preloader appears above everything */
.preloader-overlay {
  z-index: 999999 !important;
}

/* Modern Responsive Navbar */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 10002;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Styles */
@media screen and (max-width: 1179px) {
  .navbar {
    padding: 15px 5%;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: block !important;
  }

  /* Mobile Menu Container - Full Screen */
  .navbar ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%; /* Full Width */
    height: 100vh; /* Full Height */
    background: #141423; /* Solid background */
    background: linear-gradient(180deg, #141423 0%, #0f0f19 100%);
    flex-direction: column !important;
    padding: 80px 20px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    overflow-y: auto;
    overscroll-behavior: contain; /* Prevent scroll chaining */
    display: flex;
    align-items: stretch;
  }

  .navbar ul.show {
    right: 0;
  }

  /* Menu Items - Uniform Styling */
  .navbar ul li {
    display: block !important;
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    text-align: left;
  }

  .navbar ul.show li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered animation for list items */
  .navbar ul.show li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .navbar ul.show li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .navbar ul.show li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .navbar ul.show li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .navbar ul.show li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .navbar ul.show li:nth-child(6) {
    transition-delay: 0.35s;
  }
  .navbar ul.show li:nth-child(7) {
    transition-delay: 0.4s;
  }
  .navbar ul.show li:nth-child(8) {
    transition-delay: 0.45s;
  }
  .navbar ul.show li:nth-child(9) {
    transition-delay: 0.5s;
  }
  .navbar ul.show li:nth-child(10) {
    transition-delay: 0.55s;
  }
  .navbar ul.show li:nth-child(11) {
    transition-delay: 0.6s;
  }
  .navbar ul.show li:nth-child(12) {
    transition-delay: 0.65s;
  }
  .navbar ul.show li:nth-child(13) {
    transition-delay: 0.7s;
  }
  .navbar ul.show li:nth-child(14) {
    transition-delay: 0.75s;
  }
  .navbar ul.show li:nth-child(15) {
    transition-delay: 0.8s;
  }
  .navbar ul.show li:nth-child(16) {
    transition-delay: 0.85s;
  }
  .navbar ul.show li:nth-child(17) {
    transition-delay: 0.9s;
  }
  .navbar ul.show li:nth-child(18) {
    transition-delay: 0.95s;
  }
  .navbar ul.show li:nth-child(19) {
    transition-delay: 1s;
  }
  .navbar ul.show li:nth-child(20) {
    transition-delay: 1.05s;
  }

  .navbar ul li:last-child {
    border-bottom: none;
  }

  .navbar ul li::after {
    display: none;
  }

  /* Uniform Link Styling - All items */
  .navbar ul li a,
  .dropdown > a,
  .dropdown-content a {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    padding: 16px 20px !important;
    font-size: 18px !important;
    color: #e5e7eb !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    border-radius: 8px;
    width: 100%;
    background: transparent !important;
    border-bottom: none !important;
    pointer-events: auto !important;
  }

  .navbar ul li a:hover,
  .dropdown > a:hover,
  .dropdown-content a:hover {
    color: #eb595f !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding-left: 25px !important;
  }

  /* Hide Desktop Quote Button */
  .btn_hd {
    display: none;
  }

  /* Mobile Quote Button */
  .mobile-quote-btn {
    display: block !important;
    margin: 30px 0 0 !important;
    border-bottom: none !important;
    padding: 0;
  }

  .mobile-quote-btn a {
    background: linear-gradient(135deg, #eb595f 0%, #d63d44 100%) !important;
    color: white !important;
    text-align: center;
    border-radius: 50px;
    padding: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(235, 89, 95, 0.3);
    justify-content: center !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 16px !important;
  }

  .mobile-quote-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 89, 95, 0.4);
    padding-left: 18px !important;
  }

  /* Mobile Dropdown - Always Visible & Flattened */
  .dropdown-content {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Hide chevron */
  .dropdown > a i {
    display: none;
  }

  /* Disable hover on mobile */
  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}

/* Logo sizing */
@media screen and (max-width: 1179px) {
  .logo {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    width: 100px;
  }

  .navbar {
    padding: 15px 4%;
  }

  .navbar ul {
    width: 100%;
    max-width: 100%;
    border-left: none;
  }
}
