/* ============================================================
   SHELLA OVERSEAS CONSULTANTS — DESIGN SYSTEM
   Color Palette: Deep Blue (#0A1F44), White (#FFFFFF), Gold (#C9A84C)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* ─── CSS Variables ─── */
:root {
    --navy: #0A1F44;
    --navy-mid: #112952;
    --navy-light: #1A3A6E;
    --navy-soft: #1E4080;
    --gold: #C9A84C;
    --gold-light: #E0C06A;
    --gold-dark: #A8872E;
    --white: #FFFFFF;
    --off-white: #F7F8FC;
    --gray-50: #F0F2F8;
    --gray-100: #E5E9F0;
    --gray-300: #B0BAD0;
    --gray-500: #6B7A99;
    --gray-700: #374060;
    --text-dark: #0D1B36;
    --text-body: #4A5568;
    --text-light: #8A9BBE;

    --font-sans: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.08);
    --shadow-md: 0 6px 24px rgba(10, 31, 68, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 31, 68, 0.18);
    --shadow-xl: 0 24px 72px rgba(10, 31, 68, 0.22);
    --shadow-gold: 0 6px 24px rgba(201, 168, 76, 0.25);

    --border-radius: 10px;
    --border-radius-lg: 18px;
    --border-radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ─── Layout ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-lg {
    padding: 120px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

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

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

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.08rem;
    max-width: 600px;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header.text-center .section-subtitle {
    margin: 0 auto;
}

.section-header.text-center .section-tag {
    display: flex;
    justify-content: center;
}

.section-header.text-center .section-tag::before {
    display: none;
}

.section-header.text-center .section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ─── Grid ─── */
.grid {
    display: grid;
    gap: 30px;
}

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

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

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.02em;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

.btn-dark {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ─── Navigation ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 2px 20px rgba(10, 31, 68, 0.07);
}

.navbar.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(10, 31, 68, 0.12);
    box-shadow: 0 4px 30px rgba(10, 31, 68, 0.12);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-img {
    height: 54px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    font-family: var(--font-display);
    flex-shrink: 0;
}

.logo-text {
    line-height: 1;
}

.logo-text .brand-name {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.logo-text .brand-tag {
    font-size: 0.65rem;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

/* Footer: white text on dark bg */
.footer .logo-text .brand-name {
    color: var(--white);
}

.footer .logo-text .brand-tag {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.1);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    transition: var(--transition);
    height: 100%;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.mobile-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-nav .mobile-nav-cta {
    margin-top: 20px;
    display: block;
    text-align: center;
    border-bottom: none;
}

/* ─── Hero Section ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3575 100%);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 31, 68, 0.95) 0%,
            rgba(17, 41, 82, 0.85) 50%,
            rgba(10, 31, 68, 0.75) 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 48px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    white-space: nowrap;
}

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

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 42px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 48px;
    margin-top: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    justify-content: space-between;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 1;
}

.hero-stat .stat-number span {
    color: var(--gold);
}

.hero-stat .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    letter-spacing: 0.03em;
}

/* ─── Ticker / Client Logos ─── */
.ticker-section {
    background: var(--off-white);
    padding: 32px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.ticker-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.ticker-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: ticker 25s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.footer-contact-item .ico {
    display: none;
}

.ticker-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.ticker-item:hover {
    color: var(--navy);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── About Preview ─── */
.about-preview {
    background: var(--white);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    height: 520px;
    box-shadow: var(--shadow-xl);
}

/* Full-width 3-column features row below the 2-col split */
.about-features-full {
    display: flex;
    flex-wrap: nowrap;
    gap: 1px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: 48px;
}

@media (max-width: 1200px) {
    .about-features-full {
        flex-wrap: wrap;
    }

    .about-feature-full-item {
        flex: 1 1 calc(50% - 1px);
        min-width: 260px;
    }
}

.about-feature-full-item {
    display: flex;
    flex: 1;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--off-white);
    transition: var(--transition);
    min-width: 0;
}

.about-feature-full-item:hover {
    background: var(--gray-50);
}

.about-feature-full-item .about-feature-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    transition: var(--transition);
}

.about-feature-full-item:hover .about-feature-icon {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.about-feature-full-item .about-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.about-image-badge {
    position: absolute;
    bottom: 32px;
    left: -28px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-image-badge .stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.about-image-badge .stat-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.about-features {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 769px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-100);
    transition: var(--transition);
}

@media (min-width: 769px) {
    .about-feature {
        border-top: none;
        padding: 0;
    }
}

.about-feature:last-child {
    border-bottom: 1px solid var(--gray-100);
}

@media (min-width: 769px) {
    .about-feature:last-child {
        border-bottom: none;
    }
}

.about-feature:hover .about-feature-icon {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    transition: var(--transition);
}

.about-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.about-feature-text h5 {
    color: var(--text-dark);
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.about-feature-text p {
    font-size: 0.83rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.55;
}

/* ─── Services Section ─── */
.services-section {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.2);
    color: var(--white);
}

.service-card-icon svg {
    stroke: var(--white);
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 10px;
    color: var(--navy);
}

/* ─── Industries ─── */
.industries-section {
    background: var(--navy);
}

.industries-section .section-tag {
    color: var(--gold);
}

.industries-section .section-title {
    color: var(--white);
}

.industries-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 28px 22px;
    text-align: center;
    cursor: default;
    transition: var(--transition);
}

.industry-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    color: var(--gold-light);
}

.industry-icon svg {
    stroke: var(--gold-light);
    width: 30px;
    height: 30px;
}

.industry-card h4 {
    font-size: 0.92rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
}

/* ─── Why Choose Us ─── */
.why-us-section {
    background: var(--white);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.why-float-card {
    position: absolute;
    top: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--navy);
    padding: 22px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.why-float-card .num {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.why-float-card small {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-reason {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-reason:hover {
    background: var(--off-white);
    border-color: var(--gray-100);
}

.reason-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--navy);
    flex-shrink: 0;
}

.reason-text h5 {
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.reason-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.55;
}

/* ─── Process Section ─── */
.process-section {
    background: var(--off-white);
}

.process-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 36px);
    right: calc(10% + 36px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-bubble {
    width: 72px;
    height: 72px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold), var(--shadow-md);
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.process-step:hover .step-bubble {
    background: var(--gold);
    box-shadow: 0 0 0 3px var(--navy), var(--shadow-gold);
    transform: scale(1.1);
}

.step-bubble svg {
    stroke: var(--white);
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.process-step:hover .step-bubble svg {
    stroke: var(--navy);
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ─── Stats Section ─── */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    padding: 50px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(201, 168, 76, 0.08);
}

.stat-item .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 1;
    display: block;
}

.stat-item .stat-value span {
    color: var(--gold);
}

.stat-item .stat-description {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    display: block;
    line-height: 1.4;
}

/* ─── Testimonials ─── */
.testimonials-section {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 38px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: var(--font-display);
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    font-family: var(--font-display);
}

.author-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ─── CTA Section ─── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1A3575 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1600&q=60');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 42px;
    font-size: 1.1rem;
}

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

/* ─── Page Hero (Interior Pages) ─── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

.page-hero-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.25);
}

.page-hero-breadcrumb .current {
    color: var(--gold);
}

.page-hero h1 {
    color: var(--white);
    max-width: 900px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin-top: 16px;
}

/* ─── Values Grid ─── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px 30px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    color: var(--navy);
}

.value-icon svg {
    stroke: var(--navy);
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ─── Service Detail Cards ─── */
.service-detail {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 44px 50px;
    border: 1px solid var(--gray-100);
    margin-bottom: 32px;
    transition: var(--transition);
}

.service-detail:hover {
    box-shadow: var(--shadow-lg);
}

.service-detail-icon-wrap {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    font-size: 3rem;
}

.service-detail h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.service-detail>div>p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.benefit-item::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── Industry Cards ─── */
.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.industry-detail-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.industry-detail-card .ind-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-100);
}

.ind-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
}

.ind-icon svg {
    stroke: var(--white);
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
}

.industry-detail-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.industry-detail-card .ind-tag {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 600;
}

.industry-detail-card>p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.challenge-badge {
    background: rgba(10, 31, 68, 0.05);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 0.82rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.challenge-badge strong {
    color: var(--gold-dark);
}

/* ─── Process Page ─── */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0;
    position: relative;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 1;
    color: var(--white);
}

.timeline-dot svg {
    stroke: var(--white);
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.timeline-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1));
    margin: 0 auto;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px 40px;
    border: 1px solid var(--gray-100);
    margin-bottom: 24px;
    margin-left: 24px;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.timeline-num {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.timeline-content p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.timeline-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.timeline-point::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
}

/* ─── Client / Testimonial Full Page ─── */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-featured {
    grid-column: 1 / -1;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-featured::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 8rem;
    font-family: var(--font-display);
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
}

.testimonial-featured .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

.testimonial-featured .author-name {
    color: var(--white);
}

.testimonial-featured .author-role {
    color: rgba(255, 255, 255, 0.6);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.partner-logo {
    background: var(--off-white);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.partner-logo:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ─── Contact Page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--border-radius-xl);
    padding: 50px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    font-size: 0.9rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--gold);
}

.info-item-text {
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
}

.info-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form-wrap h3 {
    margin-bottom: 8px;
}

.contact-form-wrap>p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 36px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--border-radius);
    font-size: 0.93rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--off-white);
    outline: none;
}

.form-control:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.06);
}

.form-control::placeholder {
    color: var(--text-light);
}

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

.form-submit {
    margin-top: 8px;
}

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

/* ─── Footer ─── */
.footer {
    background: var(--text-dark);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-contact-item .ico {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.social-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

/* ─── Utility ─── */
.text-center {
    text-align: center;
}

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

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

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

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {

    .about-split,
    .why-us-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-badge {
        left: 16px;
        bottom: 16px;
    }

    .why-float-card {
        top: 16px;
        right: 16px;
    }

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

    .service-detail {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .about-features-full {
        flex-direction: column;
    }

    .partner-logo {
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-stats {
        gap: 28px;
    }

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

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

    .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
        padding: 7px 14px;
    }

    .stats-grid {
        flex-direction: column;
        overflow-x: auto;
    }

    .testimonials-grid,
    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Mobile Carousel */
    .testimonials-carousel-wrapper {
        position: relative;
        padding-bottom: 20px;
    }

    .testimonials-grid,
    .testimonials-full-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
        gap: 20px;
        margin: 0 -10px;
        padding: 0 10px;
    }

    .testimonials-grid::-webkit-scrollbar,
    .testimonials-full-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .testimonial-card,
    .testimonial-featured {
        flex: 0 0 calc(100% - 20px);
        scroll-snap-align: center;
        margin-bottom: 0 !important;
    }

    .testimonial-dots {
        display: flex;
    }

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

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

    .industry-detail-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Process Timeline Mobile */
    .timeline-item {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .timeline-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .timeline-dot {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }

    .timeline-dot svg {
        width: 22px;
        height: 22px;
    }

    .testimonial-card:hover {
        box-shadow: none;
    }

    .testimonials-full-grid {
        overflow-y: hidden;
    }

    .footer-contact-item {
        gap: 0;
    }

    .timeline-line {
        display: block;
        width: 2px;
        height: 20px;
        background: var(--gold);
        margin: 0 auto;
        margin-left: 26px;
        min-height: 20px;
    }

    .timeline-content {
        margin-left: 0;
        padding: 30px 24px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {

    body .why-us-image img,
    body .about-image-wrap img {
        height: 300px !important;
    }

    .testimonial-text {
        font-size: 16px !important;
    }

    .service-detail,
    .industry-detail-card,
    .testimonial-card,
    .testimonial-featured {
        padding: 35px 20px;
    }

    .stat-item {
        padding: 30px 24px;
    }

    .stat-item .stat-value {
        font-size: 36px;
    }

    .section-header {
        margin-bottom: 10px;
    }
}