/* =========================================================
   ADYANTA TECHNOLOGIES PVT. LTD.
   Premium Corporate Theme - style.css
   From Origin to Infinity
   ========================================================= */

:root {
  --navy: #0a1735;
  --navy-700: #122352;
  --navy-900: #060e21;
  --gold: #d0933a;
  --gold-light: #d5c3a6;
  --bronze: #96440e;
  --white: #fdfdfc;
  --body: #4d5666;
  --line: rgba(10, 23, 53, 0.1);
  --grad-accent: linear-gradient(135deg, #0a1735, #d0933a);
  --grad-gold: linear-gradient(135deg, #96440e, #d0933a 45%, #d5c3a6);
  --grad-navy: linear-gradient(135deg, #060e21, #122352 60%, #0a1735);
  --shadow-sm: 0 4px 14px rgba(10, 23, 53, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 23, 53, 0.1);
  --shadow-lg: 0 30px 70px rgba(10, 23, 53, 0.16);
  --radius: 18px;
  --font-head: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --topbar-h: 42px;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-brand {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.65rem); }

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

p { margin-bottom: 1rem; }

::selection { background: var(--gold); color: #fff; }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-bronze { color: var(--bronze) !important; }
.text-body-soft { color: var(--body) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-deep { background: var(--grad-navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-soft { background-color: #f7f5f1 !important; }
.bg-grad-accent { background-image: var(--grad-accent) !important; }
.fw-600 { font-weight: 600; }
.fs-7 { font-size: .875rem; }
.fs-8 { font-size: .8rem; }
.ls-1 { letter-spacing: .12em; }
.ls-2 { letter-spacing: .22em; }

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

.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-sm { padding: clamp(44px, 5vw, 70px) 0; }

/* ---------- Eyebrow / section titles ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--grad-gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 2px;
  background: var(--grad-gold);
  display: inline-block;
}
.section-lead { font-size: 1.03rem; max-width: 720px; }
.mx-auto-720 { max-width: 720px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: .8rem 1.7rem;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, background .35s ease, color .3s ease;
}
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; box-shadow: none; }
.btn-gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 12px 28px rgba(208, 147, 58, .32);
}
.btn-gold:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 38px rgba(208, 147, 58, .42); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-3px); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-outline-light { border-color: rgba(253,253,252,.5); color: #fff; background: rgba(253,253,252,.06); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn-lg-x { padding: 1rem 2.2rem; font-size: .95rem; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb959; color: #fff; }

/* ---------- Glass ---------- */
.glass {
  background: rgba(253, 253, 252, .72);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: var(--shadow-md);
}
.glass-dark {
  background: rgba(10, 23, 53, .55);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(213, 195, 166, .22);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(253, 253, 252, .82);
  font-size: .8rem;
  border-bottom: 1px solid rgba(213, 195, 166, .16);
}
.topbar a { color: rgba(253, 253, 252, .82); }
.topbar a:hover { color: var(--gold); }
.topbar .divider { width: 1px; height: 16px; background: rgba(213, 195, 166, .25); }
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(213, 195, 166, .3);
  font-size: .8rem;
}
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .35s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.navbar-adyanta {
  background: rgba(253, 253, 252, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, padding .4s ease;
  padding-block: .55rem;
}
.header-transparent .navbar-adyanta {
  background: rgba(10, 23, 53, .28);
  border-bottom-color: rgba(213, 195, 166, .18);
}
.header-transparent .navbar-adyanta .nav-link,
.header-transparent .navbar-adyanta .brand-name,
.header-transparent .navbar-adyanta .navbar-toggler { color: #fff; }
.header-transparent .navbar-adyanta .brand-sub { color: var(--gold-light); }
.site-header.is-stuck .navbar-adyanta {
  background: rgba(253, 253, 252, .96);
  border-bottom-color: var(--line);
}
.site-header.is-stuck .navbar-adyanta .nav-link,
.site-header.is-stuck .navbar-adyanta .brand-name { color: var(--navy); }
.site-header.is-stuck .navbar-adyanta .brand-sub { color: var(--gold); }

.navbar-brand { display: flex; align-items: center; gap: .7rem; }
.navbar-brand img { height: 52px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  color: var(--navy);
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  margin-top: 4px;
}
.navbar-adyanta .nav-link {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  padding: .5rem .72rem !important;
  position: relative;
}
.navbar-adyanta .nav-link::after {
  content: "";
  position: absolute;
  left: .72rem; right: .72rem; bottom: .18rem;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.navbar-adyanta .nav-link:hover::after,
.navbar-adyanta .nav-link.active::after { transform: scaleX(1); }
.navbar-adyanta .nav-link.active { color: var(--gold); }
.navbar-toggler { border: 0; font-size: 1.5rem; color: var(--navy); }
.navbar-toggler:focus { box-shadow: none; }
.dropdown-menu {
  border: 0;
  border-radius: 14px;
  padding: .5rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
}
.dropdown-item {
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 600;
  padding: .5rem .8rem;
}
.dropdown-item:hover { background: #f7f5f1; color: var(--gold); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: .7rem;
    border-radius: 16px;
    padding: .8rem;
    box-shadow: var(--shadow-md);
  }
  .header-transparent .navbar-adyanta .navbar-collapse .nav-link { color: var(--navy); }
  .navbar-brand img { height: 42px; }
  .brand-name { font-size: 1.12rem; }
}

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--nav-offset, 0px));
}
.hero-slider { position: relative; }
.hero-slide {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 14, 33, .93) 0%, rgba(10, 23, 53, .78) 45%, rgba(10, 23, 53, .35) 100%);
}
.hero-slide .container { position: relative; z-index: 2; padding-block: 120px 90px; }
.hero-slide h1 { color: #fff; }
.hero-slide h1 span { display: block; }
.hero-slide p.lead { color: rgba(253, 253, 252, .84); max-width: 620px; font-size: 1.05rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(213, 195, 166, .1);
  border: 1px solid rgba(213, 195, 166, .3);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.2rem;
  padding-top: 2.2rem; margin-top: 2.2rem;
  border-top: 1px solid rgba(213, 195, 166, .22);
}
.hero-stats .num { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-stats .lbl { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(253,253,252,.7); }
#particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.carousel-indicators { margin-bottom: 2.2rem; z-index: 3; }
.carousel-indicators [data-bs-target] {
  width: 34px; height: 3px; border: 0; border-radius: 3px;
  background: rgba(253,253,252,.35); opacity: 1;
}
.carousel-indicators .active { background: var(--gold); }
.carousel-control-prev, .carousel-control-next { width: 6%; z-index: 3; opacity: .55; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; }
.typing { color: var(--gold); }
.typing::after { content: "|"; margin-left: 2px; animation: caret 1s step-end infinite; color: var(--gold-light); }
@keyframes caret { 50% { opacity: 0; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--grad-navy);
  color: #fff;
  padding: clamp(90px, 12vw, 150px) 0 clamp(60px, 8vw, 90px);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../images/cta-bg.jpg");
  background-size: cover; background-position: center;
  opacity: .3;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(253,253,252,.8); max-width: 680px; }
.breadcrumb { --bs-breadcrumb-divider-color: var(--gold-light); margin: 0; }
.breadcrumb-item a { color: var(--gold-light); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb-item.active { color: rgba(253,253,252,.75); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold); }

/* ---------- Cards ---------- */
.card-premium {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  height: 100%;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.7,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.card-premium::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.card-premium:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(208,147,58,.35); }
.card-premium:hover::before { transform: scaleX(1); }
.card-premium h3, .card-premium h4 { font-size: 1.2rem; margin-bottom: .55rem; }
.card-premium p { font-size: .93rem; margin-bottom: 0; }

.icon-badge {
  width: 62px; height: 62px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(208,147,58,.14), rgba(10,23,53,.07));
  border: 1px solid rgba(208,147,58,.22);
  margin-bottom: 1.1rem;
  transition: background .4s ease, color .4s ease, transform .4s ease;
}
.card-premium:hover .icon-badge { background: var(--grad-gold); color: #fff; transform: rotate(-6deg); }
.icon-badge-sm { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 12px; margin-bottom: 0; }

.mini-card {
  display: flex; align-items: center; gap: .8rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: .85rem 1rem;
  font-weight: 600; font-size: .9rem; color: var(--navy);
  transition: all .35s ease;
  height: 100%;
}
.mini-card i { color: var(--gold); font-size: 1.15rem; }
.mini-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-4px); color: var(--navy); }

/* ---------- Feature/about visuals ---------- */
.frame-gold {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.frame-gold img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-offset { position: relative; }
.frame-offset::before {
  content: "";
  position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold);
  border-radius: 22px;
  z-index: -1;
}
.stat-float {
  position: absolute; bottom: 22px; left: 22px;
  padding: 1.1rem 1.4rem; border-radius: 16px;
  background: rgba(10,23,53,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(213,195,166,.28);
  color: #fff;
}
.stat-float .num { font-family: var(--font-head); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.stat-float .lbl { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(253,253,252,.75); }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; font-size: .95rem; }
.check-list li i { position: absolute; left: 0; top: .35rem; color: var(--gold); }

/* ---------- Counters ---------- */
.counter-band { background: var(--grad-navy); position: relative; overflow: hidden; }
.counter-band::after {
  content: ""; position: absolute; inset: 0;
  background: url("../images/cta-bg.jpg") center/cover; opacity: .25;
}
.counter-band .container { position: relative; z-index: 2; }
.counter-item { text-align: center; color: #fff; padding: 1rem .5rem; }
.counter-item i { font-size: 1.7rem; color: var(--gold); }
.counter-item .counter { font-family: var(--font-head); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 700; color: #fff; line-height: 1.1; }
.counter-item .lbl { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }

/* ---------- Progress ---------- */
.skill-row { margin-bottom: 1.4rem; }
.skill-row .d-flex { font-size: .88rem; font-weight: 700; color: var(--navy); }
.progress { height: 8px; background: rgba(10,23,53,.08); border-radius: 99px; overflow: hidden; }
.progress-bar { background: var(--grad-gold); width: 0; transition: width 1.6s cubic-bezier(.2,.7,.3,1); }

/* ---------- Process timeline ---------- */
.process-track { position: relative; }
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.5rem 1.7rem;
  height: 100%;
  transition: all .4s ease;
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(208,147,58,.4); }
.process-step .step-no {
  position: absolute; top: -22px; left: 1.5rem;
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-accent); color: #fff;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.process-step h4 { font-size: 1.1rem; margin-top: .5rem; }
.process-step p { font-size: .9rem; margin: 0; }

.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; left: .55rem; top: .4rem; bottom: .4rem;
  width: 2px; background: linear-gradient(180deg, var(--gold), rgba(208,147,58,.12));
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -1.94rem; top: .55rem;
  width: 13px; height: 13px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold);
}
.timeline-item .yr { font-size: .76rem; font-weight: 700; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.timeline-item h4 { font-size: 1.15rem; margin: .2rem 0 .4rem; }
.timeline-item p { font-size: .93rem; margin: 0; }

/* ---------- Portfolio ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.filter-btn {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.25rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); transition: all .3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.portfolio-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--navy);
  display: block; height: 100%;
}
.portfolio-card img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.3,1), opacity .5s ease;
}
.portfolio-card:hover img { transform: scale(1.08); opacity: .55; }
.portfolio-card .pf-body {
  position: absolute; inset: auto 0 0 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(6,14,33,0), rgba(6,14,33,.94));
  color: #fff;
}
.portfolio-card .pf-cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.portfolio-card .pf-title { font-family: var(--font-head); font-size: 1.25rem; color: #fff; margin: .2rem 0 0; }
.portfolio-card .pf-go {
  position: absolute; top: 1rem; right: 1rem;
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-gold); color: #fff;
  opacity: 0; transform: translateY(-8px); transition: all .4s ease;
}
.portfolio-card:hover .pf-go { opacity: 1; transform: translateY(0); }
.hide-item { display: none !important; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; height: 100%;
}
.testimonial-card .bi-quote { font-size: 2.4rem; color: var(--gold-light); line-height: 1; }
.testimonial-card p { font-size: .96rem; font-style: italic; color: #3f4757; }
.testimonial-card .stars i { color: var(--gold); font-size: .85rem; }
.avatar-initial {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}

/* ---------- Logo strip ---------- */
.logo-chip {
  display: flex; align-items: center; justify-content: center;
  height: 88px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; font-family: var(--font-head); font-size: 1.05rem;
  color: var(--navy); letter-spacing: .1em; text-align: center; padding: .5rem;
  transition: all .35s ease;
}
.logo-chip:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-sm); }

/* ---------- Pricing ---------- */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 2.3rem 1.9rem; height: 100%; position: relative;
  transition: all .45s ease;
}
.price-card.featured {
  background: var(--grad-navy); color: rgba(253,253,252,.82);
  border-color: rgba(213,195,166,.28); box-shadow: var(--shadow-lg);
}
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card.featured .check-list li { color: rgba(253,253,252,.85); }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card .amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-card .per { font-size: .82rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.badge-featured {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--grad-gold); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}

/* ---------- Accordion / FAQ ---------- */
.accordion-premium .accordion-item {
  border: 1px solid var(--line); border-radius: 14px !important;
  margin-bottom: .8rem; overflow: hidden; background: #fff;
}
.accordion-premium .accordion-button {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: var(--navy);
  background: #fff; padding: 1.1rem 1.3rem; box-shadow: none;
}
.accordion-premium .accordion-button:not(.collapsed) { background: #f7f5f1; color: var(--gold); }
.accordion-premium .accordion-button::after {
  background-image: none; content: "\F4FE"; font-family: "bootstrap-icons";
  width: auto; height: auto; font-size: 1rem; color: var(--gold); transform: none;
}
.accordion-premium .accordion-button:not(.collapsed)::after { content: "\F2EA"; }
.accordion-premium .accordion-body { font-size: .95rem; padding-top: 0; }

/* ---------- Blog ---------- */
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%; transition: all .45s ease; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(208,147,58,.35); }
.blog-card .thumb { position: relative; overflow: hidden; }
.blog-card .thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .thumb img { transform: scale(1.07); }
.blog-card .tag {
  position: absolute; bottom: .8rem; left: .8rem;
  background: rgba(10,23,53,.85); color: var(--gold-light);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.blog-card .body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.18rem; }
.blog-meta { font-size: .78rem; color: #8b93a1; letter-spacing: .04em; }
.article-body { font-size: 1.03rem; color: #414a5a; }
.article-body h2 { margin-top: 2.2rem; font-size: 1.7rem; }
.article-body h3 { margin-top: 1.8rem; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: #f7f5f1;
  padding: 1.2rem 1.4rem; border-radius: 0 14px 14px 0;
  font-family: var(--font-head); font-size: 1.2rem; color: var(--navy);
}
.sidebar-widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.sidebar-widget h4 { font-size: 1.1rem; margin-bottom: 1rem; }
.tag-pill {
  display: inline-block; padding: .35rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); font-size: .78rem; font-weight: 600; margin: 0 .3rem .5rem 0;
}
.tag-pill:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------- Careers ---------- */
.job-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: all .4s ease;
}
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #f7f5f1; color: var(--navy);
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: 999px;
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: 12px; border: 1px solid var(--line);
  padding: .8rem 1rem; font-size: .92rem; background: #fff; color: var(--navy);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(208,147,58,.14); background: #fff;
}
.form-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: .4rem; }
.form-note { font-size: .78rem; color: #8b93a1; }
.form-alert { display: none; border-radius: 12px; font-size: .9rem; }
.form-alert.show { display: block; }
.form-panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }

/* ---------- Contact ---------- */
.contact-tile {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; height: 100%; transition: all .4s ease;
}
.contact-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(208,147,58,.35); }
.contact-tile h4 { font-size: 1.03rem; margin-bottom: .2rem; }
.contact-tile p, .contact-tile a { font-size: .92rem; margin: 0; display: block; color: var(--body); }
.contact-tile a:hover { color: var(--gold); }
.map-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 26px;
  background: var(--grad-accent); color: #fff;
  padding: clamp(2rem, 5vw, 3.4rem);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: url("../images/cta-bg.jpg") center/cover; opacity: .22;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(253,253,252,.85); margin: 0; }

/* ---------- Newsletter ---------- */
.newsletter-form .form-control { border-radius: 999px; padding-left: 1.3rem; }
.newsletter-form .btn { white-space: nowrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(253,253,252,.66); }
.site-footer .foot-brand img { height: 64px; }
.site-footer h5 {
  color: #fff; font-family: var(--font-body); font-size: .82rem;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.site-footer h5::after { content: ""; display: block; width: 32px; height: 2px; background: var(--grad-gold); margin-top: .6rem; }
.site-footer a { color: rgba(253,253,252,.66); font-size: .9rem; }
.site-footer a:hover { color: var(--gold); padding-left: 3px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { transition: all .3s ease; display: inline-block; }
.footer-bottom { border-top: 1px solid rgba(213,195,166,.16); font-size: .84rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(213,195,166,.28); color: rgba(253,253,252,.8);
}
.footer-social a:hover { background: var(--grad-gold); border-color: transparent; color: #fff; padding-left: 0; }

/* ---------- Floating widgets ---------- */
.float-stack {
  position: fixed; right: 18px; bottom: 18px; z-index: 1040;
  display: flex; flex-direction: column; gap: .6rem; align-items: flex-end;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: #fff; border: 0;
  box-shadow: var(--shadow-md); transition: transform .35s ease;
}
.fab:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.fab-wa { background: #25d366; }
.fab-call { background: var(--navy); }
.fab-top { background: var(--grad-gold); opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: auto; }
.wa-pulse { position: relative; }
.wa-pulse::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Sticky bottom CTA bar */
.sticky-cta {
  position: fixed; left: 50%; transform: translate(-50%, 130%);
  bottom: 18px; z-index: 1039;
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem .8rem .7rem 1.4rem; border-radius: 999px;
  background: rgba(10,23,53,.9); backdrop-filter: blur(14px);
  border: 1px solid rgba(213,195,166,.28); color: #fff;
  transition: transform .5s cubic-bezier(.2,.7,.3,1); max-width: calc(100vw - 120px);
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta span { font-size: .88rem; font-weight: 600; }
.sticky-cta .btn { padding: .55rem 1.2rem; font-size: .8rem; }
.sticky-cta .close-cta { background: none; border: 0; color: rgba(253,253,252,.6); font-size: 1.1rem; }
@media (max-width: 575.98px) { .sticky-cta span { display: none; } .sticky-cta { padding-left: .8rem; } }

/* Modals */
.modal-content { border: 0; border-radius: 22px; overflow: hidden; }
.modal-header { background: var(--grad-navy); color: #fff; border: 0; padding: 1.3rem 1.6rem; }
.modal-header h5 { color: #fff; font-family: var(--font-head); font-size: 1.35rem; margin: 0; }
.modal-header .btn-close { filter: invert(1) grayscale(1) brightness(2); }
.modal-body { padding: 1.6rem; }

/* ---------- AOS-style reveal ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
[data-aos="fade-left"] { transform: translateX(-34px); }
[data-aos="fade-right"] { transform: translateX(34px); }
[data-aos="zoom-in"] { transform: scale(.94); }
[data-aos].aos-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.divider-gold { width: 60px; height: 3px; background: var(--grad-gold); border-radius: 3px; }
.shadow-soft { box-shadow: var(--shadow-md) !important; }
.rounded-22 { border-radius: 22px !important; }
.object-cover { object-fit: cover; }
.ratio-4x3 > img { object-fit: cover; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; color: #fff; }
