/* ============================================================
   OREX AGENCY — style.css
   Brand system: deep navy ink + gold gradient (from logo)
   ============================================================ */

:root {
  --ink: #0a0f1c;            /* deep navy-black (hero, footer) */
  --ink-2: #101a30;          /* raised panels on dark */
  --gold: #c9a227;           /* brand gold */
  --gold-light: #e8c55b;
  --gold-deep: #a87f1b;
  --gold-grad: linear-gradient(135deg, #a87f1b 0%, #e0b64a 55%, #f4dd8d 100%);
  --heading: #141c2e;
  --text: #556070;
  --bg-light: #f7f8fb;
  --border-soft: #e7eaf1;
  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(10, 15, 28, 0.08);
  --shadow-gold: 0 10px 28px rgba(201, 162, 39, 0.35);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-text, .counter-value {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--heading);
}

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

.gold { color: var(--gold); }

.gold-gradient-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow labels */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--gold-grad);
  vertical-align: middle;
  margin-left: 10px;
  border-radius: 2px;
}
.eyebrow-dark { color: var(--gold-deep); }

/* Sections */
.section { padding: 96px 0; }
.bg-light-1 { background: var(--bg-light); }
.section-title { font-weight: 700; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.section-sub { max-width: 620px; }
.lead-text { font-size: 1.12rem; line-height: 1.8; color: var(--text); }

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold-grad);
  color: #1a1405;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold:hover, .btn-gold:focus {
  color: #1a1405;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.45);
}
.btn-outline-light { border-radius: 50px; border-width: 2px; font-weight: 600; }
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-outline-gold:hover { background: var(--gold-grad); border-color: transparent; color: #1a1405; }

/* ---------- Navbar ---------- */
#mainNav {
  background: rgba(10, 15, 28, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
#mainNav.scrolled {
  background: rgba(10, 15, 28, 0.94);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.brand-logo { height: 100px; width: auto; object-fit: contain; }
.brand-logo-footer { height: 64px; }
.brand-text { color: #fff; font-weight: 700; letter-spacing: 0.04em; font-size: 1.05rem; }
#mainNav .nav-link {
  color: #cfd6e4;
  font-weight: 500;
  font-size: 0.92rem;
  margin: 0 0.15rem;
  position: relative;
}
#mainNav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem; right: 0.5rem; bottom: 4px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active { color: #fff; }
#mainNav .nav-link:hover::after, #mainNav .nav-link.active::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 90px;
  background:
    radial-gradient(1000px 500px at 85% 10%, rgba(201, 162, 39, 0.14), transparent 60%),
    radial-gradient(700px 420px at 5% 90%, rgba(56, 80, 138, 0.25), transparent 60%),
    var(--ink);
  color: #d7deec;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-title {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero-sub { font-size: 1.08rem; line-height: 1.85; color: #aeb9cf; max-width: 560px; margin-top: 1.2rem; }
.hero .stars { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 2px; }
.hero-trust small { color: #8fa0c4; }
.hero-visual { max-width: 560px; }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,0.45)); }

/* gentle float on hero chips */
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-a { animation: floatY 5s ease-in-out infinite; }
.float-b { animation: floatY 6s ease-in-out 0.8s infinite; }

/* ---------- Services ---------- */
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(201,162,39,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,162,39,0.14), rgba(201,162,39,0.05));
  color: var(--gold-deep);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--gold-grad); color: #1a1405; }
.service-card h3 { font-weight: 700; }
.service-card p { font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Counters (Why Choose Us) ---------- */
.counters-section {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(201, 162, 39, 0.12), transparent 65%),
    var(--ink);
}
.counter-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.2rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}
.counter-box:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.5); }
.counter-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.counter-label { color: #aeb9cf; margin: 0.4rem 0 0; font-size: 0.95rem; }

/* ---------- Process timeline ---------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  opacity: 0.5;
}
.timeline-item { position: relative; width: 50%; padding: 0 2.4rem 2.6rem; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
  position: absolute;
  top: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1a1405;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.15);
  z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -20px; }
.timeline-item:nth-child(even) .timeline-dot { left: -20px; }
.timeline-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.timeline-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.4); }
.timeline-card h3 { font-weight: 700; margin-bottom: 0.35rem; }
.timeline-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Portfolio ---------- */
.portfolio-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.portfolio-thumb {
  height: 180px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.6rem;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }
.portfolio-card:hover .portfolio-thumb i { transform: scale(1.15) rotate(-4deg); }
.portfolio-thumb i { transition: transform 0.35s ease; }
.thumb-1 { background: linear-gradient(135deg, #1b2a4a, #32548f); }
.thumb-2 { background: linear-gradient(135deg, #3b2f13, #a87f1b); }
.thumb-3 { background: linear-gradient(135deg, #40222a, #8c4a57); }
.thumb-4 { background: linear-gradient(135deg, #262d22, #5d6b46); }
.thumb-5 { background: linear-gradient(135deg, #16333a, #3d7d8a); }
.thumb-6 { background: linear-gradient(135deg, #241f3d, #5a4d99); }
.portfolio-body { padding: 1.3rem 1.4rem 1.5rem; }
.portfolio-body p { font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial-swiper { padding-bottom: 3rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  height: 100%;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-card blockquote { font-size: 0.98rem; line-height: 1.75; color: var(--text); }
.testimonial-card figcaption strong { display: block; color: var(--heading); font-family: "Sora", sans-serif; }
.testimonial-card figcaption span { font-size: 0.85rem; color: #94a0b4; }
.swiper-pagination-bullet { background: #b9c1d1; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); width: 22px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
  background: #fff;
}
.faq-accordion .accordion-button {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--heading);
  font-size: 1rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent);
}
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25); }
.faq-accordion .accordion-button::after { filter: hue-rotate(180deg); }
.faq-accordion .accordion-body { color: var(--text); font-size: 0.95rem; line-height: 1.75; }

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(900px 420px at 50% 120%, rgba(201, 162, 39, 0.22), transparent 65%),
    var(--ink);
  color: #d7deec;
  overflow: hidden;
}
.cta-title { color: #fff; font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-sub { color: #aeb9cf; font-size: 1.08rem; max-width: 560px; margin: 0.8rem auto 0; }

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--ink);
  color: #d7deec;
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card p { color: #aeb9cf; }
.contact-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.ci-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-light);
  font-size: 1.05rem;
}
.contact-list small { display: block; color: #8fa0c4; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-list a, .contact-list span { color: #fff; text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--gold-light); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
}
.contact-form .form-label { font-weight: 600; color: var(--heading); font-size: 0.88rem; }
.contact-form .form-control, .contact-form .form-select {
  border-radius: 10px;
  border-color: var(--border-soft);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
.form-note { font-size: 0.9rem; color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #aeb9cf;
  padding: 70px 0 0;
}
.footer-brand { text-decoration: none; }
.footer-about { font-size: 0.94rem; line-height: 1.75; max-width: 320px; }
.footer-heading {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: #aeb9cf;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.text-muted-2 { color: #8fa0c4; font-size: 0.92rem; }
.social-icons { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-icons a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #d7deec;
  transition: all 0.25s ease;
}
.social-icons a:hover { background: var(--gold-grad); color: #1a1405; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding: 1.4rem 0;
  font-size: 0.88rem;
}
.footer-legal a { color: #aeb9cf; text-decoration: none; margin: 0 0.5rem; }
.footer-legal a:hover { color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s ease-out infinite;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes waPulse {
  0%   { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 120px; text-align: center; }
  .hero-sub, .section-sub { margin-left: auto; margin-right: auto; }
  .hero .d-flex, .hero-trust { justify-content: center; }
  #mainNav .navbar-collapse {
    background: rgba(10, 15, 28, 0.97);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-top: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 2.2rem 3.6rem; }
  .timeline-item .timeline-dot { left: 0 !important; right: auto !important; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; right: 16px; bottom: 16px; }
}

/* ---------- Accessibility: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   MULTI-PAGE SITE ADDITIONS
   New components only — everything above is reused unchanged.
   ============================================================ */

/* Services dropdown */
.services-dropdown {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.6rem;
  min-width: 260px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}
.services-dropdown .dropdown-item {
  color: #cfd6e4;
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.services-dropdown .dropdown-item:hover, .services-dropdown .dropdown-item:focus {
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold-light);
}
.services-dropdown .dropdown-divider { border-color: rgba(255,255,255,0.1); margin: 0.4rem 0; }
.dropdown-view-all { color: var(--gold-light) !important; font-weight: 600; }
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu { display: block; margin-top: 0; }
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--ink);
  padding: 0 0 18px;
}
.breadcrumb-bar .breadcrumb-item, .breadcrumb-bar .breadcrumb-item a {
  color: #8fa0c4;
  font-size: 0.86rem;
  text-decoration: none;
}
.breadcrumb-bar .breadcrumb-item a:hover { color: var(--gold-light); }
.breadcrumb-bar .breadcrumb-item.active { color: var(--gold-light); }
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: #4a5a80; }

/* Page hero (interior pages — shorter than homepage hero) */
.page-hero {
  background:
    radial-gradient(900px 460px at 85% 10%, rgba(201, 162, 39, 0.14), transparent 60%),
    var(--ink);
  color: #d7deec;
  padding: 150px 0 70px;
}
@media (max-width: 767.98px) {
  .page-hero { padding-top: 130px; }
}
.page-hero-title { color: #fff; font-weight: 800; font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero-sub { color: #aeb9cf; font-size: 1.05rem; max-width: 680px; margin-top: 0.8rem; }

/* Value / mission / vision cards */
.value-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.value-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,162,39,0.14), rgba(201,162,39,0.05));
  color: var(--gold-deep);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Team cards */
.team-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-avatar {
  height: 130px;
  display: grid; place-items: center;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, #1b2a4a, #32548f);
}
.team-body { padding: 1.4rem 1rem 1.6rem; }
.team-body h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.15rem; }
.team-role { color: var(--gold-deep); font-size: 0.85rem; font-weight: 600; }

/* Chips (technologies / industries) */
.chip-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  color: var(--heading);
  font-size: 0.85rem;
  font-weight: 500;
}
.chip-dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: #d7deec; }

/* Service detail feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i { color: var(--gold-deep); margin-top: 0.2rem; }

/* Related services / cross-links */
.related-service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: var(--heading);
  transition: all 0.25s ease;
  height: 100%;
}
.related-service-card:hover { border-color: rgba(201,162,39,0.5); transform: translateY(-4px); color: var(--heading); box-shadow: var(--shadow-soft); }
.related-service-card i { color: var(--gold-deep); font-size: 1.3rem; margin-bottom: 0.6rem; display: block; }
.related-service-card span { font-weight: 600; font-size: 0.92rem; }

/* Services hub grid (services.html) — reuses .service-card, adds link wrapper */
a.service-card-link { text-decoration: none; display: block; height: 100%; }
a.service-card-link .service-card { cursor: pointer; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold-deep); font-size: 0.85rem; font-weight: 600; margin-top: 0.8rem; }

/* Portfolio filters */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.filter-btn {
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--text);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.active { background: var(--gold-grad); border-color: transparent; color: #1a1405; }

/* Portfolio detail */
.detail-meta-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.detail-meta-card dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #94a0b4; margin-top: 1rem; }
.detail-meta-card dt:first-child { margin-top: 0; }
.detail-meta-card dd { font-weight: 600; color: var(--heading); margin-bottom: 0; }
.result-stat { text-align: center; padding: 1.4rem 1rem; background: var(--bg-light); border-radius: 14px; }
.result-stat .num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--gold-deep); }
.result-stat .label { font-size: 0.85rem; color: var(--text); }
.gallery-thumb {
  height: 220px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 2.2rem;
}

/* Blog listing */
.blog-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.blog-thumb { height: 190px; display: grid; place-items: center; font-size: 2.2rem; color: rgba(255,255,255,0.9); }
.blog-thumb-1 { background: linear-gradient(135deg, #1b2a4a, #32548f); }
.blog-thumb-2 { background: linear-gradient(135deg, #3b2f13, #a87f1b); }
.blog-thumb-3 { background: linear-gradient(135deg, #40222a, #8c4a57); }
.blog-thumb-4 { background: linear-gradient(135deg, #16333a, #3d7d8a); }
.blog-body { padding: 1.4rem 1.4rem 1.6rem; }
.blog-cat { color: var(--gold-deep); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-body h3 { font-size: 1.08rem; font-weight: 700; margin: 0.4rem 0 0.5rem; line-height: 1.4; }
.blog-body h3 a { color: var(--heading); text-decoration: none; }
.blog-body h3 a:hover { color: var(--gold-deep); }
.blog-meta { font-size: 0.8rem; color: #94a0b4; display: flex; gap: 1rem; margin-top: 0.9rem; }
.blog-featured {
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  color: #d7deec;
}
.blog-featured .blog-thumb { height: 320px; font-size: 3rem; }
.blog-featured-body { padding: 2rem; }
.blog-featured-body h2 { color: #fff; font-size: 1.5rem; }
.blog-featured-body p { color: #aeb9cf; }

/* Blog sidebar */
.blog-sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.blog-sidebar-card + .blog-sidebar-card { margin-top: 1.5rem; }
.blog-sidebar-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.category-list, .popular-post-list { list-style: none; padding: 0; margin: 0; }
.category-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--border-soft); font-size: 0.9rem; }
.category-list li:last-child { border-bottom: none; }
.category-list a { color: var(--text); text-decoration: none; }
.category-list a:hover { color: var(--gold-deep); }
.category-list .count { color: #94a0b4; }
.popular-post-list li { display: flex; gap: 0.8rem; padding: 0.7rem 0; border-bottom: 1px dashed var(--border-soft); }
.popular-post-list li:last-child { border-bottom: none; }
.popular-thumb { width: 56px; height: 56px; border-radius: 10px; flex: 0 0 56px; display: grid; place-items: center; color: #fff; font-size: 1.1rem; }
.popular-post-list a { color: var(--heading); text-decoration: none; font-size: 0.86rem; font-weight: 600; line-height: 1.4; }
.popular-post-list a:hover { color: var(--gold-deep); }
.search-box { position: relative; }
.search-box input { padding-right: 2.6rem; }
.search-box button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); border: none; background: none; color: var(--gold-deep); }

/* Blog pagination */
.blog-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.blog-pagination a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.blog-pagination a.active, .blog-pagination a:hover { background: var(--gold-grad); border-color: transparent; color: #1a1405; }

/* Blog detail article */
.article-featured-img {
  height: 320px;
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 3rem;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 0.88rem; color: #94a0b4; margin: 1rem 0 1.6rem; }
.article-meta span { display: flex; align-items: center; gap: 0.4rem; }
.article-body h2 { font-size: 1.4rem; margin-top: 2rem; }
.article-body p { font-size: 1.02rem; line-height: 1.9; color: var(--text); }
.article-body ul { padding-left: 1.2rem; }
.article-body ul li { margin-bottom: 0.5rem; font-size: 1rem; }
.toc-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 2rem;
}
.toc-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.7rem; }
.toc-card ol { padding-left: 1.1rem; margin: 0; }
.toc-card a { color: var(--text); text-decoration: none; font-size: 0.92rem; }
.toc-card a:hover { color: var(--gold-deep); }
.author-box {
  display: flex; gap: 1.2rem; align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.author-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: #1a1405;
  font-size: 1.4rem;
  flex: 0 0 64px;
}
.author-box h5 { margin-bottom: 0.2rem; font-size: 0.98rem; }
.author-box p { margin: 0; font-size: 0.88rem; color: var(--text); }

/* Contact page extras */
.info-strip-item { display: flex; gap: 1rem; align-items: flex-start; }
.map-placeholder {
  height: 320px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #eef0f5, #eef0f5 10px, #e6e9f0 10px, #e6e9f0 20px);
  display: grid; place-items: center;
  color: #94a0b4;
  font-size: 1rem;
  text-align: center;
  border: 1px solid var(--border-soft);
}
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px dashed rgba(255,255,255,0.12); font-size: 0.92rem; }
.hours-list li:last-child { border-bottom: none; }

/* FAQ page categories */
.faq-cat-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.faq-cat-tabs .filter-btn { cursor: pointer; }

/* Legal pages */
.legal-content h2 { font-size: 1.25rem; margin-top: 2rem; }
.legal-content p, .legal-content li { color: var(--text); line-height: 1.85; }
.legal-updated { color: #94a0b4; font-size: 0.9rem; }

/* 404 page */
.error-page {
  min-height: 70vh;
  display: flex; align-items: center;
  background:
    radial-gradient(900px 460px at 50% 30%, rgba(201, 162, 39, 0.14), transparent 60%),
    var(--ink);
  color: #d7deec;
  text-align: center;
}
.error-code {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 9rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}

/* Newsletter (footer) */
.footer-newsletter .form-control { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: #fff; }
.footer-newsletter .form-control::placeholder { color: #8fa0c4; }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,0.09); border-color: var(--gold); box-shadow: none; }

@media (max-width: 767.98px) {
  .author-box { flex-direction: column; text-align: center; }
}
