/*************************************************************
 * OUR SERVICES PAGE
 * Premium dark + royal gold UI (matches home page styling)
 *
 * Path:
 *   assets/css/pages/our-services.css
 *************************************************************/

/* THEME VARIABLES (aligned with home page) */
:root {
  --gold-light: #f5dd66;
  --gold-dark: #dab241;
  --gold-soft: rgba(245, 221, 102, 0.16);
  --gold-border: rgba(245, 221, 102, 0.22);
  --gold-border-strong: rgba(245, 221, 102, 0.5);
  --text-soft: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.68);
  --glass-dark: rgba(0, 0, 0, 0.78);
}

/* Container similar to home page */
.os-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

/*************************************************************
 * HERO SECTION
 *************************************************************/
.os-hero {
  position: relative;
  min-height: 70vh;
  background: radial-gradient(
      circle at 10% 0%,
      rgba(245, 221, 102, 0.3),
      transparent 60%
    ),
    url("/assets/img/our-services/hero-bg.jpg") center/cover no-repeat, #000;
  display: flex;
  align-items: center;
}

.os-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.65));
  backdrop-filter: blur(10px);
}

.os-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  padding: 3.4rem 0 4.2rem;
  z-index: 1;
}

.os-hero-text {
  max-width: 720px;
}

.os-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold-border);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.os-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.os-hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(245, 221, 102, 0.48);
  margin-bottom: 0.5rem;
}

.os-hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 1.3rem;
}

.os-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.os-cta-btn {
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.os-cta-btn i {
  width: 16px;
  height: 16px;
}

.os-cta-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  border-color: var(--gold-border-strong);
  box-shadow: 0 12px 30px rgba(245, 221, 102, 0.4);
}

.os-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(245, 221, 102, 0.5);
}

.os-cta-secondary {
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold-light);
  border-color: var(--gold-border-strong);
}

.os-cta-secondary:hover {
  background: rgba(245, 221, 102, 0.1);
  transform: translateY(-2px);
}

.os-cta-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-border-strong);
}

.os-cta-outline:hover {
  background: rgba(245, 221, 102, 0.08);
  transform: translateY(-2px);
}

.os-hero-meta {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Right column card with image size tips */
.os-hero-right {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.os-hero-card {
  width: 100%;
  max-width: 360px;
  padding: 1.4rem 1.3rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--gold-border);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.85);
}

.os-hero-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.os-hero-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.6rem;
}

.os-hero-card li {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.os-hero-card li span {
  color: var(--gold-light);
}

.os-hero-card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.os-hero-card-note code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--gold-light);
}

/*************************************************************
 * PAGE SHELL / SECTIONS
 *************************************************************/
.os-page-shell {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(245, 221, 102, 0.1),
      transparent 60%
    ),
    #020617;
  color: #fff;
}

.os-section {
  padding: 3.6rem 0 3.3rem;
  position: relative;
}

.os-section + .os-section {
  border-top: 1px solid rgba(15, 23, 42, 0.8);
}

.os-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.os-section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.os-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(245, 221, 102, 0.35);
}

.os-section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/*************************************************************
 * SERVICES GRID
 *************************************************************/
.os-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
}

.os-service-card {
  background: rgba(0, 0, 0, 0.82);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  transition: 0.28s ease;
}

.os-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(245, 221, 102, 0.3);
  border-color: var(--gold-border-strong);
}

.os-service-image-wrapper {
  position: relative;
  overflow: hidden;
}

.os-service-image-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.os-service-card:hover .os-service-image-wrapper img {
  transform: scale(1.08);
}

.os-service-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid var(--gold-border-strong);
  font-size: 0.78rem;
  color: var(--gold-light);
}

.os-service-content {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.os-service-content h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
}

.os-service-content p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.os-service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.4rem;
}

.os-service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.os-service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
}

/* Inline CTA row below services */
.os-section-cta-row {
  margin-top: 2.2rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.os-section-inline-text {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.os-section-inline-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/*************************************************************
 * HOW IT WORKS STEPS
 *************************************************************/
.os-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.os-step {
  background: rgba(0, 0, 0, 0.82);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.2rem 1.1rem 1.3rem;
  position: relative;
  overflow: hidden;
}

.os-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(245, 221, 102, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.os-step:hover::before {
  opacity: 1;
}

.os-step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.os-step h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.os-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/*************************************************************
 * PACKAGES GRID
 *************************************************************/
.os-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.os-package-card {
  background: rgba(0, 0, 0, 0.82);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.3rem 1.2rem 1.3rem;
}

.os-package-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.os-package-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.os-package-card ul {
  list-style: none;
  padding-left: 0;
}

.os-package-card li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.22rem;
}

.os-package-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
}

/*************************************************************
 * WHY CHOOSE US
 *************************************************************/
.os-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.os-why-item {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.3rem 1.1rem;
}

.os-why-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(245, 221, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.os-why-icon i {
  color: var(--gold-light);
  width: 18px;
  height: 18px;
}

.os-why-item h3 {
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
}

.os-why-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/*************************************************************
 * FAQ
 *************************************************************/
.os-faq {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

.os-faq-item {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(31, 41, 55, 1);
  text-align: left;
  cursor: pointer;
  color: #fff;
  display: block;
}

.os-faq-item:last-child {
  border-bottom: none;
}

.os-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.94rem;
}

.os-faq-question i {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  transition: transform 0.25s ease;
}

.os-faq-answer {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

/* Open state */
.os-faq-item.is-open {
  background: rgba(15, 23, 42, 0.96);
}

.os-faq-item.is-open .os-faq-question i {
  transform: rotate(180deg);
}

.os-faq-item.is-open .os-faq-answer {
  max-height: 200px;
  opacity: 1;
}

/*************************************************************
 * FINAL CTA
 *************************************************************/
.os-final-cta {
  padding: 3.8rem 0 4.2rem;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(245, 221, 102, 0.18),
      transparent 65%
    ),
    #000;
}

.os-final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
}

.os-final-text h2 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.os-final-text p {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 520px;
}

.os-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/*************************************************************
 * STICKY MOBILE CTA
 *************************************************************/
.os-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 1rem 0.55rem;
  background: rgba(0, 0, 0, 0.96);
  border-top: 1px solid rgba(31, 41, 55, 1);
  display: none; /* visible only on small screens */
  justify-content: center;
  gap: 1.1rem;
  z-index: 40;
}

.os-sticky-link {
  flex: 1;
  max-width: 220px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--gold-border-strong);
  background: rgba(15, 23, 42, 0.9);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.os-sticky-link i {
  width: 16px;
  height: 16px;
}

/*************************************************************
 * RESPONSIVE BREAKPOINTS
 *************************************************************/
@media (max-width: 1024px) {
  .os-hero-inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
  }

  .os-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .os-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .os-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .os-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .os-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3rem;
    padding-bottom: 3.4rem;
  }

  .os-hero-right {
    order: -1;
  }

  .os-hero-card {
    margin-bottom: 0.7rem;
  }

  .os-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .os-section-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .os-final-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .os-container {
    padding: 0 1rem;
  }

  .os-hero-title {
    font-size: 2rem;
  }

  .os-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .os-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .os-packages-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .os-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .os-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .os-final-buttons {
    width: 100%;
  }

  .os-final-buttons .os-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .os-sticky-cta {
    display: flex;
  }

  .os-section {
    padding: 3rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .os-hero-title {
    font-size: 1.85rem;
  }

  .os-hero-subtitle {
    font-size: 0.9rem;
  }
}
