/* ── Nav Dropdown ── */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item-dropdown .nav-link .dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  margin-top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #192324;
  border-top: 2px solid var(--color-gold);
  border-radius: 0 0 6px 6px;
  min-width: 260px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.3s ease;
  z-index: 999;
  padding: 8px 0;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a.active-service {
  color: var(--color-gold);
  background: rgba(197, 165, 104, 0.08);
  border-left-color: var(--color-gold);
  padding-left: 28px;
}

/* Mobile dropdown */
@media (max-width: 991px) {
  .nav-item-dropdown .nav-link .dropdown-arrow {
    margin-left: 4px;
    padding: 0;
  }

  .nav-dropdown {
    position: static !important;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    margin: 0;
    padding: 0;

    width: 100%;
    transform: none !important;

    transition: all 0.3s ease;
  }

  .nav-item-dropdown:hover .nav-dropdown {
    opacity: 0;
    visibility: hidden;
  }

  .nav-item-dropdown.mobile-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }
  .nav-item-dropdown.mobile-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .nav-link {
    font-size: 22px;
  }

  .nav-item-dropdown {
    width: 100%;
    display: block;
  }
  .nav-item-dropdown .nav-link {
    width: fit-content;
    transform: translateX(85px);
  }
}

/* ── Service Page Layout ── */
.service-page-section {
  padding: 80px 0 100px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Sidebar */
.service-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-services-nav {
  background: var(--color-dark);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-services-nav h4 {
  padding: 20px 24px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.sidebar-service-link:last-child {
  border-bottom: none;
}

.sidebar-service-link:hover,
.sidebar-service-link.active {
  color: var(--color-gold);
  background: rgba(197, 165, 104, 0.07);
  padding-left: 30px;
}

.sidebar-service-link .arrow {
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-service-link.active .arrow,
.sidebar-service-link:hover .arrow {
  opacity: 1;
}

/* Help Card */
.help-card-service {
  background: var(--color-dark);
  border-radius: 8px;
  padding: 30px 24px;
  color: var(--color-white);
}

.help-card-service h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.help-card-service p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.help-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.help-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(197, 165, 104, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

.help-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.service-hero-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.service-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.service-intro {
  margin-bottom: 40px;
}

.service-intro p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

/* Service List */
.service-offerings {
  margin-bottom: 50px;
}

.service-offerings h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offering-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-bg-light);
  border-radius: 6px;
  border-left: 3px solid var(--color-gold);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.offering-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.offering-item .check {
  color: var(--color-gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.offering-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.5;
}

/* Why Choose Us */
.why-us {
  margin-bottom: 50px;
  background: var(--color-dark);
  border-radius: 8px;
  padding: 50px;
  color: var(--color-white);
}

.why-us .eyebrow-label {
  color: var(--color-gold);
}

.why-us h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-us h3 span {
  color: var(--color-gold);
}

.why-us > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 35px;
  line-height: 1.75;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
}

.why-item:hover {
  border-color: var(--color-gold);
}

.why-item .icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.why-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* FAQ */
.service-faq {
  margin-bottom: 50px;
}

.service-faq h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.faq-lead-text {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.faq-item-service {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item-service:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--color-white);
  gap: 12px;
}

.faq-question-service h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
}

.faq-icon-service {
  width: 28px;
  height: 28px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item-service.open .faq-icon-service {
  transform: rotate(45deg);
}

.faq-answer-service {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  padding: 0 22px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  background: #fafafa;
}

.faq-item-service.open .faq-answer-service {
  max-height: 300px;
  padding: 16px 22px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-page-grid {
    grid-template-columns: 280px 1fr;
    gap: 35px;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    order: 2;
  }

  .service-content-area {
    order: 1;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .why-us {
    padding: 30px 24px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .nav-link {
    font-size: 22px;
  }

  .nav-item-dropdown {
    width: 100%;
    display: block;
  }
  .nav-item-dropdown .nav-link {
    width: fit-content;
    transform: translateX(85px);
  }
}