/* ==========================================================================
   KSK ASSOCIATES - CHARTERED ACCOUNTANTS & AUDIT FIRM
   Senior Web Designer Corporate Master Stylesheet
   Bespoke Editorial & Architectural Corporate Aesthetic
   ========================================================================== */

:root {
    /* Heritage Corporate Palette (No generic purple/neon gradients) */
    --navy-darkest: #040e1e;
    --navy-deep: #07172f;
    --navy-main: #0c2340;
    --navy-surface: #123057;
    --navy-accent: #1a4278;

    /* Antique Gold & Bronze Metallics */
    --gold-antique: #b89035;
    --gold-hover: #9e7826;
    --gold-light: #f5eccf;
    --gold-subtle: rgba(184, 144, 53, 0.12);
    --gold-border: rgba(184, 144, 53, 0.35);

    /* Backgrounds & Neutrals */
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-alt: #f1f5f9;
    --bg-dark-section: #05142a;

    /* Text & Typography */
    --text-heading: #07172f;
    --text-body: #2c3e50;
    --text-muted: #5c7087;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Architectural Hairlines */
    --border-hairline: rgba(12, 35, 64, 0.12);
    --border-light: #e2e8f0;
    --border-focus: #1a4278;

    /* Elevation & Shadows */
    --shadow-hairline: 0 1px 3px rgba(12, 35, 64, 0.04), 0 1px 2px rgba(12, 35, 64, 0.03);
    --shadow-subtle: 0 4px 16px rgba(12, 35, 64, 0.06);
    --shadow-elevated: 0 10px 30px rgba(12, 35, 64, 0.1);
    --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.04);

    /* WhatsApp Identity */
    --whatsapp-green: #1faa54;
    --whatsapp-green-dark: #128c46;

    /* Typography System */
    --font-serif: 'Cinzel', Georgia, 'Times New Roman', serif;
    --font-editorial: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    --transition: 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ==========================================================================
   Editorial Typography Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--gold-subtle);
    color: var(--gold-antique);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--navy-deep);
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.7;
}

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

.center-block {
    margin-left: auto;
    margin-right: auto;
}

.editorial-section-intro {
    margin-bottom: 50px;
}

/* ==========================================================================
   Bespoke Executive Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold-antique);
    color: #ffffff;
    border-color: var(--gold-antique);
}

.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--navy-main);
    color: #ffffff;
    border-color: var(--navy-main);
}

.btn-primary:hover {
    background: var(--navy-surface);
    border-color: var(--navy-surface);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #ffffff;
    border-color: var(--whatsapp-green);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-green-dark);
    border-color: var(--whatsapp-green-dark);
    color: #ffffff;
}

/* ==========================================================================
   Top Architectural Executive Bar
   ========================================================================== */
.top-bar {
    background: var(--navy-darkest);
    color: #94a3b8;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 7px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-firm-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-weight: 500;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-antique);
    border-radius: 50%;
}

.top-bar-sep {
    color: rgba(255, 255, 255, 0.18);
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
}

.top-link i {
    color: var(--gold-antique);
    font-size: 0.8rem;
}

.top-link:hover {
    color: #ffffff;
}

.top-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(31, 170, 84, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    font-weight: 600;
}

.top-whatsapp-pill:hover {
    background: var(--whatsapp-green);
    color: #ffffff;
    border-color: var(--whatsapp-green);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-hairline);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-hairline);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-deep);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--navy-surface);
    letter-spacing: 0.3px;
}

.brand-motto {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--gold-antique);
    text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-main);
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-caret {
    font-size: 0.68rem;
    transition: transform 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-antique);
}

.nav-item.has-dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

/* Practice Mega Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -120px;
    width: 620px;
    background: #ffffff;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.dropdown-header-strip a {
    color: var(--gold-antique);
    text-transform: none;
    font-size: 0.82rem;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: #f8fafc;
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gold-subtle);
    color: var(--gold-antique);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--navy-deep);
    line-height: 1.3;
}

.dropdown-text span {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-top: 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header-cta {
    background: var(--navy-deep);
    color: #ffffff;
    font-size: 0.86rem;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
}

.btn-header-cta:hover {
    background: var(--gold-antique);
    color: #ffffff;
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--navy-deep);
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   Hero Section with Ambient Video Background & Multi-Slide Carousel
   ========================================================================== */
.hero-section {
    background: var(--navy-darkest);
    color: #ffffff;
    padding: 90px 0 100px;
    position: relative;
    border-bottom: 3px solid var(--gold-antique);
    overflow: hidden;
}

.hero-with-video {
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.28;
    filter: saturate(0.8) contrast(1.1);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 14, 30, 0.94) 0%, rgba(7, 23, 47, 0.88) 55%, rgba(18, 48, 87, 0.80) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-grid {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

/* Multi-Slide Hero Carousel Container */
.hero-slider-wrap {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 940px;
}

.hero-slide {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.status-marker {
    width: 6px;
    height: 6px;
    background: var(--gold-antique);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.3rem;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 880px;
}

.hero-title em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-description {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 780px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

/* Hero Slider Controls */
.hero-slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--gold-antique);
    width: 44px;
}

.hero-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.hero-arrow-btn:hover {
    background: var(--gold-antique);
    border-color: var(--gold-antique);
    color: #ffffff;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-trust-item i {
    color: var(--gold-antique);
    font-size: 1.4rem;
}

.hero-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
}

.hero-trust-item span {
    font-size: 0.76rem;
    color: #94a3b8;
}

/* Hero Right: Partner Credential Card */
.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-avatar {
    width: 64px;
    height: 64px;
    background: var(--navy-darkest);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-antique);
    font-size: 1.6rem;
}

.card-partner-role {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-antique);
    margin-bottom: 2px;
}

.partner-info-box h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.partner-info-box p {
    color: #94a3b8;
    font-size: 0.85rem;
}

.credentials-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cred-bullet {
    width: 20px;
    height: 20px;
    background: var(--gold-subtle);
    color: var(--gold-antique);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.cred-detail strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
}

.cred-detail span {
    font-size: 0.78rem;
    color: #cbd5e1;
}

.hero-card-bottom {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.office-tag {
    font-size: 0.8rem;
    color: #94a3b8;
}

.office-tag strong {
    color: #ffffff;
    display: block;
}

.direct-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-antique);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
}

.direct-call-btn:hover {
    background: var(--gold-hover);
}

/* ==========================================================================
   Tri-Pillar Strip: SOLUTIONS | TRUST | GROWTH
   ========================================================================== */
.motto-strip {
    background: #ffffff;
    box-shadow: var(--shadow-subtle);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-hairline);
}

.motto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.motto-card {
    padding: 32px 30px;
    border-right: 1px solid var(--border-light);
}

.motto-card:last-child {
    border-right: none;
}

.motto-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.motto-num {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.motto-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--gold-subtle);
    color: var(--gold-antique);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.motto-content h4 {
    font-size: 1.25rem;
    color: var(--navy-deep);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.motto-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Services Grid & Sliding Carousel
   ========================================================================== */
.services-section {
    padding: 85px 0;
}

/* Services Carousel Header with Arrows */
.services-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 24px;
}

.services-carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.carousel-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border-hairline);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-hairline);
    transition: var(--transition);
}

.carousel-arrow-btn:hover {
    background: var(--navy-main);
    border-color: var(--navy-main);
    color: var(--gold-antique);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

/* Carousel Viewport & Track */
.services-slider-viewport {
    overflow: hidden;
    position: relative;
    padding: 10px 4px;
    margin: -10px -4px;
}

.services-slider-track {
    display: flex;
    gap: 28px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.service-slide-card {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 0;
    display: flex;
}

.service-slide-card .service-card {
    width: 100%;
}

/* Carousel Pagination Dots */
.services-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

.services-slider-dot {
    width: 24px;
    height: 4px;
    background: var(--border-light);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-slider-dot.active {
    background: var(--gold-antique);
    width: 40px;
}

/* Responsive Grid Fallbacks */
.services-grid, .services-master-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card, .master-service-card {
    background: #ffffff;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hairline);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover, .master-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--gold-border);
}

.service-card-img-wrap, .master-card-media {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--navy-darkest);
}

.service-card-img, .master-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img,
.master-service-card:hover .master-img {
    transform: scale(1.04);
}

.service-badge, .master-card-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(7, 23, 47, 0.9);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card-body, .master-card-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon, .master-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gold-subtle);
    color: var(--gold-antique);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.service-title, .master-title {
    font-size: 1.3rem;
    color: var(--navy-deep);
    margin-bottom: 10px;
}

.service-desc, .master-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-features-list, .master-checklist {
    margin-bottom: 22px;
    flex-grow: 1;
}

.service-features-list li, .master-checklist li {
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.service-features-list i, .master-checklist i {
    color: var(--gold-antique);
    font-size: 0.8rem;
}

.service-link, .btn-read-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-main);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: auto;
}

.service-link:hover, .btn-read-service:hover {
    color: var(--gold-antique);
    gap: 12px;
}

/* ==========================================================================
   Page Banner & Breadcrumbs
   ========================================================================== */
.page-banner {
    background: linear-gradient(145deg, var(--navy-darkest) 0%, var(--navy-deep) 70%, var(--navy-surface) 100%);
    color: #ffffff;
    padding: 60px 0 65px;
    border-bottom: 2px solid var(--gold-antique);
}

.service-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.page-banner-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-banner-lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 760px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #94a3b8;
}

.breadcrumbs a {
    color: #cbd5e1;
}

.breadcrumbs a:hover {
    color: var(--gold-light);
}

.breadcrumbs .current {
    color: var(--gold-antique);
    font-weight: 600;
}

/* ==========================================================================
   Service Detail 2-Column Editorial Layout & Sticky Sidebar
   ========================================================================== */
.service-detail-section {
    padding: 70px 0 90px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-feature-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-hairline);
}

.service-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.media-stat-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.stat-pill {
    background: rgba(7, 23, 47, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-border);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: #ffffff;
}

.stat-pill strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-light);
}

.stat-pill span {
    font-size: 0.76rem;
    color: #cbd5e1;
}

.article-lead-box {
    background: #ffffff;
    border-left: 4px solid var(--gold-antique);
    padding: 22px 26px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-hairline);
    margin-bottom: 34px;
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.lead-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--navy-deep);
}

.article-heading {
    font-size: 1.8rem;
    color: var(--navy-deep);
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.practice-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0 36px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-hairline);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-subtle);
    color: var(--gold-antique);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pillar-body h3 {
    font-size: 1.2rem;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.pillar-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.pillar-checklist li {
    font-size: 0.86rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.pillar-checklist i {
    color: var(--gold-antique);
    margin-top: 4px;
}

/* Process Steps */
.process-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0 40px;
}

.process-step-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-antique);
    background: var(--gold-subtle);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-details h4 {
    font-size: 1.05rem;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.step-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(145deg, var(--navy-darkest) 0%, var(--navy-surface) 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 34px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.cta-box-text h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.cta-box-text p {
    color: #cbd5e1;
    font-size: 0.92rem;
}

.cta-box-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   Sticky Sidebar Component
   ========================================================================== */
.service-sidebar-col {
    position: sticky;
    top: 104px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-hairline);
}

.sidebar-widget-title {
    font-size: 1.15rem;
    color: var(--navy-deep);
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--gold-antique);
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-nav li {
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--navy-deep);
    border: 1px solid transparent;
}

.nav-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    font-size: 1rem;
    color: var(--navy-surface);
    width: 20px;
}

.nav-title-wrap {
    display: flex;
    flex-direction: column;
}

.nav-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.3;
}

.nav-badge {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.nav-arrow {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.sidebar-nav-link:hover {
    background: #f8fafc;
    border-color: var(--border-light);
}

.sidebar-nav-link:hover .nav-arrow {
    transform: translateX(3px);
    color: var(--gold-antique);
}

/* Current Service Highlight State */
.sidebar-nav li.current-service {
    background: var(--navy-main);
    border-radius: var(--radius-sm);
}

.sidebar-nav li.current-service .sidebar-nav-link {
    color: #ffffff;
}

.sidebar-nav li.current-service .nav-icon {
    color: var(--gold-antique);
}

.sidebar-nav li.current-service .nav-name {
    color: #ffffff;
}

.sidebar-nav li.current-service .nav-badge {
    color: var(--gold-light);
}

.sidebar-nav li.current-service .nav-arrow {
    color: var(--gold-antique);
    transform: translateX(2px);
}

/* Partner Desk Widget */
.partner-desk-widget {
    background: #ffffff;
    border: 1px solid var(--border-hairline);
}

.partner-badge-top {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold-antique);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.partner-avatar-small {
    width: 44px;
    height: 44px;
    background: var(--navy-main);
    color: var(--gold-antique);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.partner-title {
    font-size: 1.05rem;
    color: var(--navy-deep);
}

.partner-subtitle {
    font-size: 0.78rem;
    color: var(--gold-antique);
    font-weight: 600;
}

.partner-credentials-compact {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.partner-credentials-compact span {
    display: block;
}

.partner-direct-text {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 14px;
}

.partner-contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.partner-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--navy-main);
    font-weight: 600;
}

.partner-link-item i {
    color: var(--gold-antique);
    width: 16px;
}

.partner-link-item:hover {
    color: var(--gold-antique);
}

.btn-sidebar-whatsapp {
    width: 100%;
    background: var(--whatsapp-green);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 10px;
    border-radius: var(--radius-sm);
}

.btn-sidebar-whatsapp:hover {
    background: var(--whatsapp-green-dark);
    color: #ffffff;
}

/* Office Widget */
.sidebar-subheading {
    font-size: 0.95rem;
    color: var(--navy-deep);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-subheading i {
    color: var(--gold-antique);
}

.office-address {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.office-hours strong {
    font-size: 0.8rem;
    color: var(--navy-deep);
}

.office-hours p {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-sidebar-schedule {
    width: 100%;
    background: var(--navy-main);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-top: 14px;
}

.btn-sidebar-schedule:hover {
    background: var(--gold-antique);
    color: #ffffff;
}

/* ==========================================================================
   Leadership & About Feature
   ========================================================================== */
.leadership-section {
    background: #ffffff;
    padding: 85px 0;
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.visiting-card-display {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border-hairline);
}

.visiting-card-caption {
    background: var(--navy-darkest);
    color: #cbd5e1;
    padding: 12px 18px;
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visiting-card-caption strong {
    color: var(--gold-light);
}

.leader-bio h3 {
    font-size: 2.1rem;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.leader-designation {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-antique);
    margin-bottom: 14px;
}

.qualifications-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.qual-badge {
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    color: var(--navy-deep);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.leader-quote {
    background: #f8fafc;
    border-left: 3px solid var(--gold-antique);
    padding: 16px 20px;
    font-style: italic;
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.leader-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.highlight-box i {
    color: var(--gold-antique);
    font-size: 1.1rem;
    margin-top: 3px;
}

.highlight-box h5 {
    font-size: 0.92rem;
    color: var(--navy-deep);
    margin-bottom: 2px;
}

.highlight-box p {
    font-size: 0.8rem;
    color: var(--charcoal-muted);
}

/* ==========================================================================
   Client Testimonials & Corporate Endorsements
   ========================================================================== */
.testimonials-section {
    background: #ffffff;
    padding: 85px 0;
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #fbfcfd;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-hairline);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--gold-border);
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.testimonial-stars {
    color: var(--gold-antique);
    font-size: 0.82rem;
    display: flex;
    gap: 3px;
}

.testimonial-service-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--navy-main);
    background: var(--gold-subtle);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-border);
}

.testimonial-quote {
    font-family: var(--font-sans);
    font-size: 0.94rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--navy-main);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
    border: 1px solid var(--gold-border);
}

.testimonial-author-info h4 {
    font-size: 0.98rem;
    color: var(--navy-deep);
    margin-bottom: 2px;
}

.testimonial-author-info .author-role {
    display: block;
    font-size: 0.76rem;
    color: var(--gold-antique);
    font-weight: 600;
}

.testimonial-author-info .author-company {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.testimonials-trust-bar {
    margin-top: 50px;
    padding: 24px 30px;
    background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--gold-border);
    color: #ffffff;
}

.trust-metric-item {
    text-align: center;
    flex: 1;
}

.trust-metric-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold-light);
}

.trust-metric-item span {
    font-size: 0.78rem;
    color: #cbd5e1;
}

.trust-metric-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Consultation Banner / CTA Strip
   ========================================================================== */
.cta-banner-section {
    background: linear-gradient(145deg, var(--navy-darkest) 0%, var(--navy-deep) 100%);
    color: #ffffff;
    padding: 65px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-banner-content h2 {
    color: #ffffff;
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.cta-banner-content p {
    color: #cbd5e1;
    font-size: 1.02rem;
    max-width: 620px;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
    padding: 75px 0;
}

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

.contact-info-panel {
    background: var(--navy-deep);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-panel h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-info-panel > p {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-subtle);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    color: #ffffff;
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.contact-detail-text p, 
.contact-detail-text a {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.4;
}

.contact-detail-text a:hover {
    color: var(--gold-light);
}

.contact-form-panel {
    background: #ffffff;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-hairline);
}

.contact-form-panel h3 {
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.contact-form-panel p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

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

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-body);
    background: #ffffff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--navy-main);
    box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
}

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

.alert-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--navy-darkest);
    color: #94a3b8;
    padding-top: 65px;
    border-top: 2px solid var(--gold-antique);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.85fr 0.85fr 1.1fr;
    gap: 40px;
    padding-bottom: 55px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-brand-text h3 {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.1;
}

.footer-brand-text span {
    font-size: 0.72rem;
    color: var(--gold-antique);
    font-weight: 600;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 16px;
}

.motto-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-antique);
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.footer-partner-brief {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-partner-brief i {
    font-size: 1.4rem;
    color: var(--gold-antique);
}

.footer-partner-brief strong {
    display: block;
    color: #ffffff;
    font-size: 0.86rem;
}

.footer-partner-brief small {
    color: #94a3b8;
    font-size: 0.72rem;
    line-height: 1.2;
    display: block;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold-antique);
}

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

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--gold-antique);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-contact-list i {
    color: var(--gold-antique);
    margin-top: 4px;
}

.footer-contact-list a {
    color: #cbd5e1;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.contact-hint {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-antique);
}

.footer-bottom {
    background: #020812;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-tags {
    color: #94a3b8;
    font-size: 0.78rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp-green);
    color: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 18px rgba(31, 170, 84, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background: var(--whatsapp-green-dark);
    transform: scale(1.06);
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: var(--navy-darkest);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-subtle);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-main);
    box-shadow: var(--shadow-hairline);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--navy-main);
    color: #ffffff;
}

/* ==========================================================================
   Mobile Drawer & Drawer Sub-links
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1200;
    box-shadow: var(--shadow-elevated);
    overflow-y: auto;
    padding: 24px 20px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 23, 47, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.drawer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-logo {
    height: 40px;
    width: auto;
}

.drawer-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-deep);
    display: block;
}

.drawer-sub {
    font-size: 0.72rem;
    color: var(--navy-surface);
}

.drawer-close-btn {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    color: var(--navy-deep);
    cursor: pointer;
}

.drawer-nav {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--navy-deep);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
}

.drawer-nav-link i {
    color: var(--gold-antique);
    width: 18px;
}

.drawer-nav-link:hover, .drawer-nav-link.active {
    background: #f8fafc;
    color: var(--gold-antique);
}

.drawer-submenu-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--gold-antique);
    padding: 10px 12px 4px;
}

.drawer-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 8px 24px;
    font-size: 0.84rem;
    color: var(--text-body);
}

.drawer-sub-link i {
    font-size: 0.75rem;
    color: var(--navy-surface);
    width: 16px;
}

.drawer-sub-link:hover {
    color: var(--gold-antique);
}

.drawer-partner-box {
    margin-top: 20px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 14px;
    border-radius: var(--radius-sm);
}

.partner-badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-antique);
}

.partner-name {
    font-size: 1rem;
    color: var(--navy-deep);
}

.partner-creds {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 4px;
}

.drawer-footer-contact {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.drawer-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.drawer-footer-contact i {
    color: var(--gold-antique);
    margin-top: 3px;
}

.btn-whatsapp-drawer {
    width: 100%;
    background: var(--whatsapp-green);
    color: #ffffff;
    margin-top: 8px;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar-col {
        position: static;
        margin-top: 40px;
    }
    .services-grid, .services-master-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-slide-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    .article-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
    .desktop-nav {
        display: none;
    }
    .btn-header-cta {
        display: none;
    }
    .menu-toggle-btn {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-slider-wrap {
        min-height: 480px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .motto-grid {
        grid-template-columns: 1fr;
    }
    .motto-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .motto-card:last-child {
        border-bottom: none;
    }
    .services-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .service-slide-card {
        flex: 0 0 100%;
    }
    .services-grid, .services-master-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-trust-bar {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .trust-metric-sep {
        display: none;
    }
    .cta-banner-grid {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    .cta-banner-actions .btn {
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .leader-highlights {
        grid-template-columns: 1fr;
    }
}
