:root {

    /* ===== Brand Core Colors ===== */
    --color-primary: #0a1a2b;        /* Deep Corporate Blue */
    --color-secondary: #1f2f44;      /* Charcoal Blue */
    --color-accent: #3a6ea5;         /* Muted Steel Blue (CTA / highlights) */

    /* ===== Neutral Palette ===== */
    --color-white: #ffffff;
    --color-light: #f5f7fa;
    --color-gray: #cfd6df;
    --color-muted: #8b96a5;
    --color-dark: #111827;
    --color-black: #000000;

    /* ===== Text Colors ===== */
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-light: #94a3b8;
    --text-inverse: #ffffff;

    /* ===== Background Colors ===== */
    --bg-body: #ffffff;
    --bg-section: #f8fafc;
    --bg-dark: #0a1a2b;
    --bg-overlay: rgba(10, 26, 43, 0.75);

    /* ===== Borders ===== */
    --border-light: #e5e7eb;
    --border-muted: #d1d5db;

    /* ===== Shadows (Very Subtle) ===== */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);

    /* ===== Typography ===== */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --font-size-base: 16px;
    --line-height-base: 1.75;

    /* ===== Spacing Scale ===== */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;

    /* ===== Transitions ===== */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;
}

/* ================= Header ================= */
/* ================= Header ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

/* DEFAULT: Transparent header */
.site-header .navbar {
    background-color: transparent;
    /*padding: 28px 0;*/
    transition: background-color var(--transition-base),
                padding var(--transition-base);
}

/* Logo default */
.navbar-brand img {
    /*height: 150px;*/
    width: 300px;
    object-fit: contain;
    transition: height var(--transition-base),
                width var(--transition-base);
}

/* ================= ON SCROLL ================= */

.site-header.scrolled .navbar {
    background-color: var(--bg-dark); /* bg appears */
    padding: 14px 0;
}

.site-header.scrolled .navbar-brand img {
   
    width: 200px;
}

/* ================= Nav Links ================= */
.navbar-nav{
    gap: 25px;
}
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    padding: 8px 14px;
    transition: color var(--transition-fast);
}

.site-header.scrolled .navbar-nav .nav-link {
    color: var(--color-gray);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-white);
}
.navbar-collapse{
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    align-self: start;
}
/* ================= Dropdown ================= */

.dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 0;
    background-color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
}
.dropdown-menu .dropdown-item{
    color: var(--color-white);
}
.dropdown-item:focus, .dropdown-item:hover{
    color: var(--color-body);
}
/* ================= CTA ================= */

.header-cta {
    border-color: var(--color-white);
    color: var(--color-white);
}

/* ================= Mobile ================= */


@media (max-width: 991px) {

    .navbar-collapse {
        background-color: var(--bg-dark);
        padding: var(--space-md);
    }

    .navbar-brand img {
        height: 82px;
        width: auto;
    }
 
    .site-header.scrolled .navbar-brand img {
        height: 70px;
    }
}

/* ================= Footer ================= */

.site-footer {
    background-color: var(--bg-dark);
    color: var(--color-gray);
    padding: var(--space-xl) 0 var(--space-md);
    font-size: 14px;
}

/* Titles */
.footer-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

/* Text */
.footer-text {
    color: var(--color-gray);
    line-height: var(--line-height-base);
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

/* Contact */
.footer-contact i {
    margin-right: 8px;
    color: var(--color-muted);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-muted);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    font-size: 13px;
}

.footer-policy {
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-policy:hover {
    color: var(--color-white);
}

/* Mobile */
@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }
    .hero-content{
    top: 25% !important;
    
}
}
/* ================= Hero Section (Video) ================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark); /* fallback */
    color: var(--text-inverse);
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(10 26 43 / 16%);
    z-index: 2;
    pointer-events: none; /* 🔥 IMPORTANT */
}

/* Content */
.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content{
    top: 55%;
    position: absolute;
}
/* Text */
.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: var(--space-sm);
}
.hero-actions {
    position: relative;
    z-index: 5;
}
.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
}

/* Primary */
.btn-primary-custom {
    background-color: var(--color-accent) !important;
    color: #fff !important;
    border: 1px solid var(--color-accent);
}

/* Outline */
.btn-outline-custom {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #fff;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.hero-text {
    max-width: 560px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

/* Mobile Optimisation */
@media (max-width: 767px) {
    .hero-video {
        /*display: none;  */
    }

    .hero-section {
        background: var(--bg-dark);
    }

    .hero-actions a {
        display: block;
        margin-bottom: var(--space-sm);
    }
}
/* ================= About Section ================= */

.about-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Common Section Styles */
.section-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.section-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-sm);
}

/* Visual */
.about-visual {
    position: relative;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 767px) {
    .about-section {
        padding: var(--space-lg) 0;
    }
}
/* ================= Why HOA Section ================= */

.why-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Cards */
.why-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    height: 100%;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Icons */
.why-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 18px;
}

/* Text */
.why-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.why-text {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Mobile */
@media (max-width: 767px) {
    .why-section {
        padding: var(--space-lg) 0;
    }
}
/* ================= Services Section ================= */

.services-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Card */
.service-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    height: 100%;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Text */
.service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.service-text {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

/* Link */
.service-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: var(--color-secondary);
}

/* Mobile */
@media (max-width: 767px) {
    .services-section {
        padding: var(--space-lg) 0;
    }
}
/* ================= Industries Section ================= */

.industries-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Industry Item */
.industry-item {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading);
    transition: all var(--transition-fast);
}

.industry-item:hover {
    background-color: var(--bg-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}
/* ================= Insights Section ================= */

.insights-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Card */
.insight-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    height: 100%;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Tag */
.insight-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Text */
.insight-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.insight-text {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

/* Link */
.insight-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: none;
}

.insight-link:hover {
    color: var(--color-secondary);
}
/* ================= Final CTA Section ================= */

.cta-section {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.cta-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

/* Buttons */
.cta-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
}

/* Mobile */
@media (max-width: 767px) {
    .cta-actions .btn {
        width: 100%;
    }
}
/* ================= About Hero Section ================= */

.about-hero-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background Image */
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Content */
.about-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Text */
.about-hero-title {
      border-right: 2px solid orange;
        text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.about-hero-text {
    max-width: 720px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Height utility */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .about-hero-text {
        max-width: 100%;
    }
}
.about-content{
   position: absolute;
    /* top: 20%; */
    right: 0;
    bottom: 10%;
  
}
/* ================= Who We Are Section ================= */

.who-we-are-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Highlight Box */
.who-highlight {
    background-color: var(--bg-section);
    padding: var(--space-lg);
    border-left: 3px solid var(--color-accent);
}

.highlight-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.highlight-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Mobile */
@media (max-width: 767px) {
    .who-we-are-section {
        padding: var(--space-lg) 0;
    }
}
/* ================= Mission Vision Values ================= */

.mvv-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Card */
.mvv-card {
    position: relative;
    background-color: var(--color-white);
    padding: var(--space-lg);
    height: 100%;
    border: 1px solid var(--border-light);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
    overflow: hidden;
}

/* Left accent line */
.mvv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: height var(--transition-base);
}

/* Hover */
.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mvv-card:hover::before {
    height: 100%;
}

/* Title */
.mvv-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.mvv-card:hover .mvv-title {
    color: var(--color-accent);
}

/* Text */
.mvv-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Values List */
.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-list li {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    transition: transform var(--transition-fast),
                color var(--transition-fast);
}

.mvv-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.mvv-list li:hover {
    transform: translateX(6px);
    color: var(--color-accent);
}

/* Mobile */
@media (max-width: 767px) {
    .mvv-section {
        padding: var(--space-lg) 0;
    }
}
/* ================= Our Team ================= */

.team-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Card */
.team-card {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

/* Image */
.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition:
        transform var(--transition-base),
        filter var(--transition-base);
}

/* Hover image effect */
.team-card:hover .team-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Info */
.team-info {
    padding: var(--space-md);
    text-align: center;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.team-role {
    font-size: 13px;
    color: var(--text-body);
}

/* Hover lift */
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-card:hover .team-name {
    color: var(--color-accent);
}

/* Mobile */
@media (max-width: 767px) {
    .team-img img {
        height: 260px;
    }
}
/* ================= About CTA Section ================= */

.about-cta-section {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Soft background accent */
.about-cta-section::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    background-color: var(--color-accent);
    opacity: 0.08;
    border-radius: 50%;
}

/* Text */
.about-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.about-cta-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 720px;
    margin: 0 auto var(--space-lg);
}

/* Buttons hover polish */
.about-cta-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.about-cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .about-cta-actions .btn {
        width: 100%;
    }
}
/* ================= Corporate Advisory – Hero ================= */

.svc-corp-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-corp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-corp-hero:hover .svc-corp-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-corp-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Content */
.svc-corp-hero .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-corp-title {
        text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    position: absolute;
    right: 0;
    bottom: 10%;
    border-right: 4px solid orange;
}

.svc-corp-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

.svc-corp-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Height */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-corp-text {
        max-width: 100%;
    }
}
/* ================= Corporate Advisory – Scope ================= */

.svc-corp-scope {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Headings */
.svc-corp-scope-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-corp-scope-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-corp-scope-intro {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Cards */
.svc-corp-scope-card {
    height: 100%;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Accent line */
.svc-corp-scope-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: height var(--transition-base);
}

/* Hover */
.svc-corp-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.svc-corp-scope-card:hover::before {
    height: 100%;
}

/* Text */
.svc-corp-scope-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.svc-corp-scope-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

.svc-corp-scope-card:hover h5 {
    color: var(--color-accent);
}
/* ================= Corporate Advisory – Approach ================= */

.svc-corp-approach {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Headings */
.svc-corp-approach-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-corp-approach-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-corp-approach-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

/* Steps */
.svc-corp-approach-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-corp-approach-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-corp-approach-steps li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 14px;
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
}

/* Hover micro effect */
.svc-corp-approach-steps li:hover {
    transform: translateX(6px);
}

/* Image */
.svc-corp-approach-visual {
    overflow: hidden;
}

.svc-corp-approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-corp-approach-visual:hover img {
    transform: scale(1.05);
}
/* ================= Corporate Advisory – CTA ================= */

.svc-corp-cta {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    color: var(--color-white);
}

/* Background */
.svc-corp-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-corp-cta:hover .svc-corp-cta-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-corp-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-corp-cta .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-corp-cta-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-corp-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.svc-corp-cta-text {
    max-width: 780px;
    margin: 0 auto var(--space-lg);
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Buttons micro-lift */
.svc-corp-cta-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-corp-cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-corp-cta-actions .btn {
        width: 100%;
    }
}
/* ================= Company Formation – Hero ================= */

.svc-formation-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-formation-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-formation-hero:hover .svc-formation-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-formation-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Content */
.svc-formation-hero .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-formation-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-formation-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
        position: absolute;
    right: 0;
    bottom: 10%;
    border-right: 4px solid orange;
}

.svc-formation-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Height utility */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-formation-text {
        max-width: 100%;
    }
}
/* ================= Company Formation – Scope ================= */

.svc-formation-scope {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Headings */
.svc-formation-scope-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-formation-scope-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-formation-scope-intro {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Cards */
.svc-formation-scope-card {
    position: relative;
    height: 100%;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-base),
                box-shadow var(--transition-base);
    overflow: hidden;
}

/* Accent line */
.svc-formation-scope-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: height var(--transition-base);
}

/* Hover */
.svc-formation-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.svc-formation-scope-card:hover::before {
    height: 100%;
}

/* Text */
.svc-formation-scope-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.svc-formation-scope-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

.svc-formation-scope-card:hover h5 {
    color: var(--color-accent);
}
/* ================= Company Formation – Approach ================= */

.svc-formation-approach {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Headings */
.svc-formation-approach-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-formation-approach-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-formation-approach-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

/* Steps */
.svc-formation-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-formation-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-formation-steps li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 14px;
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
}

/* Hover micro-effect */
.svc-formation-steps li:hover {
    transform: translateX(6px);
}

/* Visual */
.svc-formation-approach-visual {
    overflow: hidden;
}

.svc-formation-approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-formation-approach-visual:hover img {
    transform: scale(1.05);
}
/* ================= Company Formation – CTA ================= */

.svc-formation-cta {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    color: var(--color-white);
}

/* Background */
.svc-formation-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-formation-cta:hover .svc-formation-cta-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-formation-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-formation-cta .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-formation-cta-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-formation-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.svc-formation-cta-text {
    max-width: 780px;
    margin: 0 auto var(--space-lg);
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Buttons */
.svc-formation-cta-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-formation-cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-formation-cta-actions .btn {
        width: 100%;
    }
}
/* ================= Regulatory & Compliance – Hero ================= */

.svc-compliance-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-compliance-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-compliance-hero:hover .svc-compliance-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-compliance-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-compliance-hero .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-compliance-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-compliance-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    position: absolute;
    right: 0;
    bottom: 10%;
    border-right: 4px solid orange;
}

.svc-compliance-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Height utility */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-compliance-text {
        max-width: 100%;
    }
}
/* ================= Regulatory & Compliance – Scope ================= */

.svc-compliance-scope {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Headings */
.svc-compliance-scope-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-compliance-scope-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-compliance-scope-intro {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Cards */
.svc-compliance-scope-card {
    position: relative;
    height: 100%;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-base),
                box-shadow var(--transition-base);
    overflow: hidden;
}

/* Accent line */
.svc-compliance-scope-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: height var(--transition-base);
}

/* Hover */
.svc-compliance-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.svc-compliance-scope-card:hover::before {
    height: 100%;
}

/* Text */
.svc-compliance-scope-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.svc-compliance-scope-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

.svc-compliance-scope-card:hover h5 {
    color: var(--color-accent);
}
/* ================= Regulatory & Compliance – Approach ================= */

.svc-compliance-approach {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Headings */
.svc-compliance-approach-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-compliance-approach-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-compliance-approach-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

/* Steps */
.svc-compliance-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-compliance-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-compliance-steps li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 14px;
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
}

/* Hover micro-effect */
.svc-compliance-steps li:hover {
    transform: translateX(6px);
}

/* Visual */
.svc-compliance-approach-visual {
    overflow: hidden;
}

.svc-compliance-approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-compliance-approach-visual:hover img {
    transform: scale(1.05);
}
/* ================= Regulatory & Compliance – CTA ================= */

.svc-compliance-cta {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    color: var(--color-white);
}

/* Background */
.svc-compliance-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-compliance-cta:hover .svc-compliance-cta-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-compliance-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-compliance-cta .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-compliance-cta-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-compliance-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.svc-compliance-cta-text {
    max-width: 780px;
    margin: 0 auto var(--space-lg);
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Buttons */
.svc-compliance-cta-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-compliance-cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-compliance-cta-actions .btn {
        width: 100%;
    }
}
/* ================= Contracts & Documentation – Hero ================= */

.svc-contracts-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-contracts-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-contracts-hero:hover .svc-contracts-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-contracts-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-contracts-hero .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-contracts-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-contracts-title {
    position: absolute;
    right: 0;
    bottom: 10%;
    border-right: 4px solid orange;

    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.svc-contracts-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Height utility */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-contracts-text {
        max-width: 100%;
    }
}
/* ================= Contracts & Documentation – Scope ================= */

.svc-contracts-scope {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Headings */
.svc-contracts-scope-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-contracts-scope-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-contracts-scope-intro {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Cards */
.svc-contracts-scope-card {
    position: relative;
    height: 100%;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-base),
                box-shadow var(--transition-base);
    overflow: hidden;
}

/* Accent line */
.svc-contracts-scope-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: height var(--transition-base);
}

/* Hover */
.svc-contracts-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.svc-contracts-scope-card:hover::before {
    height: 100%;
}

/* Text */
.svc-contracts-scope-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.svc-contracts-scope-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

.svc-contracts-scope-card:hover h5 {
    color: var(--color-accent);
}
/* ================= Contracts – Methodology ================= */

.svc-contracts-method {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

.svc-contracts-method-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.svc-contracts-method-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    margin: var(--space-sm) 0 var(--space-md);
}

.svc-contracts-method-intro {
    font-size: 15px;
    color: var(--text-body);
    max-width: 520px;
}

/* Timeline wrapper */
.svc-contracts-timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 40px;
}

.svc-contracts-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--border-light);
}

/* Step */
.svc-contracts-step {
    position: relative;
    margin-bottom: 40px;
}

.step-dot {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    transition: transform var(--transition-fast),
                background-color var(--transition-fast);
}

.svc-contracts-step:hover .step-dot {
    transform: scale(1.2);
    background-color: var(--color-accent);
}

/* Content */
.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-body);
    max-width: 520px;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-contracts-timeline {
        padding-left: 30px;
    }
}
/* Side image */
.svc-contracts-method-image {
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.svc-contracts-method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: transform var(--transition-base);
}

/* Subtle hover zoom */
.svc-contracts-method-image:hover img {
    transform: scale(1.04);
}

/* Mobile */
@media (max-width: 991px) {
    .svc-contracts-method-image {
        position: relative;
        top: 0;
    }
}
/* ================= Contracts – Final CTA ================= */

.svc-contracts-final {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

/* Text */
.svc-contracts-final-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-contracts-final-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.svc-contracts-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

/* Points */
.svc-contracts-final-points {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.svc-contracts-final-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
}

.svc-contracts-final-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Buttons */
.svc-contracts-final-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-contracts-final-actions .btn:hover {
    transform: translateY(-2px);
}

/* Right box */
.svc-contracts-final-box {
    background-color: rgba(255,255,255,0.05);
    padding: var(--space-lg);
    border-left: 4px solid var(--color-accent);
}

.svc-contracts-final-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.svc-contracts-final-box p {
    font-size: 14px;
    color: var(--color-gray);
}

/* ================= Ongoing Corporate Support – Hero ================= */

.svc-support-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-support-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle hover zoom */
.svc-support-hero:hover .svc-support-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-support-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-support-hero .container {
    position: relative;
    z-index: 3;
}

/* Text */
.svc-support-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-support-title {
    position: absolute;
    right: 0;
    bottom: 10%;
    border-right: 4px solid orange;
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.svc-support-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Height utility */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-support-text {
        max-width: 100%;
    }
}
/* ================= Ongoing Corporate Support – Scope ================= */

.svc-support-scope {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Headings */
.svc-support-scope-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.svc-support-scope-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-heading);
}

.svc-support-scope-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

/* Checklist */
.svc-support-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-support-checklist li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-support-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
}

.svc-support-checklist li:hover {
    transform: translateX(6px);
}

/* Visual */
.svc-support-scope-visual {
    overflow: hidden;
}

.svc-support-scope-visual img {
    width: 100%; 
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-support-scope-visual:hover img {
    transform: scale(1.05);
}
/* ================= Ongoing Corporate Support – Retainer ================= */

.svc-support-retainer {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Text */
.svc-support-retainer-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-support-retainer-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-heading);
}

.svc-support-retainer-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

/* Steps */
.svc-support-retainer-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.retainer-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform var(--transition-fast);
}

.retainer-step span {
    width: 34px;
    height: 34px;
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.retainer-step h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.retainer-step p {
    font-size: 14px;
    color: var(--text-body);
}

.retainer-step:hover {
    transform: translateX(6px);
}

/* Visual */
.svc-support-retainer-visual {
    overflow: hidden;
}

.svc-support-retainer-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-support-retainer-visual:hover img {
    transform: scale(1.05);
}
/* ================= Ongoing Corporate Support – Final CTA ================= */

.svc-support-final {
    position: relative;
    padding: var(--space-xl) 0;
    background: #0a1a2b8a;
    color: var(--color-white);
    overflow: hidden;
}

/* Soft accent circle */
.svc-support-final::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 300px;
    height: 300px;
    background-color: var(--color-accent);
    opacity: 0.08;
    border-radius: 50%;
}

/* Text */
.svc-support-final-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-support-final-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.svc-support-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 640px;
    margin-bottom: var(--space-lg);
}

/* Points */
.svc-support-final-points {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}

.svc-support-final-points li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--color-gray);
}

.svc-support-final-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 600;
}

/* Buttons */
.svc-support-final-actions .btn {
    min-height: 48px;
    padding: 12px 30px;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.svc-support-final-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Visual */
.svc-support-final-visual {
    overflow: hidden;
}

.svc-support-final-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-support-final-visual:hover img {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 767px) {

    .svc-support-final-text {
        max-width: 100%;
    }

    .svc-support-final-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ================= Industries Hero Section ================= */

.industries-hero-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background Image */
.industries-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay */
.industries-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Content wrapper */
.industries-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Title */
.industries-hero-title {
    border-right: 2px solid orange;
    text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Absolute content position (same as about) */
.industries-hero-content {
    position: absolute;
    right: 0;
    bottom: 10%;
}

/* Height utility (page-scoped) */
.ind-min-vh-60 {
    min-height: 60vh;
}
/* ================= Industries Snapshot ================= */

.ind-snapshot-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Left */
.ind-snap-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: inline-block;
}

.ind-snap-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

/* Animated underline */
.ind-snap-title::after {
    content: "";
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: width 0.6s ease;
}

.ind-snapshot-section:hover .ind-snap-title::after {
    width: 80px;
}

.ind-snap-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Grid */
.ind-snap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.ind-snap-card {
    background-color: var(--color-white);
    padding: 26px;
    border: 1px solid var(--border-light);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Accent glow */
.ind-snap-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,165,0,0.12),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ind-snap-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ind-snap-card p {
    font-size: 14px;
    color: var(--text-body);
}

/* Hover magic */
.ind-snap-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.ind-snap-card:hover::before {
    opacity: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .ind-snap-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= Industries Grid ================= */

.ind-grid-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Heading */
.ind-grid-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.ind-grid-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
}

/* Card */
.ind-grid-card {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 2px;
}

/* Image */
.ind-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Overlay */
.ind-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 30, 0.65);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.5s ease;
}

.ind-grid-overlay h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Hover Effects */
.ind-grid-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.ind-grid-card:hover .ind-grid-overlay {
    background: rgba(8, 18, 30, 0.4);
}
/* ================= Industries CTA ================= */

.ind-cta-section {
    padding: var(--space-xl) 0;
    background: #0a1a2b8a;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Soft background accent */
.ind-cta-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    background-color: var(--color-accent);
    opacity: 0.08;
    border-radius: 50%;
}

/* Text */
.ind-cta-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: inline-block;
}

.ind-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.2;
}

.ind-cta-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    margin-bottom: 14px;
    max-width: 680px;
}

/* Buttons */
.ind-cta-actions .btn {
    min-height: 48px;
    padding: 12px 30px;
    transition: transform var(--transition-fast);
}

.ind-cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Visual */
.ind-cta-visual {
    position: relative;
    overflow: hidden;
}

.ind-cta-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 1s ease;
}

.ind-cta-visual:hover img {
    transform: scale(1.05);
}
.ind-snapshot-section,
.ind-grid-section,
.ind-cta-section {
    scroll-margin-top: 120px;
}

/* Headings tighten */
.ind-snap-title,
.ind-grid-title,
.ind-cta-title {
    letter-spacing: -0.02em;
}
.ind-grid-card {
    will-change: transform;
}
.btn {
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.ind-grid-card img,
.ind-cta-visual img {
    filter: grayscale(100%) contrast(1.05);
}
@media (max-width: 767px) {

    .ind-snap-title br {
        display: none;
    }

    .ind-grid-card {
        height: 260px;
    }

    .ind-cta-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Insights Hero ================= */

.ins-hero-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.ins-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.ins-hero-section:hover .ins-hero-bg {
    transform: scale(1.12);
}

/* Overlay */
.ins-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Container */
.ins-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Title */
.ins-hero-title {
    border-right: 2px solid orange;
    text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Absolute positioning (same as industries) */
.ins-hero-content {
    position: absolute;
    right: 0;
    bottom: 10%;
}

/* Height utility – scoped */
.ins-min-vh-60 {
    min-height: 60vh;
}
/* ================= Insight Streams ================= */

.ins-stream-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Left */
.ins-stream-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-accent);
}

.ins-stream-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin: 14px 0 28px;
}

/* Timeline */
.ins-stream-list {
    list-style: none;
    padding-left: 20px;
    border-left: 2px solid var(--border-light);
}

.ins-stream-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ins-stream-item small {
    font-size: 12px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.ins-stream-item h6 {
    font-size: 15px;
    font-weight: 600;
}

.ins-stream-item:hover {
    transform: translateX(6px);
}

.ins-stream-dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-light);
    border-radius: 50%;
    margin-top: 6px;
    transition: background-color 0.3s ease;
}

.ins-stream-item.active .ins-stream-dot,
.ins-stream-item:hover .ins-stream-dot {
    background-color: var(--color-accent);
}

/* Right Feature */
.ins-stream-feature {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.ins-stream-feature:hover {
    box-shadow: var(--shadow-md);
}

.ins-stream-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: filter 0.4s ease, transform 0.4s ease;
}

.ins-stream-feature:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.ins-stream-content {
    padding: 26px;
}

.ins-stream-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.ins-stream-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.ins-stream-content p {
    font-size: 15px;
    color: var(--text-body);
}

.ins-stream-link {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 12px;
}
/* ================= Insight Impact ================= */

.ins-impact-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
    overflow: hidden;
}

/* Left */
.ins-impact-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-accent);
}

.ins-impact-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin: 14px 0 30px;
}

/* Stats */
.ins-impact-stats {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.impact-stat h3 {
    font-size: 42px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.impact-stat p {
    font-size: 15px;
    color: var(--text-body);
}

/* Moving strips */
.ins-impact-stream {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.impact-strip {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: moveLeft 28s linear infinite;
}

.impact-strip.reverse {
    animation: moveRight 32s linear infinite;
}

.impact-strip span {
    padding: 10px 18px;
    border: 1px solid var(--border-light);
    background-color: var(--color-white);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.impact-strip span:hover {
    transform: translateY(-4px);
}

/* Animations */
@keyframes moveLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes moveRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Mobile */
@media (max-width: 767px) {
    .impact-strip {
        animation-duration: 18s;
    }
}
@media (max-width: 767px) {
    .ind-hero-content,
    .ins-hero-content {
        position: static;
        text-align: left;
        padding-top: 40px;
    }

    .ind-hero-title,
    .ins-hero-title {
        border-right: none;
        border-left: 3px solid var(--color-accent);
        padding-left: 14px;
        text-align: left;
    }
}
@media (max-width: 767px) {
    .ind-snap-grid,
    .ins-stream-section .row {
        grid-template-columns: 1fr;
    }

    .ins-stream-list {
        border-left: none;
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .ind-grid-card,
    .ins-card {
        height: auto;
    }

    .ins-card-img img {
        height: 200px;
    }
}
@media (max-width: 767px) {
    .impact-strip {
        animation-duration: 18s;
        gap: 18px;
    }

    .impact-strip span {
        font-size: 13px;
        padding: 8px 14px;
    }
}
@media (max-width: 767px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Insight to Action ================= */

.ins-action-section {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: white;
}

/* Visual */
.ins-action-visual {
    overflow: hidden;
}

.ins-action-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: transform 0.8s ease, filter 0.8s ease;
}

.ins-action-visual:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Text */
.ins-action-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: inline-block;
}

.ins-action-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: 18px;
}

.ins-action-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: white;
    margin-bottom: 14px;
    max-width: 620px;
}

/* Actions */
.ins-action-actions .btn {
    min-height: 48px;
    padding: 12px 30px;
    transition: transform var(--transition-fast);
}

.ins-action-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .ins-action-visual img {
        height: 260px;
    }

    .ins-action-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Our Team Hero ================= */

.team-hero-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.team-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.team-hero-section:hover .team-hero-bg {
    transform: scale(1.12);
}

/* Overlay */
.team-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Container */
.team-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Title */
.team-hero-title {
    border-right: 2px solid orange;
    text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Absolute positioning */
.team-hero-content {
    position: absolute;
    right: 0;
    bottom: 10%;
}

/* Height utility (scoped) */
.team-min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .team-hero-content {
        position: static;
        padding-top: 40px;
        text-align: left;
    }

    .team-hero-title {
        border-right: none;
        border-left: 3px solid var(--color-accent);
        padding-left: 14px;
        text-align: left;
    }
}
/* ================= Team Approach ================= */

.team-approach-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Sticky left */
.team-approach-sticky {
    position: sticky;
    top: 120px;
}

.team-approach-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.team-approach-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin: 14px 0 18px;
}

.team-approach-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: var(--line-height-base);
    margin-bottom: 12px;
    max-width: 420px;
}

/* Lanes */
.team-lanes {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.team-lane {
    background-color: var(--color-white);
    padding: 26px 28px;
    border-left: 4px solid var(--border-light);
    transition:
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.team-lane-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.team-lane h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 6px;
}

.team-lane p {
    font-size: 14px;
    color: var(--text-body);
}

/* Hover magic */
.team-lane:hover {
    transform: translateX(8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {

    .team-approach-sticky {
        position: static;
        margin-bottom: 30px;
    }

    .team-lane:hover {
        transform: none;
    }
}
/* ================= Team Profiles ================= */

.team-profiles-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Heading */
.team-prof-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-accent);
}

.team-prof-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
}

/* Profile */
.team-profile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.team-profile img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Info overlay */
.team-profile-info {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(8,18,30,0.85)
    );
    color: #fff;
    transition: transform 0.5s ease;
}

.team-profile-info h5,
.team-profile-info h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.team-profile-info span {
    font-size: 13px;
    color: var(--color-accent);
}

.team-profile-info p {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover */
.team-profile:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.team-profile:hover .team-profile-info p {
    opacity: 1;
}

/* Center Highlight */
.team-profile.center img {
    height: 420px;
}

.team-profile.center {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 767px) {

    .team-profile.center {
        transform: none;
    }

    .team-profile img {
        height: 300px;
    }
}
/* ================= Team Culture ================= */

.team-culture-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Left */
.team-culture-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.team-culture-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin: 14px 0 18px;
}

.team-culture-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: 14px;
    max-width: 520px;
}

/* Values grid */
.team-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.team-value {
    background-color: var(--color-white);
    padding: 24px;
    border-left: 3px solid var(--border-light);
    transition:
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.team-value h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.team-value p {
    font-size: 14px;
    color: var(--text-body);
}

/* Hover */
.team-value:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .team-values-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= Team Final CTA ================= */

.team-final-cta {
    padding: var(--space-xl) 0;
    background: #0a1a2b8a;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Soft accent circle */
.team-final-cta::after {
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 260px;
    height: 260px;
    background-color: var(--color-accent);
    opacity: 0.08;
    border-radius: 50%;
}

/* Text */
.team-final-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: inline-block;
}

.team-final-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.2;
}

.team-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 760px;
    margin: 0 auto 28px;
}

/* Buttons */
.team-final-actions .btn {
    min-height: 48px;
    padding: 12px 30px;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.team-final-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Mobile */
@media (max-width: 767px) {
    .team-final-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Services Master Hero ================= */

.svc-m-hero-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-m-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.svc-m-hero-section:hover .svc-m-hero-bg {
    transform: scale(1.12);
}

/* Overlay */
.svc-m-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Container */
.svc-m-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Title */
.svc-m-hero-title {
    border-right: 2px solid orange;
    text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Positioning */
.svc-m-hero-content {
    position: absolute;
    right: 0;
    bottom: 10%;
}

/* Height utility (scoped) */
.svc-m-min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {

    .svc-m-hero-content {
        position: static;
        padding-top: 40px;
        text-align: left;
    }

    .svc-m-hero-title {
        border-right: none;
        border-left: 3px solid orange;
        padding-left: 14px;
        text-align: left;
    }
}

/* ================= Services Architecture ================= */

.svc-m-arch-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Heading */
.svc-m-arch-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.svc-m-arch-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin: 12px 0;
}

.svc-m-arch-intro {
    font-size: 15px;
    color: var(--text-body);
    max-width: 760px;
    margin: 0 auto;
}

/* Lanes wrapper */
.svc-m-arch-lanes {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 40px;
}

/* Lane */
.svc-m-arch-lane {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 24px;
    padding: 28px 30px;
    background-color: var(--color-white);
    border-left: 4px solid var(--border-light);
    transition:
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

/* Left */
.svc-m-arch-left h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.svc-m-arch-left p {
    font-size: 14px;
    color: var(--text-body);
    line-height: var(--line-height-base);
}

/* Right tags */
.svc-m-arch-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: center;
}

.svc-m-arch-right span {
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-section);
}

/* Hover */
.svc-m-arch-lane:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-m-arch-lane {
        grid-template-columns: 1fr;
    }
}
/* ================= Services Master Showcase ================= */

.svc-m-showcase-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Heading */
.svc-m-showcase-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.svc-m-showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin: 12px 0;
}

.svc-m-showcase-intro {
    font-size: 15px;
    color: var(--text-body);
    max-width: 620px;
}

/* Featured */
.svc-m-featured {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding: 42px;
    background: linear-gradient(180deg, #0a1a2b, #081422);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base),
                box-shadow var(--transition-base);
}

.svc-m-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,165,0,0.12),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.svc-m-featured-content span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.svc-m-featured-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
}

.svc-m-featured-content p {
    font-size: 15px;
    color: var(--color-gray);
    max-width: 420px;
}

.svc-m-featured-cta {
    margin-top: 16px;
    font-weight: 500;
}

/* Hover */
.svc-m-featured:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.svc-m-featured:hover::after {
    opacity: 1;
}

/* Compact Grid */
.svc-m-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    height: 100%;
}

/* Compact Card */
.svc-m-compact {
    padding: 26px;
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: transform var(--transition-base),
                border-color var(--transition-base),
                box-shadow var(--transition-base);
}

.svc-m-compact h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-heading);
}

.svc-m-compact p {
    font-size: 14px;
    color: var(--text-body);
}

/* Hover */
.svc-m-compact:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {

    .svc-m-featured {
        padding: 32px;
    }

    .svc-m-compact-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= Services Trust Section ================= */

.svc-m-trust-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Left */
.svc-m-trust-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.svc-m-trust-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin: 14px 0 18px;
}

.svc-m-trust-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: var(--line-height-base);
    margin-bottom: 14px;
    max-width: 460px;
}

/* Points */
.svc-m-trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.svc-m-trust-point {
    padding: 26px;
    background-color: var(--bg-section);
    border-left: 3px solid var(--border-light);
    transition:
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.svc-m-trust-point h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.svc-m-trust-point p {
    font-size: 14px;
    color: var(--text-body);
}

/* Hover */
.svc-m-trust-point:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-m-trust-points {
        grid-template-columns: 1fr;
    }
}
/* ================= Services Final CTA ================= */

.svc-m-final-section {
    padding: var(--space-xl) 0;
    background: #0a1a2b8a;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Soft accent */
.svc-m-final-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    background-color: var(--color-accent);
    opacity: 0.08;
    border-radius: 50%;
}

/* Text */
.svc-m-final-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 10px;
}

.svc-m-final-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.2;
}

.svc-m-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 720px;
    margin-bottom: 26px;
}

/* Buttons */
.svc-m-final-actions .btn {
    min-height: 48px;
    padding: 12px 30px;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.svc-m-final-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Visual */
.svc-m-final-visual {
    overflow: hidden;
}

.svc-m-final-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.svc-m-final-visual:hover img {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-m-final-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Contact Hero ================= */

.cnt-hero-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.cnt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.cnt-hero-section:hover .cnt-hero-bg {
    transform: scale(1.12);
}

/* Overlay */
.cnt-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.65);
    z-index: 2;
}

/* Container */
.cnt-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Title */
.cnt-hero-title {
    border-right: 2px solid var(--color-accent);
    text-align: right;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Positioning */
.cnt-hero-content {
    position: absolute;
    right: 0;
    bottom: 10%;
}

/* Height utility */
.cnt-min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .cnt-hero-content {
        position: static;
        padding-top: 40px;
        text-align: left;
    }

    .cnt-hero-title {
        border-right: none;
        border-left: 3px solid var(--color-accent);
        padding-left: 14px;
        text-align: left;
    }
}
/* ================= Contact Experience ================= */

.cnt-exp-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(
        180deg,
        var(--bg-body),
        var(--bg-section)
    );
}

/* CONTACT RAIL */
.cnt-exp-rail {
    position: sticky;
    top: 120px;
    border-left: 3px solid var(--color-accent);
    padding-left: 26px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.cnt-exp-point span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.cnt-exp-point a,
.cnt-exp-point p {
    font-size: 15px;
    color: var(--text-heading);
    margin: 0;
    text-decoration: none;
}

/* FLOATING FORM */
.cnt-exp-form-wrap {
    background-color: var(--color-white);
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    position: relative;
}

.cnt-exp-form-wrap::before {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid var(--border-light);
    pointer-events: none;
}

.cnt-exp-form-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 26px;
}

/* FORM */
.cnt-exp-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cnt-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cnt-exp-form input,
.cnt-exp-form textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    font-size: 14px;
}

.cnt-exp-form input:focus,
.cnt-exp-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Button */
.cnt-exp-submit {
    align-self: flex-start;
    padding: 12px 34px;
}

/* Mobile */
@media (max-width: 767px) {

    .cnt-exp-rail {
        position: static;
        border-left: none;
        padding-left: 0;
    }

    .cnt-exp-grid {
        grid-template-columns: 1fr;
    }

    .cnt-exp-form-wrap {
        padding: 32px;
    }
}

/* Content polish for Contact Experience */

.cnt-exp-intro h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cnt-exp-intro p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: 26px;
}

.cnt-exp-form-text {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 22px;
    max-width: 520px;
}




/* ================= Contact Presence with Map ================= */

.cnt-maparch-section {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

/* Left */
.cnt-maparch-subtitle {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #92d4ff;
}

.cnt-maparch-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin: 14px 0 18px;
}

.cnt-maparch-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 420px;
    margin-bottom: 14px;
}

/* Spine */
.cnt-maparch-spine {
    width: 2px;
    background-color: rgba(255,255,255,0.15);
    height: 100%;
}

/* Map Wrapper */
.cnt-maparch-mapwrap {
    position: relative;
    height: 420px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
}

.cnt-maparch-mapwrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /*filter: grayscale(100%);*/
    transition: filter 0.6s ease;
}

.cnt-maparch-mapwrap:hover iframe {
    filter: grayscale(0%);
}

/* Facts */
.cnt-maparch-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 26px;
}

.cnt-maparch-fact span {
    font-size: 12px;
    text-transform: uppercase;
    color: #92d4ff;
}

.cnt-maparch-fact p {
    font-size: 14px;
    margin-top: 6px;
    color: var(--color-gray);
}

/* Mobile */
@media (max-width: 767px) {

    .cnt-maparch-mapwrap {
        height: 300px;
    }

    .cnt-maparch-facts {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cnt-maparch-text {
        max-width: 100%;
    }
}
/* ================= Maritime Law – Hero ================= */

.svc-mar-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-mar-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle zoom on hover */
.svc-mar-hero:hover .svc-mar-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-mar-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-mar-hero .container {
    position: relative;
    z-index: 3;
}

/* Title */
.svc-mar-title {
    position: absolute;
    right: 0;
    bottom: 10%;
    border-right: 4px solid var(--color-accent);
    padding-right: 14px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 600;
    color: var(--color-white);
}

/* Height utility */
.min-vh-60 {
    min-height: 60vh;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-mar-title {
        position: relative;
        right: auto;
        bottom: auto;
        border-right: none;
        border-left: 4px solid var(--color-accent);
        padding-left: 14px;
        font-size: 28px;
    }
}
/* ================= Maritime Law – Scope ================= */

.svc-mar-scope {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Headings */
.svc-mar-scope-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-mar-scope-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

.svc-mar-scope-intro {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    max-width: 760px;
    margin: 0 auto;
}

/* Cards */
.svc-mar-scope-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    height: 100%;
    border: 1px solid var(--border-light);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.svc-mar-scope-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.svc-mar-scope-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Hover */
.svc-mar-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-mar-scope {
        padding: var(--space-lg) 0;
    }
}
/* ================= Maritime Law – Integrated Legal Solutions ================= */

.svc-mar-integrated {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Heading */
.svc-mar-integrated-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-mar-integrated-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

/* Intro text */
.svc-mar-integrated-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    max-width: 720px;
    margin: 0 auto;
}

/* List */
.svc-mar-integrated-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-mar-integrated-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-mar-integrated-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.svc-mar-integrated-list li:hover {
    transform: translateX(6px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-mar-integrated {
        padding: var(--space-lg) 0;
    }
}
/* ================= Maritime Law – Why Choose HOA ================= */

.svc-mar-why {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Heading */
.svc-mar-why-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-mar-why-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
}

/* List */
.svc-mar-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-mar-why-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-mar-why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.svc-mar-why-list li:hover {
    transform: translateX(6px);
}

.svc-mar-why-list strong {
    color: var(--text-heading);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-mar-why {
        padding: var(--space-lg) 0;
    }
}
/* ================= Maritime Law – Our Services ================= */

.svc-mar-services {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Heading */
.svc-mar-services-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-mar-services-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
}

/* List */
.svc-mar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-mar-services-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-body);
    transition: transform var(--transition-fast);
}

.svc-mar-services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
    line-height: 1;
}

.svc-mar-services-list li:hover {
    transform: translateX(6px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-mar-services {
        padding: var(--space-lg) 0;
    }
}
/* ================= Maritime Law – Final CTA ================= */

.svc-mar-cta {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

/* Text */
.svc-mar-cta-subtitle {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.svc-mar-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.svc-mar-cta-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 760px;
    margin: 0 auto var(--space-lg);
}

/* Actions */
.svc-mar-cta-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-mar-cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-mar-cta-actions .btn {
        width: 100%;
    }
}
/* ================= Rental & Lease – Hero ================= */

.svc-rent-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-rent-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay */
.svc-rent-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.68);
    z-index: 2;
}

/* Content */
.svc-rent-hero .container {
    position: relative;
    z-index: 3;
}

/* Title */
.svc-rent-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

/* Subtitle */
.svc-rent-hero-text {
    max-width: 720px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rent-hero-text {
        font-size: 15px;
    }
}
/* ================= Rental & Lease – Overview ================= */

.svc-rent-overview {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Title */
.svc-rent-overview-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

/* Text */
.svc-rent-overview-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-sm);
}

/* Emphasis */
.svc-rent-overview-text strong {
    color: var(--text-heading);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rent-overview {
        padding: var(--space-lg) 0;
    }
}
/* ================= Rental & Lease – Landlords & Tenants Support ================= */

.svc-rent-support {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Subtitle */
.svc-rent-support-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rent-support-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Text */
.svc-rent-support-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

/* Emphasis */
.svc-rent-support-text strong {
    color: var(--text-heading);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rent-support {
        padding: var(--space-lg) 0;
    }
}
/* ================= Rental & Lease – Dispute Resolution ================= */

.svc-rent-dispute {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Subtitle */
.svc-rent-dispute-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rent-dispute-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Text */
.svc-rent-dispute-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

/* Highlight legal terms */
.svc-rent-dispute-text strong {
    color: var(--text-heading);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rent-dispute {
        padding: var(--space-lg) 0;
    }
}
/* ================= Rental & Lease – Why Choose HOA ================= */

.svc-rent-why {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Subtitle */
.svc-rent-why-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rent-why-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Cards */
.svc-rent-why-card {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    padding: var(--space-lg);
    height: 100%;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.svc-rent-why-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.svc-rent-why-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
}

/* Hover */
.svc-rent-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rent-why {
        padding: var(--space-lg) 0;
    }
}
/* ================= Rental & Lease – Final CTA ================= */

.svc-rent-final {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

/* Subtitle */
.svc-rent-final-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rent-final-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Text */
.svc-rent-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 720px;
}

/* Actions */
.svc-rent-final-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-rent-final-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rent-final {
        padding: var(--space-lg) 0;
        text-align: center;
    }

    .svc-rent-final-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Real Estate – Hero ================= */

.svc-re-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-re-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay */
.svc-re-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.68);
    z-index: 2;
}

/* Content */
.svc-re-hero .container {
    position: relative;
    z-index: 3;
}

/* Title */
.svc-re-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

/* Subtitle */
.svc-re-hero-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-re-hero-text {
        font-size: 15px;
    }
}
/* ================= Real Estate – Premium Overview ================= */

.svc-rex-intro {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Subtitle */
.svc-rex-intro-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rex-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

/* Text */
.svc-rex-intro-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: var(--space-sm);
}

.svc-rex-intro-text strong {
    color: var(--text-heading);
    font-weight: 600;
}

/* Right Panel */
.svc-rex-intro-panel {
    background-color: var(--bg-section);
    border-left: 3px solid var(--color-accent);
    padding: var(--space-lg);
}

/* Points */
.svc-rex-intro-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    transition: transform var(--transition-fast);
}

.svc-rex-intro-point span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--bg-dark);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.svc-rex-intro-point p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.svc-rex-intro-point:hover {
    transform: translateX(6px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rex-intro {
        padding: var(--space-lg) 0;
    }

    .svc-rex-intro-panel {
        margin-top: var(--space-md);
    }
}
/* ================= Real Estate – How HOA Can Assist ================= */

.svc-rex-assist {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Subtitle */
.svc-rex-assist-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rex-assist-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Card */
.svc-rex-assist-card {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    padding: var(--space-lg);
    height: 100%;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
    position: relative;
}

/* Accent line */
.svc-rex-assist-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: height var(--transition-base);
}

/* Hover */
.svc-rex-assist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.svc-rex-assist-card:hover::before {
    height: 100%;
}

/* Text */
.svc-rex-assist-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.svc-rex-assist-card p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rex-assist {
        padding: var(--space-lg) 0;
    }
}
/* ================= Real Estate – Why Choose HOA ================= */

.svc-rex-why {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Subtitle */
.svc-rex-why-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rex-why-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Item */
.svc-rex-why-item {
    background-color: var(--bg-section);
    padding: var(--space-lg);
    border-left: 3px solid var(--color-accent);
    height: 100%;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.svc-rex-why-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.svc-rex-why-item p {
    font-size: 14px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin: 0;
}

/* Hover polish */
.svc-rex-why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rex-why {
        padding: var(--space-lg) 0;
    }
}
/* ================= Real Estate – Final CTA ================= */

.svc-rex-final {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

/* Subtitle */
.svc-rex-final-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-rex-final-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Text */
.svc-rex-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 720px;
}

/* Actions */
.svc-rex-final-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-rex-final-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-rex-final {
        padding: var(--space-lg) 0;
        text-align: center;
    }

    .svc-rex-final-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= Contract Services – Hero ================= */

.svc-ctr-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Background */
.svc-ctr-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease;
}

/* Subtle zoom */
.svc-ctr-hero:hover .svc-ctr-hero-bg {
    transform: scale(1.04);
}

/* Overlay */
.svc-ctr-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 43, 0.7);
    z-index: 2;
}

/* Content */
.svc-ctr-hero .container {
    position: relative;
    z-index: 3;
}

/* Title */
.svc-ctr-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

/* Subtitle */
.svc-ctr-hero-text {
    max-width: 760px;
    font-size: 16px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-ctr-hero-text {
        font-size: 15px;
    }
}
/* ================= Contract Services – Overview ================= */

.svc-ctr-overview {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Subtitle */
.svc-ctr-overview-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-ctr-overview-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

/* Text */
.svc-ctr-overview-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    max-width: 820px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-ctr-overview {
        padding: var(--space-lg) 0;
    }

    .svc-ctr-overview-text {
        font-size: 14.5px;
    }
}
/* ================= Contract Services – Our Services ================= */

.svc-ctr-services {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
}

/* Header */
.svc-ctr-services-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-ctr-services-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Cards */
.svc-ctr-service-card {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    padding: var(--space-lg);
    height: 100%;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.svc-ctr-service-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
}

.svc-ctr-service-card p {
    font-size: 14.5px;
    line-height: var(--line-height-base);
    color: var(--text-body);
    margin-bottom: 0;
}

/* Hover */
.svc-ctr-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-ctr-services {
        padding: var(--space-lg) 0;
    }
}

/* ================= Contract Services – Types of Contracts ================= */

.svc-ctr-types {
    padding: var(--space-xl) 0;
    background-color: var(--bg-body);
}

/* Header */
.svc-ctr-types-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.svc-ctr-types-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-heading);
}

/* Cards */
.svc-ctr-type-card {
    background-color: var(--color-white);
    border: 1px solid var(--border-light);
    padding: 26px 22px;
    height: 100%;
    font-size: 14.5px;
    font-weight: 500;
    line-height: var(--line-height-base);
    color: var(--text-heading);
    text-align: center;
    transition: all var(--transition-fast);
}

/* Hover */
.svc-ctr-type-card:hover {
    background-color: var(--bg-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-ctr-types {
        padding: var(--space-lg) 0;
    }

    .svc-ctr-type-card {
        font-size: 14px;
        padding: 22px 18px;
    }
}
/* ================= Contract Services – Why It Matters ================= */

.svc-ctr-matter {
    padding: var(--space-xl) 0;
    background-color: var(--bg-section);
    position: relative;
}

/* Subtitle */
.svc-ctr-matter-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-ctr-matter-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: var(--space-md);
}

/* Text */
.svc-ctr-matter-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 760px;
    margin: 0 auto;
}

/* Subtle divider effect */
.svc-ctr-matter::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    height: 2px;
    background-color: var(--color-accent);
    transform: translateX(-50%);
    opacity: 0.25;
}

/* Mobile */
@media (max-width: 767px) {
    .svc-ctr-matter {
        padding: var(--space-lg) 0;
    }

    .svc-ctr-matter-text {
        font-size: 15px;
    }
}
/* ================= Contract Services – Final CTA ================= */

.svc-ctr-final {
    padding: var(--space-xl) 0;
    background-color: #0a1a2b8a;
    color: var(--color-white);
}

/* Subtitle */
.svc-ctr-final-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* Title */
.svc-ctr-final-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* Text */
.svc-ctr-final-text {
    font-size: 15px;
    line-height: var(--line-height-base);
    color: var(--color-gray);
    max-width: 720px;
}

/* Actions */
.svc-ctr-final-actions .btn {
    min-height: 48px;
    padding: 12px 28px;
    transition: transform var(--transition-fast);
}

.svc-ctr-final-actions .btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .svc-ctr-final {
        padding: var(--space-lg) 0;
        text-align: center;
    }

    .svc-ctr-final-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
