/* =====================================================================
   Hayat Alkanz Hospitality Services LLC — Core Styles
   Premium UAE corporate hospitality look. All colours are CSS variables
   so the brand palette can be swapped in seconds.
   ===================================================================== */

:root {
    /* Brand palette — Hayat Alkanz (royal blue + gold, sampled from logo) */
    --primary:    #0E3A72;   /* royal blue  */
    --primary-2:  #15529B;   /* mid blue    */
    --primary-3:  #1E78C0;   /* bright blue (logo highlight) */
    --secondary:  #D2960C;   /* gold        */
    --secondary-2:#EAB945;   /* light gold  */
    --secondary-3:#F5D98A;
    --dark:       #071b38;
    --body:       #55637a;   /* body text   */
    --heading:    #0d2a52;
    --light:      #F3F7FC;   /* soft blue-grey section */
    --light-2:    #e9f0f9;
    --line:       #e2eaf3;
    --white:      #ffffff;

    --grad-navy:  linear-gradient(135deg, #0A2F5E 0%, #103971 42%, #1E78C0 100%);
    --grad-gold:  linear-gradient(135deg, #BA7B09 0%, #D2960C 48%, #EAB945 100%);
    --glow-gold:  0 10px 30px rgba(210,150,12,.38);

    --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    --radius:    18px;
    --radius-sm: 12px;
    --radius-lg: 26px;
    --shadow:    0 12px 40px rgba(14, 58, 114, .10);
    --shadow-lg: 0 30px 70px rgba(14, 58, 114, .18);
    --shadow-sm: 0 6px 20px rgba(14, 58, 114, .07);
    --transition: .35s cubic-bezier(.22,.61,.36,1);
    --container: 1240px;
}

/* ---- Base ---------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--body);
    font-size: 1rem;
    line-height: 1.75;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--heading); font-weight: 600; line-height: 1.18; letter-spacing: -.01em; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--container); }
section { position: relative; }

::selection { background: var(--secondary); color: #1a1400; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--light-2); }
::-webkit-scrollbar-thumb { background: #b9c4d4; border-radius: 8px; border: 3px solid var(--light-2); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-2); }

.py-section { padding: 110px 0; }
.pt-section { padding-top: 110px; }
.pb-section { padding-bottom: 110px; }

.bg-light-soft { background: var(--light); }
.bg-navy { background: var(--grad-navy); color: #cfdaea; }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4 { color: #fff; }

/* Decorative dotted / blob helpers */
.has-blob::before {
    content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,.10), transparent 65%);
    top: -120px; right: -120px; pointer-events: none; z-index: 0;
}

/* ---- Buttons ------------------------------------------------------- */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 50px;
    padding: .85rem 2rem;
    letter-spacing: .2px;
    transition: all var(--transition);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.btn:focus { box-shadow: none; }
/* Sheen sweep */
.btn::after {
    content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; z-index: -1;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg); transition: left .6s ease;
}
.btn:hover::after { left: 130%; }

.btn-accent { background: var(--grad-gold); color: #1a1400; border-color: transparent; box-shadow: 0 8px 22px rgba(201,162,39,.28); }
.btn-accent:hover { color: #1a1400; transform: translateY(-3px); box-shadow: var(--glow-gold); }

.btn-primary-solid { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary-solid:hover { background: var(--primary-2); border-color: var(--primary-2); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-outline-light-2 { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-outline-light-2:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-3px); }

.btn-outline-navy { background: transparent; color: var(--primary); border-color: rgba(11,37,69,.35); }
.btn-outline-navy:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.btn-lg { padding: 1.05rem 2.6rem; font-size: 1.03rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }

/* ---- Topbar -------------------------------------------------------- */
.topbar {
    display: block;
    background: linear-gradient(90deg, #081b33, #0B2545);
    color: #b9c6db;
    font-size: .85rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 991.98px) { .topbar { display: none; } }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .3rem 1rem; }
.topbar a { color: #d3ddec; margin-right: 1.7rem; display: inline-flex; align-items: center; }
.topbar a:hover { color: var(--secondary-2); }
.topbar i { color: var(--secondary); margin-right: .45rem; }
.topbar-right { display: inline-flex; align-items: center; gap: 1.2rem; }
.topbar-tag { color: #d3ddec; display: inline-flex; align-items: center; }
.topbar-tag i { color: var(--secondary); margin-right: .45rem; }

/* Top-bar social icons */
.topbar-social { display: inline-flex; align-items: center; gap: .55rem; }
.topbar-social a {
    margin: 0; width: 26px; height: 26px; border-radius: 50%;
    display: inline-grid; place-items: center;
    background: rgba(255,255,255,.08); color: #d3ddec; font-size: .78rem;
    transition: all var(--transition);
}
.topbar-social a i { color: inherit; margin: 0; }
.topbar-social a:hover { background: var(--grad-gold); color: var(--primary); transform: translateY(-1px); }

/* Language switcher (top bar) */
.lang-switch { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    color: #eaf1fb; font: inherit; font-size: .82rem; cursor: pointer;
    padding: .32rem .7rem; border-radius: 50px; transition: all var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,.16); }
.lang-btn i { color: var(--secondary-2); margin: 0; }
.lang-btn .lang-caret { font-size: .62rem; transition: transform var(--transition); }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute; right: 0; top: calc(100% + 8px); z-index: 1200;
    min-width: 150px; margin: 0; padding: 6px; list-style: none;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(-6px); transition: all var(--transition);
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li {
    padding: .55rem .8rem; border-radius: 8px; cursor: pointer; color: var(--heading);
    font-size: .9rem; display: flex; align-items: center; gap: .5rem;
}
.lang-menu li:hover { background: var(--light); color: var(--primary); }
.lang-menu li.active { background: var(--grad-navy); color: #fff; font-weight: 600; }

/* Language switcher (mobile drawer) */
.nav-panel-lang { margin-top: 1.1rem; }
.nav-lang-label { display: block; color: var(--secondary-2); font-size: .8rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: .6rem; }
.nav-lang-label i { margin-right: .4rem; }
.nav-lang-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-lang-opts button {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    color: #eaf1fb; font: inherit; font-size: .9rem; padding: .6rem; border-radius: 10px; cursor: pointer;
    transition: all var(--transition);
}
.nav-lang-opts button:hover, .nav-lang-opts button.active { background: var(--grad-gold); color: var(--primary); border-color: transparent; font-weight: 600; }

/* Tools group in the always-visible main navbar (light background) */
.mainnav-tools { display: inline-flex; align-items: center; gap: 12px; }
.mainnav-social { display: inline-flex; align-items: center; gap: 7px; }
.mainnav-social a {
    width: 32px; height: 32px; border-radius: 50%; display: inline-grid; place-items: center;
    background: var(--light-2); color: var(--primary); font-size: .82rem; transition: all var(--transition);
}
.mainnav-social a:hover { background: var(--grad-gold); color: var(--primary); transform: translateY(-2px); }
/* Language switcher — light-background (navbar) variant */
.lang-switch--nav .lang-btn { background: var(--light-2); border-color: var(--line); color: var(--heading); }
.lang-switch--nav .lang-btn:hover { background: #e3ecf7; }
.lang-switch--nav .lang-btn i.fa-globe { color: var(--primary-3); }
.lang-switch--nav .lang-code { font-weight: 700; letter-spacing: .5px; }
@media (min-width: 992px) {
    .mainnav-inner { justify-content: flex-start; }
    .navbar-brand { margin-right: auto; }
    .nav-panel { order: 2; }
    .mainnav-tools { order: 3; margin-left: 1.3rem; }
}
@media (max-width: 991.98px) {
    .mainnav-social { display: none; }          /* the mobile drawer already lists socials */
    .mainnav-tools { gap: 8px; }
}

/* Hide Google Translate's injected banner / tooltip / mount, keep only our UI */
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .skiptranslate { display: none !important; }
.goog-te-gadget { height: 0; overflow: hidden; }
body { top: 0 !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* RTL support (Arabic) */
html[dir="rtl"] .topbar-inner,
html[dir="rtl"] .mainnav-inner { direction: rtl; }
html[dir="rtl"] .topbar a { margin-right: 0; margin-left: 1.7rem; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .nav-list { text-align: right; }

/* ---- Header / Navbar ---------------------------------------------- */
.site-header {
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(11,37,69,.06);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(11,37,69,.12); }

.mainnav { padding: .6rem 0; }
.mainnav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand { display: flex; align-items: center; flex: 0 0 auto; }
.navbar-brand .brand-logo { max-height: 56px; width: auto; transition: max-height var(--transition); }
.site-header.scrolled .brand-logo { max-height: 48px; }

/* Brand lockup (monogram + wordmark) — used when no logo image uploaded */
.brand-lockup { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
    background: var(--grad-gold); color: var(--primary);
    display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
    box-shadow: 0 6px 16px rgba(201,162,39,.35); position: relative; overflow: hidden;
    transition: all var(--transition);
}
.brand-mark::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.35), transparent 55%); }
.site-header.scrolled .brand-mark { width: 42px; height: 42px; font-size: 1.35rem; }
.brand-word { font-family: var(--font-head); font-weight: 600; font-size: 1.28rem; color: var(--heading); line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; }
.brand-word b { font-weight: 700; color: var(--primary); }
.brand-word .gold { color: var(--secondary); font-weight: 700; }
.brand-lockup--light .brand-word b { color: #fff; }
.brand-lockup--light .brand-word .gold { color: var(--secondary-2); }
.brand-lockup--light .brand-mark { color: var(--primary); }

/* Nav links (shared) */
.nav-link { color: var(--heading); font-weight: 500; font-size: .96rem; padding: .5rem 1.05rem; position: relative; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: .1rem; margin: 0; padding: 0; }
.nav-menu .nav-link::after {
    content: ''; position: absolute; left: 1.05rem; right: 1.05rem; bottom: .1rem;
    height: 2px; border-radius: 2px; background: var(--grad-gold);
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav-menu .nav-link:hover, .nav-menu .nav-link.active { color: var(--primary); }
.nav-menu .nav-link:hover::after, .nav-menu .nav-link.active::after { transform: scaleX(1); }

/* Desktop panel is just a flex row on the right */
.nav-panel { display: flex; align-items: center; gap: 1.4rem; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-actions .nav-wa { display: none; }
.btn-quote { padding: .62rem 1.55rem; box-shadow: 0 8px 20px rgba(201,162,39,.3); }

/* Panel chrome (mobile-drawer only — hidden on desktop) */
.nav-panel-head, .nav-close, .nav-panel-contact, .nav-panel-social, .nav-panel-lang { display: none; }
.nav-menu .nav-ico, .nav-menu .nav-arrow { display: none; }
.nav-backdrop { display: none; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; border: none; width: 48px; height: 44px; border-radius: 13px; background: var(--light); cursor: pointer; padding: 0 13px; transition: background var(--transition); }
.nav-toggle:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(201,162,39,.3); }
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--primary); border-radius: 3px; transition: transform .32s ease, opacity .2s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero ---------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(1100px 500px at 15% 20%, rgba(30,77,138,.45), transparent 60%),
      linear-gradient(115deg, rgba(6,20,40,.94) 0%, rgba(8,26,49,.78) 42%, rgba(8,26,49,.42) 100%);
}
.hero::after {
    content: ''; position: absolute; right: -180px; bottom: -180px; width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,.22), transparent 62%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 130px 0; }
.hero-label {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--secondary-2);
    padding: .55rem 1.2rem;
    border: 1px solid rgba(201,162,39,.4);
    border-radius: 50px;
    background: rgba(201,162,39,.08);
    backdrop-filter: blur(4px);
    margin-bottom: 1.7rem;
}
.hero-label::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--secondary-2); box-shadow: 0 0 0 4px rgba(201,162,39,.25); }
.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.2vw, 4.3rem);
    font-weight: 700;
    margin-bottom: 1.4rem;
    max-width: 16ch;
    letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--secondary-2); font-style: italic; }
.hero p.lead {
    font-size: 1.2rem;
    color: #dbe3f0;
    max-width: 58ch;
    margin-bottom: 2.4rem;
    font-weight: 300;
}
.hero-buttons .btn { margin: .3rem .6rem .3rem 0; }
.hero-trust {
    margin-top: 2.6rem;
    display: flex; flex-wrap: wrap; gap: 1.4rem;
    color: #cbd5e6;
    font-size: .95rem;
    letter-spacing: .3px;
}
.hero-trust span, .hero-trust { align-items: center; }
.hero-trust i { color: var(--secondary-2); margin-right: .45rem; }

/* Scroll cue */
.hero-scroll {
    position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero-scroll .mouse::before { content: ''; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; background: var(--secondary-2); border-radius: 3px; animation: scrollWheel 1.6s infinite; }
@keyframes scrollWheel { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(12px)} 100%{opacity:0} }

/* ---- Framework-independent responsive grid ------------------------
   Used for homepage/footer sections so layout is correct with OR without
   Bootstrap's grid loaded. */
.ag { display: grid; gap: 1.75rem; }
.ag > * { min-width: 0; }
.ag.c4 { grid-template-columns: repeat(4, 1fr); }
.ag.c3 { grid-template-columns: repeat(3, 1fr); }
.ag.c2 { grid-template-columns: repeat(2, 1fr); }
.ag.v-center { align-items: center; }
@media (max-width: 991.98px) {
    .ag.c4, .ag.c3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .ag { gap: 1.15rem; }
    .ag.c4, .ag.c3, .ag.c2 { grid-template-columns: 1fr; }
    .ag.m2 { grid-template-columns: repeat(2, 1fr) !important; gap: .85rem; }
}

/* ---- Hero slider --------------------------------------------------- */
.hero-slider { position: relative; min-height: 94vh; overflow: hidden; background: var(--primary); }
.hero-track { position: relative; height: 94vh; }
.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    opacity: 0; visibility: hidden;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 7s ease, visibility 1s;
    color: #fff;
}
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(1100px 500px at 15% 25%, rgba(30,77,138,.5), transparent 60%),
      linear-gradient(115deg, rgba(6,20,40,.94) 0%, rgba(8,26,49,.78) 42%, rgba(8,26,49,.4) 100%);
}
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-slide .hero-inner { position: relative; z-index: 2; padding: 130px 0; width: 100%; }
/* Content entrance on active slide */
.hero-slide .hero-label, .hero-slide h1, .hero-slide .lead, .hero-slide .hero-buttons {
    opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}
.hero-slide.active .hero-label { opacity: 1; transform: none; transition-delay: .25s; }
.hero-slide.active h1 { opacity: 1; transform: none; transition-delay: .4s; }
.hero-slide.active .lead { opacity: 1; transform: none; transition-delay: .55s; }
.hero-slide.active .hero-buttons { opacity: 1; transform: none; transition-delay: .7s; }
.hero-slide h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.3rem); font-weight: 700; margin-bottom: 1.4rem; max-width: 17ch; letter-spacing: -.02em; }
.hero-slide p.lead { font-size: 1.2rem; color: #dbe3f0; max-width: 58ch; margin-bottom: 2.4rem; font-weight: 300; }
.hero-slide .hero-buttons .btn { margin: .3rem .6rem .3rem 0; }

.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35);
    color: #fff; font-size: 1.1rem; cursor: pointer; backdrop-filter: blur(6px);
    display: grid; place-items: center; transition: all var(--transition);
}
.hero-arrow:hover { background: var(--grad-gold); color: var(--primary); border-color: transparent; }
.hero-prev { left: 26px; }
.hero-next { right: 26px; }

.hero-dots { position: absolute; left: 0; right: 0; bottom: 96px; z-index: 5; display: flex; justify-content: center; gap: .6rem; }
.hero-dots .hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); background: transparent; cursor: pointer; padding: 0; transition: all var(--transition); }
.hero-dots .hero-dot.active { background: var(--secondary); border-color: var(--secondary); width: 34px; border-radius: 8px; }

.hero-trust-bar { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 4; justify-content: center; display: flex; flex-wrap: wrap; gap: 1.4rem; color: #cbd5e6; font-size: .95rem; }
.hero-trust-bar span { display: inline-flex; align-items: center; }
.hero-trust-bar i { color: var(--secondary-2); margin-right: .45rem; }

/* ---- Section headings --------------------------------------------- */
.section-head { margin-bottom: 3.6rem; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    text-transform: uppercase; letter-spacing: 2.5px;
    font-size: .78rem; font-weight: 700; color: var(--secondary);
    font-family: var(--font-body); margin-bottom: 1rem;
}
.section-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--grad-gold); }
.text-center .section-eyebrow::before { display: none; }
.text-center .section-eyebrow { padding-left: 0; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--body); font-size: 1.1rem; max-width: 64ch; }
.section-head.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.title-line { width: 70px; height: 3px; background: var(--grad-gold); border-radius: 3px; margin: 1.1rem 0; }
.text-center .title-line, .mx-auto.title-line { margin-left: auto; margin-right: auto; }

/* ---- Stats --------------------------------------------------------- */
.stats-section { margin-top: -80px; position: relative; z-index: 5; }
.stats-card {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.6rem 1rem;
    overflow: hidden;
}
.stat-item { padding: 1rem .7rem; position: relative; }
.stat-item .stat-ic { color: var(--secondary); font-size: 1.3rem; margin-bottom: .5rem; }
.stat-number {
    font-family: var(--font-head); font-size: 3.1rem; font-weight: 700;
    background: var(--grad-navy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-number .plus { -webkit-text-fill-color: var(--secondary); color: var(--secondary); }
.stat-label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem; font-weight: 600; color: var(--body); margin-top: .7rem; }

/* ---- About preview ------------------------------------------------- */
.about-img-wrap { position: relative; }
.about-img-wrap::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid rgba(201,162,39,.4); border-radius: var(--radius); z-index: 0; }
.about-img-wrap img { position: relative; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 1; }
.about-experience {
    position: absolute; bottom: -26px; right: -14px; z-index: 2;
    background: var(--grad-gold); color: #1a1400;
    border-radius: var(--radius-sm); padding: 1.3rem 1.6rem;
    box-shadow: var(--glow-gold); text-align: center;
}
.about-experience .num { font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.about-experience .lbl { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ---- CEO / Leadership message -------------------------------------- */
.ceo-section { background: var(--light); }
.ceo-card {
    display: grid; grid-template-columns: 300px 1fr; gap: 0;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); overflow: hidden; max-width: 1000px; margin: 0 auto;
}
.ceo-media { position: relative; background: var(--grad-navy); min-height: 340px; }
.ceo-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ceo-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,27,56,.35)); }
.ceo-media-ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.35); font-size: 4.5rem; }
.ceo-body { padding: 2.8rem 3rem; position: relative; }
.ceo-quote { position: absolute; top: 1.6rem; right: 2rem; font-size: 2.4rem; color: var(--secondary); opacity: .28; }
.ceo-body p { color: var(--body); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.85; }
.ceo-body p:first-of-type { font-size: 1.12rem; color: var(--heading); }
.ceo-sign { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 2px solid rgba(201,162,39,.35); }
.ceo-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.ceo-title { font-size: .9rem; color: var(--secondary); font-weight: 600; letter-spacing: .3px; }
@media (max-width: 768px) {
    .ceo-card { grid-template-columns: 1fr; }
    .ceo-media { min-height: 260px; }
    .ceo-body { padding: 2rem 1.5rem; }
    .ceo-quote { top: 1.1rem; right: 1.2rem; font-size: 2rem; }
}
.feature-check { display: flex; gap: 1rem; margin-bottom: 1.15rem; align-items: flex-start; }
.feature-check .ic {
    flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px;
    background: var(--grad-navy); color: var(--secondary-2);
    display: grid; place-items: center; font-size: 1.15rem; box-shadow: var(--shadow-sm);
}
.feature-check h5 { margin: 0 0 .15rem; font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; color: var(--heading); }
.feature-check p { margin: 0; font-size: .95rem; }

/* ---- Service cards ------------------------------------------------- */
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2.4rem 1.9rem; height: 100%; transition: all var(--transition);
    position: relative; overflow: hidden; z-index: 0;
}
.service-card::before {
    content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
    background: var(--grad-navy); transition: opacity var(--transition);
}
.service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--grad-gold); transition: width var(--transition); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-icon {
    width: 72px; height: 72px; border-radius: 18px;
    background: linear-gradient(135deg, rgba(11,37,69,.07), rgba(11,37,69,.12));
    color: var(--primary); display: grid; place-items: center; font-size: 1.75rem;
    margin-bottom: 1.5rem; transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--grad-gold); color: #1a1400; transform: rotate(-6deg) scale(1.05); box-shadow: var(--glow-gold); }
.service-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; margin-bottom: .7rem; }
.service-card p { font-size: .96rem; margin-bottom: 1.2rem; }
.service-link { font-weight: 600; font-size: .92rem; color: var(--primary); display: inline-flex; align-items: center; }
.service-link i { transition: transform var(--transition); margin-left: .4rem; }
.service-link:hover i { transform: translateX(6px); }

/* Image service card (services page) */
.service-card-img { padding: 0; }
.service-card-img::after { top: auto; bottom: 0; }
.service-card-img .thumb { height: 230px; overflow: hidden; position: relative; }
.service-card-img .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,37,69,.35), transparent 55%); }
.service-card-img .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card-img:hover .thumb img { transform: scale(1.09); }
.service-card-img .body { padding: 1.9rem; }

/* ---- Why choose us ------------------------------------------------- */
.why-item { display: flex; gap: 1.3rem; padding: 1.8rem; border-radius: var(--radius); transition: all var(--transition); height: 100%; background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden; }
.why-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-gold); transform: scaleY(0); transform-origin: top; transition: transform var(--transition); }
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.why-item:hover::before { transform: scaleY(1); }
.why-num {
    flex: 0 0 auto; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
    color: var(--secondary); width: 58px; height: 58px; border-radius: 16px;
    background: rgba(201,162,39,.12); display: grid; place-items: center; transition: all var(--transition);
}
.why-item:hover .why-num { background: var(--grad-gold); color: #1a1400; }
.why-item h5 { font-family: var(--font-body); font-weight: 700; font-size: 1.13rem; margin-bottom: .4rem; }
.why-item p { margin: 0; font-size: .93rem; }

/* ---- Industries ---------------------------------------------------- */
.industry-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 320px; display: block; box-shadow: var(--shadow-sm); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,34,.94) 0%, rgba(7,17,34,.35) 52%, rgba(7,17,34,.08) 100%); transition: background var(--transition); }
.industry-card:hover img { transform: scale(1.1); }
.industry-card:hover::after { background: linear-gradient(to top, rgba(7,17,34,.96) 0%, rgba(11,37,69,.55) 60%, rgba(30,77,138,.2) 100%); }
.industry-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.7rem; z-index: 2; color: #fff; }
.industry-body .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(201,162,39,.9); color: #1a1400; display: grid; place-items: center; font-size: 1.2rem; margin-bottom: .7rem; transition: all var(--transition); }
.industry-card:hover .industry-body .ic { transform: translateY(-4px); }
.industry-body h5 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; margin: 0 0 .3rem; }
.industry-body p { color: #d5deee; font-size: .9rem; margin: 0; opacity: 0; max-height: 0; overflow: hidden; transition: all var(--transition); }
.industry-card:hover .industry-body p { opacity: 1; max-height: 110px; margin-top: .45rem; }
.industry-body .go { display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; color: var(--secondary-2); font-weight: 600; font-size: .85rem; opacity: 0; transform: translateY(6px); transition: all var(--transition); }
.industry-card:hover .industry-body .go { opacity: 1; transform: none; }

/* ---- How it works -------------------------------------------------- */
.process-wrap { position: relative; }
.process-line { position: absolute; top: 46px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--secondary) 0 8px, transparent 8px 18px); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
    width: 92px; height: 92px; margin: 0 auto 1.4rem; border-radius: 50%;
    background: #fff; border: 2px solid var(--line); display: grid; place-items: center;
    font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--primary);
    box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative;
}
.process-num::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px dashed rgba(201,162,39,.5); opacity: 0; transition: opacity var(--transition); }
.process-step:hover .process-num { background: var(--grad-navy); color: var(--secondary-2); border-color: transparent; transform: translateY(-6px); }
.process-step:hover .process-num::after { opacity: 1; }
.process-step h5 { font-family: var(--font-body); font-weight: 700; font-size: 1.13rem; margin-bottom: .4rem; }
.process-step p { font-size: .93rem; }

/* ---- CTA ----------------------------------------------------------- */
.cta-band {
    background: var(--grad-navy); color: #fff; border-radius: var(--radius-lg);
    padding: 3.8rem; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::before { content: '\f0f4'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -10px; bottom: -30px; font-size: 12rem; color: rgba(255,255,255,.05); }
.cta-band::after { content: ''; position: absolute; left: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.18), transparent 65%); }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.5rem); position: relative; }
.cta-band p { color: #cdd8ea; position: relative; }
.cta-full { color: #fff; text-align: center; padding: 120px 0; position: relative; background-size: cover; background-position: center; }
.cta-full::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,17,34,.92), rgba(8,26,49,.82)); }
.cta-full .container { position: relative; z-index: 2; }
.cta-full h2 { color: #fff; }

/* ---- Testimonials -------------------------------------------------- */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow-sm); height: 100%; border: 1px solid var(--line); position: relative; transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-mark { position: absolute; top: 1.2rem; right: 1.6rem; font-size: 3.4rem; color: rgba(201,162,39,.18); line-height: 1; font-family: var(--font-head); }
.testimonial-stars { color: var(--secondary); margin-bottom: .9rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1.02rem; color: var(--heading); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.testimonial-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--grad-navy); color: var(--secondary-2); display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); font-size: 1.25rem; object-fit: cover; box-shadow: var(--shadow-sm); }
.testimonial-author h6 { margin: 0; font-family: var(--font-body); font-weight: 700; color: var(--heading); font-size: 1rem; }
.testimonial-author span { font-size: .85rem; color: var(--body); }

/* ---- Reviews marquee (smooth auto-slider) -------------------------- */
.reviews-marquee {
    position: relative; overflow: hidden;
    /* fade the left/right edges so cards ease in and out */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
    display: flex; width: max-content; gap: 26px;
    animation: reviews-scroll var(--rev-duration, 40s) linear infinite;
    will-change: transform;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-slide { flex: 0 0 auto; width: 370px; max-width: 82vw; padding: 10px 0; }
.review-slide .testimonial-card { height: 100%; }
.review-slide .testimonial-text {
    display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical;
    overflow: hidden;
}
@keyframes reviews-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (max-width: 576px) {
    .review-slide { width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
    .reviews-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
    .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
    .review-slide[aria-hidden="true"] { display: none; }
}

/* ---- Clients (marquee) --------------------------------------------- */
.logo-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; align-items: center; gap: 4.5rem; width: max-content; animation: marquee 34s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo { filter: grayscale(1); opacity: .55; transition: all var(--transition); max-height: 62px; max-width: 150px; object-fit: contain; }
.client-logo:hover { filter: grayscale(0); opacity: 1; }

/* ---- FAQ ----------------------------------------------------------- */
.faq .accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm) !important; margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq .accordion-button { font-family: var(--font-body); font-weight: 600; color: var(--heading); padding: 1.3rem 1.5rem; background: #fff; font-size: 1.03rem; }
.faq .accordion-button:not(.collapsed) { color: var(--primary); background: var(--light); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: none; border: none; }
.faq .accordion-button::after { background-size: 1rem; }
.faq .accordion-body { color: var(--body); padding: 0 1.5rem 1.4rem; }

/* ---- Page banner --------------------------------------------------- */
.page-banner { position: relative; color: #fff; padding: 150px 0 100px; background-size: cover; background-position: center; text-align: center; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 400px at 50% 0%, rgba(30,77,138,.5), transparent 60%), linear-gradient(120deg, rgba(7,17,34,.92), rgba(8,26,49,.78)); }
.page-banner::after { content: ''; position: absolute; right: -140px; bottom: -140px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.18), transparent 62%); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(2.1rem,4.4vw,3.3rem); margin-bottom: .8rem; }
/* Framework-independent breadcrumb (does not rely on Bootstrap) */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.breadcrumb-item { display: inline-flex; align-items: center; }
.breadcrumb-item a { text-decoration: none; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; padding: 0 .55rem; opacity: .8; }
.page-banner .breadcrumb { justify-content: center; }
.page-banner .breadcrumb a { color: var(--secondary-2); }
.page-banner .breadcrumb-item.active { color: #cdd8ea; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #8ea1bd; }

/* ---- Forms --------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius); padding: 2.8rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-label { font-weight: 600; color: var(--heading); font-size: .9rem; margin-bottom: .45rem; }
.form-control, .form-select { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .85rem 1.05rem; font-size: .96rem; background: #fbfcfd; transition: all var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(201,162,39,.14); background: #fff; }
textarea.form-control { min-height: 140px; }

.info-tile { display: flex; gap: 1.15rem; margin-bottom: 1.7rem; align-items: flex-start; }
.info-tile .ic { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 16px; background: var(--grad-navy); color: var(--secondary); display: grid; place-items: center; font-size: 1.25rem; box-shadow: var(--shadow-sm); }
.info-tile h6 { margin: 0 0 .2rem; font-family: var(--font-body); font-weight: 700; color: var(--heading); }
.info-tile p, .info-tile a { margin: 0; font-size: .95rem; color: var(--body); }

.alert-success-soft { background: #e9f7ef; color: #1a7a43; border: 1px solid #bfe6cf; border-radius: var(--radius-sm); }
.alert-danger-soft  { background: #fdecec; color: #b3261e; border: 1px solid #f5c2c0; border-radius: var(--radius-sm); }

/* ---- Job cards ----------------------------------------------------- */
.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 2.2rem; transition: all var(--transition); margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.job-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-gold); transform: scaleY(0); transform-origin: top; transition: transform var(--transition); }
.job-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.job-card:hover::before { transform: scaleY(1); }
.job-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; margin-bottom: .5rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; color: var(--body); font-size: .88rem; margin-bottom: .9rem; }
.job-meta i { color: var(--secondary); margin-right: .4rem; }
.job-badge { display: inline-block; background: rgba(201,162,39,.14); color: #8a6d12; font-size: .78rem; font-weight: 600; padding: .32rem .9rem; border-radius: 50px; }

/* ---- Service detail ------------------------------------------------ */
.detail-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li { padding: .6rem 0 .6rem 2.1rem; position: relative; color: var(--body); }
.detail-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #fff; background: var(--grad-gold); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; position: absolute; left: 0; top: .55rem; }
.sidebar-card { background: var(--light); border-radius: var(--radius); padding: 1.9rem; margin-bottom: 1.6rem; border: 1px solid var(--line); }
.sidebar-card h5 { font-family: var(--font-body); font-weight: 700; margin-bottom: 1.1rem; }
.service-nav-link { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1.1rem; border-radius: var(--radius-sm); background: #fff; margin-bottom: .55rem; font-weight: 500; color: var(--heading); border: 1px solid var(--line); transition: all var(--transition); }
.service-nav-link:hover, .service-nav-link.active { background: var(--grad-navy); color: #fff; border-color: transparent; transform: translateX(4px); }
.service-nav-link:hover i, .service-nav-link.active i { color: var(--secondary); }

/* ---- Values -------------------------------------------------------- */
.value-card { text-align: center; padding: 2.2rem 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); height: 100%; transition: all var(--transition); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.value-icon { width: 70px; height: 70px; border-radius: 20px; margin: 0 auto 1.2rem; display: grid; place-items: center; background: linear-gradient(135deg, rgba(11,37,69,.06), rgba(11,37,69,.1)); color: var(--primary); font-size: 1.55rem; transition: all var(--transition); }
.value-card:hover .value-icon { background: var(--grad-gold); color: #1a1400; transform: rotate(-6deg); }
.value-card h5 { font-family: var(--font-body); font-weight: 700; font-size: 1.13rem; }

/* ---- Floating buttons --------------------------------------------- */
.float-btn { position: fixed; z-index: 1040; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.5rem; box-shadow: 0 10px 26px rgba(0,0,0,.28); transition: transform var(--transition); }
.float-btn:hover { transform: scale(1.12); color: #fff; }
.float-whatsapp { right: 26px; bottom: 26px; background: #25D366; animation: pulse 2.6s infinite; }
.float-call { right: 26px; bottom: 94px; background: var(--grad-navy); }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow:0 0 0 18px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }

.back-to-top { position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-navy); color: #fff; border: none; display: none; place-items: center; z-index: 1039; box-shadow: var(--shadow); transition: all var(--transition); }
.back-to-top.show { display: grid; }
.back-to-top:hover { background: var(--grad-gold); color: #1a1400; transform: translateY(-3px); }

/* ---- Mobile sticky bottom app bar (mobile only) ------------------- */
.mobile-bar { display: none; }

/* ---- Footer -------------------------------------------------------- */
.site-footer { background: var(--grad-navy); color: #a9b8d0; padding-top: 64px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: -120px; right: -100px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.1), transparent 65%); }

/* Footer CTA card */
.footer-cta {
    position: relative; z-index: 1;
    background: linear-gradient(120deg, #10305c, #1e4d8a);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2.6rem 3rem; margin-bottom: 3rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.footer-cta::before { content: ''; position: absolute; right: -40px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.28), transparent 65%); }
.footer-cta-text { position: relative; z-index: 1; }
.footer-cta-eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--secondary-2); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: .6rem; }
.footer-cta h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 .4rem; }
.footer-cta p { color: #cdd8ea; margin: 0; font-size: 1rem; }
.footer-cta-actions { position: relative; z-index: 1; display: flex; gap: .8rem; flex-wrap: wrap; }

/* Trust strip */
.footer-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; padding: 34px 0; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; z-index: 1; }
.footer-strip-item { display: flex; align-items: center; gap: 1rem; color: #e5ebf5; font-weight: 600; font-size: 1rem; }
.footer-strip-item .ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; background: rgba(201,162,39,.14); color: var(--secondary-2); display: grid; place-items: center; font-size: 1.25rem; transition: all var(--transition); }
.footer-strip-item:hover .ic { background: var(--grad-gold); color: #1a1400; transform: translateY(-4px); }
.site-footer .footer-brand { color: #fff; font-weight: 700; }
.footer-logo { max-height: 58px; }
.footer-about { font-size: .94rem; margin: 1rem 0 1.5rem; color: #a9b8d0; }
.footer-title { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1.06rem; margin-bottom: 1.4rem; position: relative; padding-bottom: .8rem; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--grad-gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { color: #a9b8d0; font-size: .93rem; display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--secondary); font-size: .8rem; opacity: 0; margin-right: -.9rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-links a:hover::before { opacity: 1; margin-right: 0; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .75rem; margin-bottom: .9rem; font-size: .93rem; }
.footer-contact i { color: var(--secondary); margin-top: .25rem; }
.footer-contact a { color: #a9b8d0; }
.footer-contact a:hover { color: var(--secondary); }
.footer-social a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: #fff; display: inline-grid; place-items: center; margin-right: .55rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--grad-gold); color: #1a1400; border-color: transparent; transform: translateY(-4px); box-shadow: var(--glow-gold); }

/* Footer columns grid (framework-independent) */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 2rem 2.4rem; }
.footer-grid > [class*="col-"] { padding: 0; width: auto; max-width: none; }

/* Footer brand lockup */
.footer-logo-img { max-height: 66px; max-width: 260px; width: auto; }
.footer-brand-lockup .brand-mark { width: 50px; height: 50px; font-size: 1.6rem; }
.footer-brand-lockup .brand-word { font-size: 1.4rem; }
.footer-brand-lockup .brand-logo { max-height: 58px; }

/* Footer quick contact */
.footer-quickcontact { display: flex; flex-direction: column; gap: .7rem; margin: 0 0 1.5rem; }
.footer-quickcontact a { display: flex; align-items: center; gap: .9rem; color: #cdd8ea; }
.footer-quickcontact .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: rgba(201,162,39,.14); color: var(--secondary-2); display: grid; place-items: center; font-size: 1.05rem; transition: all var(--transition); }
.footer-quickcontact a:hover .ic { background: var(--grad-gold); color: var(--primary); }
.footer-quickcontact a span { display: flex; flex-direction: column; font-weight: 600; color: #e5ebf5; line-height: 1.25; }
.footer-quickcontact a small { color: #8ea1bd; font-weight: 500; font-size: .74rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-quickcontact a:hover span { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 60px; padding: 1.4rem 0; font-size: .88rem; position: relative; background: rgba(0,0,0,.14); }
.footer-bottom-grid { display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.6rem; flex-wrap: wrap; }
.footer-copy { color: #96a6c0; }
.footer-legal { color: #6b7c98; }
.footer-legal a { color: #a9b8d0; }
.footer-legal a:hover { color: var(--secondary); }

/* Developer credit */
.dev-credit { display: inline-flex; align-items: center; gap: .6rem; margin-left: auto; }
.dev-credit > span { color: #8595b0; font-size: .82rem; white-space: nowrap; }
.dev-credit a { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .7rem; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); transition: all var(--transition); }
.dev-credit a:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.dev-logo { height: 26px; width: auto; display: block; }
.dev-credit-text { display: none; }

/* ---- Blog / Insights ---------------------------------------------- */
.post-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; transition: all var(--transition); }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-thumb { position: relative; height: 210px; overflow: hidden; background: var(--grad-navy); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.post-card:hover .post-thumb img { transform: scale(1.08); }
/* Branded placeholder when no image is uploaded (fully self-contained, no external asset) */
.post-thumb.ph { display: flex; align-items: center; justify-content: center; background: var(--grad-navy); }
.post-thumb.ph::after { content: ''; position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.28), transparent 62%); }
.post-thumb.ph i { font-size: 2.6rem; color: rgba(255,255,255,.35); position: relative; z-index: 1; }
.post-cat { position: absolute; left: 14px; top: 14px; background: var(--grad-gold); color: var(--primary); font-size: .72rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }
.post-body { padding: 1.5rem 1.6rem 1.8rem; }
.post-meta { color: var(--body); font-size: .82rem; margin-bottom: .6rem; }
.post-meta i { color: var(--secondary); margin-right: .35rem; }
.post-body h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.18rem; color: var(--heading); margin: 0 0 .6rem; line-height: 1.35; }
.post-body p { font-size: .93rem; margin-bottom: 1rem; }
.post-more { color: var(--primary); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; }
.post-card:hover .post-more { color: var(--secondary); }
.post-more i { transition: transform var(--transition); }
.post-card:hover .post-more i { transform: translateX(5px); }
.post-share { display: flex; align-items: center; gap: .6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.post-share span { font-weight: 600; color: var(--heading); }
.post-share a { width: 40px; height: 40px; border-radius: 11px; background: var(--light); color: var(--primary); display: grid; place-items: center; transition: all var(--transition); }
.post-share a:hover { background: var(--grad-gold); color: var(--primary); transform: translateY(-3px); }

/* ---- Newsletter (footer) ------------------------------------------ */
.footer-news { margin: 1rem 0 1.4rem; }
.footer-news form { display: flex; gap: .5rem; }
.footer-news input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; }
.footer-news input::placeholder { color: #9fb0cc; }
.footer-news input:focus { outline: none; border-color: var(--secondary); background: rgba(255,255,255,.1); }
.footer-news button { flex: 0 0 auto; background: var(--grad-gold); color: var(--primary); border: none; border-radius: 10px; width: 46px; font-size: 1rem; cursor: pointer; transition: all var(--transition); }
.footer-news button:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
.footer-news .news-msg { font-size: .82rem; margin-top: .5rem; display: none; }
.footer-news .news-msg.ok { color: #7ee2a8; display: block; }
.footer-news .news-msg.err { color: #ff9a9a; display: block; }

/* ---- Cookie consent ------------------------------------------------ */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1055; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem 1.3rem; display: none; align-items: center; gap: 1rem; flex-wrap: wrap; max-width: 760px; margin: 0 auto; }
.cookie-bar.show { display: flex; animation: navDrop .4s ease; }
.cookie-bar p { margin: 0; flex: 1; min-width: 220px; font-size: .9rem; color: var(--body); }
.cookie-bar a { color: var(--primary); font-weight: 600; }
.cookie-bar .btn { padding: .6rem 1.4rem; }
@media (max-width: 767.98px){ .cookie-bar { bottom: 80px; } }

/* ---- Legal / prose ------------------------------------------------- */
.prose h2 { font-size: 1.55rem; margin: 2.2rem 0 .9rem; }
.prose h3 { font-size: 1.22rem; margin: 1.6rem 0 .6rem; font-family: var(--font-body); font-weight: 700; }
.prose p, .prose li { color: var(--body); }
.prose ul { padding-left: 1.2rem; }

/* ---- Animations (AOS-lite) ----------------------------------------
   Only hide elements when JS is available (html.js), so if scripts fail
   to run, all content stays fully visible. */
.js [data-anim] { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.js [data-anim].in { opacity: 1; transform: none; }
.js [data-anim="fade"] { transform: none; }
.js [data-anim].d1 { transition-delay: .1s; }
.js [data-anim].d2 { transition-delay: .2s; }
.js [data-anim].d3 { transition-delay: .3s; }
.js [data-anim].d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
    .js [data-anim] { opacity: 1 !important; transform: none !important; }
    html { scroll-behavior: auto; }
    .logo-track, .float-whatsapp, .hero-scroll .mouse::before { animation: none !important; }
}
