/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;

  
  font-family: 'Manrope', 'DM Sans', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body, button, input, textarea {
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e57d00, #c2255f);
}


/* HEADER & NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.15, 1);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 138, 0, 0.97);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.25);
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

/* LOGO */
.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .logo-img {
    width: 32px;
    height: 32px;
  }
}

.navbar .logo a {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.navbar .logo a span {
  color: #ff8a00;
  font-weight: 600;
  margin-left: 2px;
  transition: color 0.3s ease;
}

.navbar.scrolled .logo a,
.navbar.scrolled .logo a span {
  color: white;
}

/* DESKTOP MENU */
.navbar .menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: clamp(8px, 1.5vw, 32px);
}

.navbar .menu li {
  position: relative;
}

.navbar .menu li a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.01em;
}

.navbar .menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2.5px;
  background: #ff8a00;
  border-radius: 4px;
  transition: width 0.25s ease-out;
}

.navbar .menu li a:hover {
  color: #ff8a00;
}

.navbar .menu li a:hover::after {
  width: 100%;
}

.navbar.scrolled .menu li a {
  color: #ffffff;
}

.navbar.scrolled .menu li a:hover {
  color: #ffffff;
  opacity: 0.95;
}

.navbar.scrolled .menu li a::after {
  background: #ffffff;
}

/* dropdown arrow */
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
  opacity: 0.8;
}

/* SERVICES DROPDOWN (DESKTOP)*/
.services-dropdown {
  position: relative;
}


.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 138, 0, 0.25);
  border-radius: 24px;
  box-shadow: 0 25px 50px -8px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 138, 0, 0.1) inset;
  padding: 16px 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 1001;
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu ul {
  list-style: none;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  color: #eee;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 16px;
  transition: all 0.2s;
  width: 100%;
  border: none;
}

.dropdown-menu li a {
  position: relative;
}

.dropdown-menu li a::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: #ff8a00;
  transition: width 0.3s ease;
}

.dropdown-menu li a:hover {
  background: none;
  color: #ff8a00;
  transform: translateX(4px);
}

.dropdown-menu li a:hover::after {
  width: calc(100% - 36px);
}

.dropdown-menu li a::after {
  display: none;
}

/* SUB DROPDOWN (DESKTOP)*/
.sub-dropdown {
  position: relative;
}

.sub-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  color: #eee;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 16px;
  transition: background 0.2s;
  cursor: pointer;
}

.sub-dropdown-toggle .sub-arrow {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.25s;
}

.sub-dropdown:hover>.sub-dropdown-toggle {
  background: rgba(255, 138, 0, 0.1);
  color: #ff8a00;
}

.sub-dropdown:hover .sub-arrow {
  transform: rotate(90deg);
  opacity: 1;
  color: #ff8a00;
}

.sub-dropdown-menu {
  position: absolute;
  top: -15px;
  left: 100%;
  width: 200px;
  margin-right: 5px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 138, 0, 0.25);
  border-radius: 15px;
  padding: 12px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s;
  box-shadow: 0 20px 35px -10px black;
}

.sub-dropdown:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown-menu li a {
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: 14px;
}

/* MOBILE SIDEBAR  */
.menu-btn {
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  transition: opacity 0.2s;
  z-index: 1002;
}

/* mobile styles */
@media (max-width: 947px) {
  .menu-btn {
    display: block;
  }

  .navbar .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(380px, 85%);
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 138, 0, 0.2);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
    padding: 100px 24px 40px 24px;
    transition: left 0.4s cubic-bezier(0.2, 0.9, 0.1, 1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    z-index: 1001;
    scrollbar-width: thin;
    scrollbar-color: #ff8a00 #1e1e1e;
  }

  .navbar .menu::-webkit-scrollbar {
    width: 4px;
  }

  .navbar .menu::-webkit-scrollbar-track {
    background: #1e1e1e;
  }

  .navbar .menu::-webkit-scrollbar-thumb {
    background: #ff8a00;
    border-radius: 8px;
  }

  .navbar .menu.active {
    left: 0;
  }

  .navbar .menu li {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .navbar .menu li a {
    font-size: 1.3rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f0f0f0;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .navbar .menu li a::after {
    display: none;
  }

  .services-dropdown>a .dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s;
  }

  /* dropdown container (mobile) */
  .services-dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: -70;
    transform: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: none;

    border-radius: 0 16px 16px 0;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: max-height 0.45s ease-in-out, padding 0.3s, margin 0.2s;
    margin: 0 0 0 16px;
  }

  .services-dropdown.active .dropdown-menu {
    max-height: 800px;
    padding: 12px 0 12px 4px;
    margin: 8px 0 12px 16px;
  }

  .dropdown-menu li a {
    font-size: 1.1rem;
    padding: 14px 20px;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 138, 0, 0.1);
  }


  /* SUB-DROPDOWN mobile  */
  .sub-dropdown .sub-dropdown-toggle {
    padding: 14px 20px;
    font-size: 1.1rem;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 138, 0, 0.08);
  }

  .sub-dropdown .sub-arrow {
    transition: transform 0.3s;
  }

  .sub-dropdown.active .sub-arrow {
    transform: rotate(90deg);
    color: #ff8a00;
  }

  .sub-dropdown.active .sub-dropdown-toggle {
    background: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
  }

  .sub-dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: calc(100% - 16px);
    margin-left: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 0 14px 14px 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0;
  }

  .sub-dropdown.active .sub-dropdown-menu {
    max-height: 350px;
    padding: 8px 0;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .sub-dropdown-menu li a {
    font-size: 1rem;
    padding: 12px 20px;
    border-bottom: none;
  }
  .navbar .menu li:last-child {
    margin-bottom: 30px;
  }
}

@media (min-width: 948px) {
  .services-dropdown:hover .dropdown-menu {
    pointer-events: auto;
  }
}

/* Scroll-up Button */
.scroll-up-btn {
  position: fixed;
  height: clamp(45px, 6vw, 50px);
  width: clamp(45px, 6vw, 50px);
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  right: clamp(15px, 3vw, 30px);
  bottom: clamp(15px, 3vw, 30px);
  text-align: center;
  line-height: clamp(45px, 6vw, 50px);
  color: #ffffff;
  z-index: 9999;
  font-size: clamp(1.5rem, 3vw, 28px);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-up-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-up-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}


/* WhatsApp Button */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: clamp(15px, 3vw, 20px);
  left: clamp(15px, 3vw, 20px);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  animation: slideInLeft 0.6s ease-out;
}

.whatsapp-icon {
  width: clamp(45px, 6vw, 50px);
  margin-right: -5px;
}


/*  ALL PAGE STYLES START */

/*  SECTION HEADER STYLES  */
.section-header {
    text-align: center;
    padding: 0 15px;
    position: relative;
}

/* SUBTITLE */
.section-subtitle {
    color: #9e9e9e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;

    position: relative;
    display: inline-block;
}

/* subtle line under subtitle */
.section-subtitle::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    margin: 6px auto 0;
    background: linear-gradient(90deg, transparent, #ff8a00, transparent);
    border-radius: 2px;
}

/* TITLE */
.section-title {
    font-size: clamp(2rem, 5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;

    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}


/* DESCRIPTION */
.section-description {
    color: #bfbfbf;
    font-size: clamp(0.9rem, 1.6vw, 17px);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* UNDERLINE */
.underline {
    width: 80px;
    height: 4px;
    margin: 25px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    margin-bottom: clamp(50px, 7vw, 50px);
    box-shadow: 0 0 20px rgba(255, 138, 0, 0.4);
}


/*  ALL PAGE STYLES END */


/*  FOOTER STYLES */
.footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 138, 0, 0.15);
  width: 100%;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 138, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(229, 46, 113, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 138, 0, 0.03) 0%, transparent 50%);
  animation: softShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes softShift {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* TOP SECTION */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s ease;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 10px rgba(255, 138, 0, 0.3));
}

.footer-brand img:hover {
  transform: rotate(3deg) scale(1.05);
}

.footer-brand h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(120deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.footer-tagline {
  color: #aaa;
  font-size: 1rem;
  margin-top: 4px;
  font-weight: 400;
  max-width: 400px;
}

.footer-social-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.footer-social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.footer-social-icon:hover::before {
  left: 100%;
}

.footer-social-icon:hover {
  transform: translateY(-5px);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

.footer-social-icon:nth-child(2):hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3);
}

.footer-social-icon:nth-child(3):hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.footer-social-icon:nth-child(4):hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

/* MID SECTION Description */
.footer-description-box {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  padding: 2rem 2.2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  animation: fadeUp 0.8s ease 0.1s both;
}

.footer-description-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-description-box p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 900px;
}

/* LINKS SECTION */
.footer-links-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 1.5fr 1.5fr;
  gap: 2.5rem 1.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.link-group h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ff8a00;
  position: relative;
  padding-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.link-group h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2.5px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.link-group:hover h4::after {
  width: 70px;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 0.9rem;
}

.link-group a {
  color: #bbb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  position: relative;
  padding: 0.2rem 0;
}

.link-group a i {
  width: 20px;
  font-size: 0.95rem;
  color: #ff8a00;
  transition: all 0.25s ease;
}

.link-group a:hover {
  color: #fff;
  transform: translateX(5px);
}

.link-group a:hover i {
  color: #e52e71;
  transform: scale(1.15);
}

/* Service title style (non-link) */
.service-title {
  margin: 1.2rem 0 0.3rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff8a00;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.9;
  padding-left: 0;
}

.service-title:first-of-type {
  margin-top: 0;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  animation: fadeUp 1s ease 0.3s both;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-bottom-links a i {
  color: #ff8a00;
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: #ff8a00;
}

/* ANIMATIONS  */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-content {
    padding: 0 1.25rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-brand h2 {
    font-size: 1.5rem;
  }

  .footer-description-box {
    padding: 1.5rem;
  }
}

@media (max-width: 380px) {
  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-brand {
    flex-wrap: wrap;
  }
}

/* Accessibility focus */
a:focus-visible {
  outline: 2px solid #ff8a00;
  outline-offset: 4px;
}