/* ============================================================
   SGBS GROUP PTY LTD — MASTER STYLESHEET
   Deep Navy | Gold | White — Deloitte-Bold Style
   Inspiring Dreams
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Navy Palette (from SGBS logo) */
    --navy-deep:      #0B1D30;
    --navy-primary:   #1A3550;
    --navy-mid:       #244B6E;
    --navy-accent:    #2E6090;
    --navy-light:     #4A83B5;
    --navy-soft:      #EDF3F8;
    --navy-tint:      #F5F8FB;

    /* Gold Palette (from SGBS logo) */
    --gold-primary:   #C9A44C;
    --gold-bright:    #D4AF37;
    --gold-light:     #E8D48B;
    --gold-dark:      #A68A2E;
    --gold-deep:      #8B7225;
    --gold-glow:      rgba(201, 164, 76, 0.25);
    --gold-soft:      #FBF6E9;

    /* Neutrals */
    --white:          #FFFFFF;
    --off-white:      #FAFBFC;
    --grey-50:        #F7F8F9;
    --grey-100:       #EEF0F2;
    --grey-200:       #D8DCE0;
    --grey-300:       #B0B7BE;
    --grey-400:       #8A939C;
    --grey-500:       #6B7580;
    --grey-600:       #4E5760;
    --grey-700:       #374049;
    --dark:           #111A22;
    --dark-soft:      #1A2836;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py:     120px;
    --section-py-sm:  80px;
    --container-max:  1240px;
    --container-px:   24px;

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(11, 29, 48, 0.06);
    --shadow-md:   0 4px 20px rgba(11, 29, 48, 0.08);
    --shadow-lg:   0 8px 40px rgba(11, 29, 48, 0.12);
    --shadow-xl:   0 16px 60px rgba(11, 29, 48, 0.16);
    --shadow-gold: 0 4px 24px rgba(201, 164, 76, 0.2);

    /* Borders */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bold: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Text Colors */
    --text-primary:    var(--dark);
    --text-secondary:  var(--grey-500);
    --text-light:      var(--grey-300);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    font-size: 1.05rem;
    color: var(--grey-600);
    line-height: 1.8;
}

.text-gold { color: var(--gold-primary); }
.text-navy { color: var(--navy-primary); }
.text-white { color: var(--white); }

.text-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-navy {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
}

.section--dark {
    background: var(--navy-deep);
    color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: var(--grey-200);
}

.section--navy {
    background: linear-gradient(160deg, var(--navy-primary) 0%, var(--navy-deep) 100%);
    color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
    color: var(--white);
}

.section--navy p {
    color: rgba(255, 255, 255, 0.75);
}

.section--light {
    background: var(--grey-50);
}

.section--gold-accent {
    background: var(--gold-soft);
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
}

.section--dark .section-label,
.section--navy .section-label {
    color: var(--gold-light);
}

.section--dark .section-label::before,
.section--navy .section-label::before {
    background: var(--gold-light);
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.preloader-logo span {
    color: var(--gold-primary);
}

.preloader-tagline {
    font-size: 0.85rem;
    color: var(--grey-400);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
    border-radius: 2px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}

@keyframes preloaderFill {
    0%   { width: 0; }
    50%  { width: 60%; }
    100% { width: 100%; }
}

/* ── Header ────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(11, 29, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header--home {
    background: transparent;
}

.header--inner {
    background: var(--navy-deep);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-mark span {
    color: var(--gold-primary);
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 1px;
}

.nav-cta {
    margin-left: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ── Navigation Dropdown ───────────────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > .nav-link .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition-base);
}

.nav-dropdown:hover > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
    padding: 8px 24px 6px;
    margin-top: 4px;
}

.dropdown-label:first-child {
    margin-top: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--grey-600);
    transition: all var(--transition-base);
}

.dropdown-menu a:hover {
    background: var(--grey-50);
    color: var(--navy-primary);
    padding-left: 28px;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--gold-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--grey-100);
    margin: 8px 0;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Hero — Video Background ──────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(11, 29, 48, 0.78) 0%,
            rgba(26, 53, 80, 0.65) 40%,
            rgba(11, 29, 48, 0.82) 100%
        );
}

/* Animated geometric pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.08;
    background-image:
        linear-gradient(30deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
        linear-gradient(150deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
        linear-gradient(30deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary)),
        linear-gradient(150deg, var(--gold-primary) 12%, transparent 12.5%, transparent 87%, var(--gold-primary) 87.5%, var(--gold-primary));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(201, 164, 76, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(201, 164, 76, 0.08);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

/* Hero CTA Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    padding: 16px 40px;
    font-size: 0.95rem;
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
    border-radius: var(--radius-full);
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 164, 76, 0.35);
}

.btn-secondary {
    padding: 16px 40px;
    font-size: 0.95rem;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-dark {
    padding: 16px 40px;
    font-size: 0.95rem;
    color: var(--white);
    background: var(--navy-primary);
    border-radius: var(--radius-full);
    gap: 10px;
}

.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-gold {
    padding: 14px 36px;
    font-size: 0.95rem;
    color: var(--gold-primary);
    background: transparent;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-full);
    gap: 10px;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Page Header (inner pages) ─────────────────────────────── */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.page-header-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 640px;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--grey-100);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.95rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* Dark Card variant */
.card--dark {
    background: var(--navy-primary);
    border-color: rgba(255, 255, 255, 0.08);
}

.card--dark:hover {
    border-color: var(--gold-primary);
    background: var(--navy-mid);
}

.card--dark .card-icon {
    background: rgba(201, 164, 76, 0.12);
}

.card--dark .card-title {
    color: var(--white);
}

.card--dark .card-text {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Service Detail Sections ────────────────────────────────── */
.service-detail .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.service-detail .service-detail-grid.reverse {
    grid-template-columns: 360px 1fr;
    direction: rtl;
}

.service-detail .service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-tier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section--light .service-detail-title {
    color: var(--dark);
}

.service-detail-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy-primary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content p {
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section--light .service-detail-content p {
    color: var(--grey-500);
}

.service-detail-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-top: 28px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--grey-600);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-detail-features li:last-child {
    border-bottom: none;
}

.service-detail-features li i {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-detail-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--grey-100);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.section--light .service-detail-sidebar {
    background: var(--grey-50);
    border-color: var(--grey-200);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-detail-icon i {
    font-size: 1.5rem;
    color: var(--navy-deep);
}

.service-detail-stat {
    margin-bottom: 24px;
}

.service-detail-stat .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.service-detail-stat .stat-label {
    font-size: 0.85rem;
    color: var(--grey-400);
}

.service-detail-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--navy-primary);
    line-height: 1.6;
    padding: 20px 0;
    margin: 0 0 24px;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Specialist Services Grid ──────────────────────────────── */
.specialist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.specialist-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 164, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-base);
}

.specialist-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(201, 164, 76, 0.35);
}

.specialist-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.specialist-icon i {
    font-size: 1.2rem;
    color: var(--navy-deep);
}

.specialist-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.specialist-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.specialist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-decoration: none;
    transition: gap var(--transition-base);
}

.specialist-link:hover {
    gap: 12px;
    color: var(--gold-bright);
}

/* ── Brands / Clients ──────────────────────────────────────── */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    border: 1px solid var(--grey-100);
    text-align: center;
    transition: all var(--transition-base);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.brand-card-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--navy-soft);
    font-size: 2rem;
    color: var(--navy-primary);
}

.brand-card-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.brand-card-desc {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* ── Media / Press Section ──────────────────────────────────── */
.media-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.media-feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--gold-primary);
}

.media-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.media-feature-content p {
    margin-bottom: 20px;
}

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-soft);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

/* ── Contact Section ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--grey-100);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.contact-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-info-value a {
    color: var(--navy-primary);
}

.contact-info-value a:hover {
    color: var(--gold-primary);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--grey-100);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Blog / Insights ───────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--grey-100);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: var(--navy-soft);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--grey-400);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-primary);
}

.blog-card-link:hover {
    color: var(--gold-primary);
    gap: 10px;
}

/* ── Features / Value Props Grid ───────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
    color: var(--gold-primary);
    font-size: 1.6rem;
}

.section--dark .feature-icon,
.section--navy .feature-icon {
    background: rgba(201, 164, 76, 0.12);
    color: var(--gold-light);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.section--dark .feature-text,
.section--navy .feature-text {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Testimonial / Quote ───────────────────────────────────── */
.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold-primary);
    opacity: 0.3;
    margin-bottom: -16px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 24px;
}

.section--dark .quote-text,
.section--navy .quote-text {
    color: var(--white);
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grey-600);
}

.quote-author span {
    color: var(--grey-400);
    font-weight: 400;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-primary) 50%, var(--navy-mid) 100%);
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.1) 0%, transparent 70%);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.06) 0%, transparent 70%);
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

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

/* ── About Page ────────────────────────────────────────────── */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-intro-content h2 {
    margin-bottom: 24px;
}

.about-intro-content p {
    margin-bottom: 16px;
}

.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    padding: 48px 0;
}

.about-stat {
    padding: 32px 16px;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Vision / Mission cards */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-100);
    background: var(--white);
}

.vm-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.vm-card p {
    line-height: 1.8;
}

/* ── Counters (animated) ───────────────────────────────────── */
.counter-value {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* ── Gold line dividers ────────────────────────────────────── */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
    border-radius: 2px;
    margin: 24px 0;
}

.gold-divider--center {
    margin: 24px auto;
}

/* ── Geometric accent shapes ───────────────────────────────── */
.geo-accent {
    position: absolute;
    border: 2px solid rgba(201, 164, 76, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.geo-accent--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.geo-accent--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
}

/* ── Scroll Reveal utility ─────────────────────────────────── */
[data-aos] {
    will-change: transform, opacity;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .specialist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .media-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 8px;
        transition: right var(--transition-bold);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: var(--radius-md);
        min-width: 0;
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 600px;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.7);
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--gold-primary);
        padding-left: 24px;
    }

    .dropdown-menu a i {
        color: var(--gold-primary);
    }

    .dropdown-label {
        color: rgba(255, 255, 255, 0.35);
        padding: 6px 20px;
    }

    .dropdown-divider {
        background: rgba(255, 255, 255, 0.1);
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .service-detail-sidebar {
        position: static;
    }

    .specialist-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 140px 0 64px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .about-stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-stats-bar {
        grid-template-columns: 1fr;
    }
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Utility animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* ── Utility Classes ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Hide on mobile / desktop */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* ── Why Choose Us grid ────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(201, 164, 76, 0.12);
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.why-card h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Process Steps ─────────────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

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

.process-step p {
    font-size: 0.9rem;
    color: var(--grey-500);
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ── Navigation overlay for mobile ─────────────────────────── */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== Individual Service Pages ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-muted);
}

.service-page-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.service-page-main {
    min-width: 0;
}

.service-page-main > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 2.5rem;
}

.service-feature-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-feature-block:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 32px rgba(201, 164, 76, 0.08);
}

.service-feature-block h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-feature-block p {
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.service-highlight-box {
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.08), rgba(201, 164, 76, 0.03));
    border: 1px solid rgba(201, 164, 76, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.service-highlight-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.service-highlight-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.service-highlight-stat .stat-label {
    font-size: 1rem;
    color: var(--text-body);
    text-align: left;
    line-height: 1.4;
}

/* Sidebar */
.service-page-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.sidebar-card--cta {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-deep));
    border-color: rgba(201, 164, 76, 0.3);
    text-align: center;
}

.sidebar-card--cta h4 {
    color: #fff;
}

.sidebar-card--cta p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.sidebar-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.5;
}

.sidebar-benefits li i {
    color: var(--gold-primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sidebar-card .specialist-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition-base);
}

.sidebar-card .specialist-link:hover {
    color: var(--gold-light);
    gap: 0.75rem;
}

/* Related Services Grid */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-services-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.related-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.related-service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 164, 76, 0.1);
}

.related-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(201, 164, 76, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold-primary);
    font-size: 1.3rem;
}

.related-service-card h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.related-service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-service-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-base);
}

.related-service-link:hover {
    color: var(--gold-light);
    gap: 0.6rem;
}

/* Service Page CTA */
.service-page-cta {
    text-align: center;
    margin-top: 3rem;
}

.service-page-cta p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Specialist Service Sections (stacked) */
.specialist-section {
    margin-bottom: 3rem;
}

.specialist-section h2 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.specialist-section > p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
    .service-page-content {
        grid-template-columns: 1fr;
    }

    .service-page-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }

    .related-services-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr;
    }

    .related-services-grid--4 {
        grid-template-columns: 1fr;
    }

    .service-page-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: auto;
    }

    .service-highlight-stat {
        flex-direction: column;
        text-align: center;
    }

    .service-highlight-stat .stat-label {
        text-align: center;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }
}

/* Blog post featured image hero */
.blog-post-hero {
    background: var(--bg-page);
    padding: 0 0 3rem;
}

.blog-post-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .blog-post-hero-img {
        max-height: 240px;
        border-radius: 10px;
    }
}

/* ============================================================
   BLOG POST ARTICLE LAYOUT
   ============================================================ */

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.blog-post-content {
    min-width: 0;
}

.blog-post-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Lead paragraph */
.blog-lead {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-body);
    font-weight: 400;
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Article headings */
.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 2rem 0 0.75rem;
}

.blog-post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.blog-post-content strong {
    color: var(--text-heading);
    font-weight: 600;
}

/* Callout box */
.blog-callout {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.08), rgba(201, 164, 76, 0.03));
    border: 1px solid rgba(201, 164, 76, 0.25);
    border-radius: 12px;
    padding: 1.75rem;
    margin: 2rem 0;
}

.blog-callout > i {
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.blog-callout strong {
    display: block;
    color: var(--text-heading);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.blog-callout p {
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* CTA buttons at bottom of post */
.blog-post-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Comparison table */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.blog-table thead tr {
    background: var(--navy-primary);
}

.blog-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.blog-table td {
    padding: 0.85rem 1.25rem;
    color: var(--text-body);
    border-top: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.6;
}

.blog-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.blog-table tr:hover td {
    background: rgba(201, 164, 76, 0.04);
}

/* Sidebar links */
.sidebar-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links-list li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-links-list li:last-child {
    border-bottom: none;
}

.sidebar-links-list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.sidebar-links-list a:hover {
    color: var(--gold-primary);
    gap: 0.85rem;
}

.sidebar-links-list a i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sidebar-card:not(.sidebar-card--cta) p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.sidebar-link:hover {
    color: var(--gold-light);
}

/* Small button variant */
.btn--small {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

/* Tinted section background */
.section--tint {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Compact blog grid for "More Insights" */
.blog-grid--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-grid--compact .blog-card {
    min-height: auto;
}

.blog-grid--compact .blog-card-body {
    padding: 1.5rem;
}

/* Responsive blog post layout */
@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .blog-post-layout {
        gap: 2rem;
    }

    .blog-lead {
        font-size: 1.1rem;
    }

    .blog-post-content h2 {
        font-size: 1.4rem;
    }

    .blog-post-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: auto;
    }

    .blog-post-cta {
        flex-direction: column;
    }

    .blog-post-cta .btn {
        text-align: center;
        justify-content: center;
    }

    .blog-grid--compact {
        grid-template-columns: 1fr;
    }

    .blog-table {
        font-size: 0.85rem;
    }

    .blog-table th,
    .blog-table td {
        padding: 0.65rem 0.75rem;
    }
}

/* ====================================================
   Social Share Bar
   ==================================================== */
.blog-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 164, 76, 0.06);
    border: 1px solid rgba(201, 164, 76, 0.2);
    border-radius: 12px;
}

.blog-share span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: filter 0.2s ease, transform 0.15s ease;
    line-height: 1;
    color: #fff;
}

.share-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.share-whatsapp  { background: #25D366; }
.share-linkedin  { background: #0A66C2; }
.share-facebook  { background: #1877F2; }
.share-twitter   { background: #000; }
.share-copy      { background: var(--navy-primary); cursor: pointer; }
.share-copy.copied { background: #27ae60; }

/* ====================================================
   WhatsApp Floating Button
   ==================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
    color: #fff;
    text-decoration: none;
}
.wa-label {
    position: absolute;
    right: 72px;
    background: #1a1a1a;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: var(--font-body);
}
.wa-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
    border-right: none;
}
.whatsapp-float:hover .wa-label { opacity: 1; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ====================================================
   Newsletter Strip (injected above footer)
   ==================================================== */
.newsletter-strip {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-deep) 100%);
    border-top: 2px solid rgba(201, 164, 76, 0.25);
    padding: 3.5rem 0;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.newsletter-text { flex: 1; }
.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.newsletter-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.newsletter-form { flex-shrink: 0; width: 380px; }
.newsletter-field {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(201,164,76,0.4);
}
.newsletter-field input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
}
.newsletter-field input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-field .btn { border-radius: 0; padding: 0.875rem 1.4rem; white-space: nowrap; flex-shrink: 0; font-size: 0.88rem; }
.newsletter-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.32);
    margin: 0.6rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.newsletter-success {
    color: #4cd964;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-weight: 500;
}
@media (max-width: 900px) {
    .newsletter-inner { flex-direction: column; gap: 1.75rem; text-align: center; }
    .newsletter-form { width: 100%; max-width: 440px; }
    .newsletter-note { justify-content: center; }
}
