/* ==========================================================================
   GoldTrust DWC — Premium Dubai Corporate Theme
   Design language: dark navy + gold, glassmorphism, large luxury typography
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Navy scale */
  --navy-950: #050810;
  --navy-900: #080c18;
  --navy-800: #0d1424;
  --navy-700: #131c33;
  --navy-600: #1b2745;
  --navy-500: #263258;

  /* Gold scale */
  --gold-300: #f4e2a8;
  --gold-400: #e9c977;
  --gold-500: #d4af37;
  --gold-600: #b8912b;
  --gold-700: #96741f;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #eef1f8;
  --muted: #9aa5c0;
  --muted-dark: #6b7592;
  --line: rgba(233, 201, 119, 0.16);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  --grad-navy: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  --grad-hero-overlay: linear-gradient(180deg, rgba(5, 8, 16, .55) 0%, rgba(5, 8, 16, .55) 40%, rgba(5, 8, 16, .92) 100%);
  --grad-radial-gold: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, .18), transparent 60%);

  /* Glass */
  --glass-bg: rgba(19, 28, 51, 0.55);
  --glass-bg-light: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(233, 201, 119, 0.14);
  --glass-blur: 16px;

  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);

  /* Motion */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --dur: .5s;

  /* Layout */
  --header-h: 92px;
  --radius-lg: 10px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

/* -------------------------------------------------------------------------
   2. Base
   ------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-950);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-950);
}

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

::-webkit-scrollbar-track {
  background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

.text-gold {
  color: var(--gold-500) !important;
}

.bg-navy {
  background: var(--navy-900);
}

/* Fluid display sizes */
.display-huge {
  font-size: clamp(2.6rem, 6vw, 3rem);
  letter-spacing: -.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.display-xl {
  font-size: clamp(2.2rem, 4.2vw, 2rem);
  letter-spacing: -.01em;
}

.display-lg {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad-gold);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 5rem) 0;
}

.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--navy-900);
}

.divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
  opacity: .7;
}

/* Container variant with extra width for hero content */
.container-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -------------------------------------------------------------------------
   3. Buttons
   ------------------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--navy-950) !important;
  border: none;
  font-weight: 500;
  padding: .57rem 2.1rem;
  border-radius: 100px;
  letter-spacing: .02em;
  box-shadow: var(--shadow-gold);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  font-size: 17px;
}

.hero-swiper .btn-gold {
  display: flex;
  align-items: center;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px -8px rgba(212, 175, 55, .55);
  color: var(--navy-950);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(233, 201, 119, .45);
  font-weight: 500;
  padding: .55rem 2.1rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: all .35s var(--ease);
}

.btn-outline-gold:hover {
  background: rgba(233, 201, 119, .1);
  border-color: var(--gold-400);
  transform: translateY(-3px);
  color: var(--gold-300) !important;
}

.btn-sm-pill {
  padding: .6rem 1.4rem;
  font-size: .9rem;
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim .6s linear;
  background: rgba(255, 255, 255, .5);
  pointer-events: none;
}

.btn-outline-gold .ripple {
  background: rgba(233, 201, 119, .35);
}

@keyframes rippleAnim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-400);
  font-weight: 600;
  font-size: .92rem;
}

.link-arrow i {
  transition: transform .3s var(--ease);
}

.link-arrow:hover i {
  transform: translateX(6px);
}

.link-arrow:hover {
  color: var(--gold-300);
}

/* -------------------------------------------------------------------------
   4. Glassmorphism Card
   ------------------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(233, 201, 119, .35), transparent 40%, transparent 60%, rgba(233, 201, 119, .15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hover-lift {
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.card-glow {
  position: relative;
}

.card-glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--grad-radial-gold);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1;
  filter: blur(18px);
}

.card-glow:hover::after {
  opacity: 1;
}

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header .container-wide {
    gap: 1.5rem;
/*     padding-top: 20px; */
}

.site-header .navbar-brand {
  flex-shrink: 0;
   width: 300px;
    height: 110px;
}

.navbar-brand img{
    max-width: 100%;
    display: block;
/*     width: 100%; */
    height: 100%;
}

.site-header .main-nav {
  flex-shrink: 0;
}

.site-header .header-cta {
  flex-shrink: 0;
}

.site-header.is-scrolled {
  height: 120px;
  background: rgba(5, 8, 16, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .6);
}

.navbar-brand {
   display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .7rem;
    width: 100%;
    height: 100px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: .02em;
}

.brand-text span {
  color: var(--gold-400);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--off-white);
  position: relative;
  padding: .3rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width .35s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--gold-300);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--gold-400);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.container-header {
  width: 100%;
  justify-content: space-between;
}

/* -------------------------------------------------------------------------
   6. Hero Slider
   ------------------------------------------------------------------------- */
.hero-swiper {
  height: 100vh;
  min-height: 640px;
  width: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 7s ease-out;
}

.swiper-slide-active .hero-bg {
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-hero-overlay);
  z-index: 1;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem 1.1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-light);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.6rem;
  display: none;
}

.hero-kicker span.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 12px var(--gold-500);
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4rem);
  color: var(--white);
  max-width: 900px;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.hero-title .accent {
  color: var(--gold-400);
  font-style: italic;
}

.hero-sub {
  color: var(--off-white);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 620px;
  margin-top: 1.4rem;
  opacity: .92;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-scroll-cue .line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  animation: scrollLine 2.2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-swiper .swiper-pagination {
  bottom: 2.6rem !important;
  right: 4vw;
  left: auto;
  width: auto;
  display: flex;
  gap: .6rem;
  z-index: 3;
}

.hero-swiper .swiper-pagination-bullet {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .35);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--grad-gold);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: var(--gold-400);
  width: 52px;
  height: 52px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg-light);
  backdrop-filter: blur(8px);
  top: auto;
  bottom: 2.6rem;
}

.hero-swiper .swiper-button-prev {
  left: auto;
  right: 8.6rem;
}

.hero-swiper .swiper-button-next {
  right: 4rem;
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 1.1rem;
}

@media (max-width: 991px) {

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }

  .hero-swiper .swiper-pagination {
    right: 50%;
    transform: translateX(50%);
    bottom: 1.6rem !important;
  }
}

/* -------------------------------------------------------------------------
   7. Page/Inner Hero (non-slider header banner)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 6rem) 0 6rem;
  background: var(--navy-950);
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  /* margin-top: -40px; */
  transform: translate(0%, 0%) translate3d(0px, 0px, 0px) !important;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 16, .5), var(--navy-950) 90%);
}

.page-hero .content {
  position: relative;
  z-index: 2;
}

.breadcrumb-lux {
  display: flex;
  gap: .6rem;
  align-items: center;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 1.2rem;
}

.breadcrumb-lux a {
  color: var(--gold-400);
}

.breadcrumb-lux .sep {
  color: var(--muted-dark);
}


/* -------------------------------------------------------------------------
   9. About Section
   ------------------------------------------------------------------------- */
.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
}

.about-media-frame {
  position: absolute;
  inset: -18px auto auto -18px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-stat-float {
  position: absolute;
  bottom: -1.6rem;
  right: -1.2rem;
  padding: 1.4rem 1.8rem;
  z-index: 3;
}

.about-stat-float .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-400);
}

.about-stat-float .lbl {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .06em;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 1rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: var(--off-white);
  color: var(--off-white);
  line-height: 21px;
  font-weight: 400;
}

.about-points li i {
  color: var(--gold-500);
  margin-top: .3rem;
}

/* -------------------------------------------------------------------------
   10. Services
   ------------------------------------------------------------------------- */
.service-card {
  padding: 2.4rem 2rem;
  height: 100%;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(233, 201, 119, .18), rgba(233, 201, 119, .02));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: 1.6rem;
  transition: transform .4s var(--ease), background .4s;
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--grad-gold);
  color: var(--navy-950);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
}

.service-card p {
  color: var(--muted);
  font-size: .95rem;
}

.service-card .link-arrow {
  margin-top: 1.4rem;
}

.service-card-number {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(233, 201, 119, .14);
}

/* -------------------------------------------------------------------------
   11. Process Steps
   ------------------------------------------------------------------------- */
.process-track {
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
  display: none;
}

@media (min-width: 992px) {
  .process-track::before {
    display: block;
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 0;
}

.process-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-400);
  background: var(--navy-900);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.process-step:hover .process-num {
  background: var(--grad-gold);
  color: var(--navy-950);
  transform: scale(1.05);
}

.process-num {
  transition: all .4s var(--ease);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.process-step p {
  color: var(--muted);
  font-size: .9rem;
  max-width: 260px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   12. Why Choose Dubai
   ------------------------------------------------------------------------- */
.why-card {
  padding: 1.9rem;
  height: 100%;
}

.why-card i {
  font-size: 1.6rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: inline-block;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.why-card p {
  color: var(--muted);
  font-size: .9rem;
}

/* -------------------------------------------------------------------------
   13. Industries
   ------------------------------------------------------------------------- */
.industry-card {
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
}

.industry-card i {
  font-size: 2rem;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.industry-card h5 {
  font-size: 1rem;
}

/* -------------------------------------------------------------------------
   14. Counters
   ------------------------------------------------------------------------- */
.counters-section {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
}

.counters-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-radial-gold);
}

.counter-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3rem);
  color: var(--gold-400);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .2rem;
}

.counter-label {
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .5rem;
}

/* -------------------------------------------------------------------------
   15. Testimonials
   ------------------------------------------------------------------------- */
.testimonial-card {
  padding: 2.4rem;
  height: 100%;
}

.testimonial-card .quote-icon {
  color: var(--gold-500);
  font-size: 1.8rem;
  opacity: .6;
  margin-bottom: 1rem;
}

.testimonial-card p.quote {
  color: var(--off-white);
  font-size: 1.02rem;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.testimonial-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
}

.testimonial-person .name {
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}

.testimonial-person .role {
  color: var(--muted);
  font-size: .82rem;
}

.stars {
  color: var(--gold-500);
  font-size: .8rem;
  margin-bottom: 1rem;
}

.testimonials-swiper .swiper-pagination {
  position: static;
  margin-top: 2.4rem;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--muted-dark);
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold-500);
}

/* -------------------------------------------------------------------------
   16. Team
   ------------------------------------------------------------------------- */
.team-card {
  overflow: hidden;
  text-align: center;
}

.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-photo img {
  transition: transform .6s var(--ease);
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
}

.team-card:hover .team-photo img {
  transform: scale(1.08);
}

.team-social {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  gap: .7rem;
  padding: 1.2rem;
  background: linear-gradient(0deg, rgba(5, 8, 16, .9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s var(--ease);
}

.team-card:hover .team-social {
  transform: translateY(0);
  opacity: 1;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: .85rem;
}

.team-social a:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
}

.team-info {
  padding: 1.6rem;
}

.team-info h4 {
  font-size: 1.1rem;
  margin-bottom: .3rem;
}

.team-info .role {
  color: var(--gold-400);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   17. Blog
   ------------------------------------------------------------------------- */
.blog-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 220px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--grad-gold);
  color: var(--navy-950);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
}

.blog-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1.2rem;
  color: var(--muted-dark);
  font-size: .8rem;
  margin-bottom: .9rem;
}

.blog-meta i {
  color: var(--gold-500);
  margin-right: .3rem;
}

.blog-body h3 {
  font-size: 1.2rem;
  margin-bottom: .9rem;
}

.blog-body .link-arrow {
  margin-top: auto;
  padding-top: 1.4rem;
}

/* -------------------------------------------------------------------------
   18. FAQ Accordion
   ------------------------------------------------------------------------- */
.faq-accordion .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem 1.8rem;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-400);
}

.faq-accordion .accordion-button::after {
  filter: invert(70%) sepia(60%) saturate(400%) hue-rotate(1deg) brightness(1.1);
  transition: transform .35s var(--ease);
}

.faq-accordion .accordion-body {
  padding: 0 1.8rem 1.7rem;
  color: var(--muted);
}

.faq-accordion .accordion-collapse {
  transition: all .4s var(--ease);
}

/* -------------------------------------------------------------------------
   19. Contact CTA
   ------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--grad-navy);
  border: 1px solid var(--glass-border);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-radial-gold);
}

.cta-banner .content {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------
   20. Contact Page
   ------------------------------------------------------------------------- */
.contact-info-card {
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  height: 100%;
}

.contact-info-card i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(233, 201, 119, .18), rgba(233, 201, 119, .02));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.2rem;
}

.contact-info-card h5 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--muted);
  font-size: .92rem;
}

.form-control-lux {
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: .95rem 1.2rem;
  font-size: .95rem;
}

.form-control-lux:focus {
  background: rgba(233, 201, 119, .05);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
  color: var(--white);
}

.form-control-lux::placeholder {
  color: var(--muted-dark);
}

label.form-label-lux {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  filter: grayscale(1) invert(92%) contrast(85%);
  height: 100%;
  min-height: 320px;
}

/* -------------------------------------------------------------------------
   21. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding: 5rem 0 0;
}

.footer-about p {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 1.2rem;
}

.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.6rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
}

.footer-social a:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
  border-color: transparent;
}

.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
  font-family: var(--font-display);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .92rem;
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  gap: .8rem;
  color: var(--muted);
  font-size: .9rem;
}

.footer-contact i {
  color: var(--gold-500);
  margin-top: .2rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 3.5rem;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted-dark);
  font-size: .85rem;
}

.footer-bottom a {
  color: var(--muted-dark);
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

.newsletter-mini {
  display: flex;
  margin-top: 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  overflow: hidden;
  background: var(--glass-bg-light);
}

.newsletter-mini input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: .7rem 1.2rem;
  color: var(--white);
  font-size: .88rem;
}

.newsletter-mini input:focus {
  outline: none;
}

.newsletter-mini button {
  background: var(--grad-gold);
  border: 0;
  padding: 0 1.3rem;
  color: var(--navy-950);
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   22. Floating WhatsApp Button
   ------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, .6);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulseRing 2.2s infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .4s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   23. Preloader
   ------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-400);
  letter-spacing: .1em;
  position: relative;
}

.preloader-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  border-top-color: var(--gold-500);
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -35px 0 0 -35px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* -------------------------------------------------------------------------
   24. Page Transition Overlay
   ------------------------------------------------------------------------- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy-950);
  transform: translateY(100%);
  pointer-events: none;
}

.page-transition.active {
  animation: pageIn .7s var(--ease) forwards;
  pointer-events: all;
}

@keyframes pageIn {
  0% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* -------------------------------------------------------------------------
   25. 404 Page
   ------------------------------------------------------------------------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------------------------
   26. Service Detail
   ------------------------------------------------------------------------- */
.detail-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}

.sidebar-list li:last-child a {
  border-bottom: 0;
}

.sidebar-list li a:hover,
.sidebar-list li a.active {
  color: var(--gold-400);
  background: rgba(233, 201, 119, .05);
}

.sidebar-list li a.active {
  border-left: 2px solid var(--gold-500);
  padding-left: 1.2rem;
}

.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
  display: grid;
  gap: 1rem;
}

.feature-check-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.feature-check-list li i {
  color: var(--navy-950);
  background: var(--grad-gold);
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: .15rem;
}

/* -------------------------------------------------------------------------
   27. Utilities
   ------------------------------------------------------------------------- */
.z-2 {
  z-index: 2;
}

.rounded-xl {
  border-radius: var(--radius-lg) !important;
}

.fw-500 {
  font-weight: 500;
}

.op-8 {
  opacity: .8;
}

.min-vh-70 {
  min-height: 70vh;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* -------------------------------------------------------------------------
   28. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
  :root {
    --header-h: 78px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta .btn-outline-gold {
    display: none;
  }

  .about-stat-float {
    right: 0;
    bottom: -1rem;
    padding: 1.1rem 1.4rem;
  }

  .about-stat-float .num {
    font-size: 1.8rem;
  }

  .detail-sidebar {
    position: static;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 575px) {
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 1.4rem;
    right: 1.4rem;
  }

  .back-to-top {
    display: none;
  }
}

/* Offcanvas mobile menu theming */
.offcanvas-lux {
  background: var(--navy-900);
  border-left: 1px solid var(--line);
  width: min(340px, 84vw);
}

.offcanvas-lux .nav-link-mobile {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--off-white);
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.offcanvas-lux .nav-link-mobile:hover,
.offcanvas-lux .nav-link-mobile.active {
  color: var(--gold-400);
}

.section-order {
  text-align: left;
  padding-top: 10px;
}

.section-lead1 {
  text-align: left;
}

.bg-padding {
  padding: 60px 0px !important;
}

.bg-padding ul {
  margin-bottom: 1rem;
}


@media(max-width:1000px) {

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

  .container-header {
    max-width: 100%;
  }
}

@media(max-width:700px) {
  .hero-kicker {
    margin-top: 30px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 6.4vw, 4rem);
  }

  .display-xl {
    font-size: clamp(1.5rem, 4.2vw, 2.4rem);
  }

  .section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .bg-padding {
    padding: 40px 0px 10px 0px !important;
  }

  .section-lead1 {
    text-align: left;
    font-size: 15px;
  }

  .industry-card h5 {
    font-size: 15px;
  }

  .testimonials-swiper .swiper-pagination {
    position: static;
    margin-top: 0.1rem;
  }

  .site-footer {
    padding: 3rem 0 0;
  }
}

.preloader.loaded,
.preloader-mark,
.preloader-ring {
  display: none !important;
  opacity: 0;
}

.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 6rem;
}

.bg-overlayy {
  background-color: #00000096;
  padding: 30px 40px;
  border-radius: 5px;
}

img.rounded-xl.mb-4.wp-post-image {
    width: 100%;
    height: auto;
}



/* Select Field */
.form-control-lux {
    background: #15161b;
    color: #fff;
    border: 1px solid #d4af37;
}

/* Dropdown options */
.form-control-lux option {
    background: #1b1d23;
    color: #ffffff;
    padding: 10px;
}

/* Hover (supported browsers) */
.form-control-lux option:hover,
.form-control-lux option:checked {
    background: #d4af37;
    color: #111;
}


/* Mobile */
@media (max-width: 767px) {


.main-nav .gt_container-faswxx {
    position: fixed;
    right: 20%;
}

.site-header .container-wide {
    gap: 1.5rem;
}


.site-header .container-wide {
    gap: 1.5rem;
    padding: 5px 10px !important;
}

.lang {
    position: fixed;
    left: 42% !important;
}

}