/* ===========================
   SWASTIK INVESTEDGE â€” MODERN UI
   Premium Capital Markets Aesthetic
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --ink: #04196a;
    --ink-soft: #1c2338;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5edd8;
    --emerald: #04196a;
    --emerald-mid: #1a5c42;
    --cream: #faf8f3;
    --white: #ffffff;
    --muted: #6b7280;
    --border: rgba(201, 168, 76, 0.2);
    --border-light: rgba(0, 0, 0, 0.08);

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
}

p {
    line-height: 1.75;
    color: var(--ink-soft);
}

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

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

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 99px;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.preloader-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 99px;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loading-bar 1.2s ease-in-out infinite;
}

@keyframes loading-bar {
    to {
        left: 200%;
    }
}

@keyframes pulse {

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

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

/* =====================
   TOP STRIP
   ===================== */
.top-strip {
    background: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.top-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-strip a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-strip a:hover {
    color: var(--gold);
}

.top-strip a i {
    font-size: 0.75rem;
}

/* =====================
   NAVIGATION
   ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

s .site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.brand-logo {
    height: 70px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.main-nav li a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav li a:hover {
    color: var(--emerald);
}

.main-nav li a:hover::after,
.main-nav li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav li a.active {
    color: var(--emerald);
}

.nav-cta {
    background: var(--ink) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--emerald) !important;
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: none;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.btn-dark:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--emerald);
}

.btn i {
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 92vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/cta-bg.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.hero-grid {
    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-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 61, 46, 0.6) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin: 0 auto 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFF;
    margin: 0 auto 20px;
    font-weight: 300;
    line-height: 1.8;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    gap: 0;
}

.hero-stat {
    padding: 0 32px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

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


.hero-badges .badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 100%;
    white-space: normal;
    align-items: center;
    display: flex;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    gap: 10px;
    font-size: 14px;
}

.hero-badges .badge i {
    font-size: 36px;
}


/* =====================
   SECTION COMMON
   ===================== */
.section {
    padding: 100px 0;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
}

.section-title em {
    font-style: italic;
    color: var(--emerald);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 690px;
    margin-top: 16px;
    font-weight: 300;
    line-height: 1.8;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 580px;
}

.about-img-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    left: 60%;
    top: 36%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    text-align: center;
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    line-height: 1.2;
    margin-top: 2px;
}

.about-content {
    padding-right: 20px;
}

.about-body {
    margin: 24px 0 36px;
}

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

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.about-card.gold {
    background: var(--gold);
    border-color: var(--gold);
}

.about-card.dark {
    background: var(--ink);
    border-color: var(--ink);
}

.about-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.about-card.gold h4,
.about-card.dark h4 {
    color: var(--white);
}

.about-card.gold p,
.about-card.dark p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* =====================
   SERVICES
   ===================== */
.services-bg {
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-eyebrow {
    justify-content: center;
}

.services-header .section-lead {
    margin: 16px auto 0;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--emerald);
    font-size: 1.3rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--ink);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.service-card .card-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-card:hover .card-link i {
    transform: translateX(4px);
}

/* =====================
   STATS BAND
   ===================== */
.stats-band {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--emerald) 0%, transparent 60%);
    opacity: 0.4;
}

.stats-band-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.stats-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 48px 24px;
}

.stat-item-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* =====================
   CTA BANNER
   ===================== */
.cta-section {
    background: var(--emerald);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
}

/* =====================
   PAGE BANNER
   ===================== */
.page-hero {
    position: relative;
    padding: 60px 0 40px;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.page-hero-lines {
    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: 48px 48px;
}

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

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.breadcrumb-nav .current {
    color: var(--gold);
    font-size: 0.85rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 720px;
    margin-top: 20px;
    font-size: 1.05rem;
}

/* =====================
   ABOUT PAGE
   ===================== */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.differentiator-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

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

.diff-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 16px;
}

.differentiator-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.differentiator-card p {
    font-size: 0.9rem;
}

/* =====================
   SERVICES PAGE
   ===================== */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--cream);
}

.service-detail-grid {
    display: grid;
    gap: 72px;
    align-items: center;
}

.service-detail-grid.left {
    grid-template-columns: 5fr 7fr;
}

.service-detail-grid.right {
    grid-template-columns: 7fr 5fr;
}

.service-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 20px;
}

.service-detail-content>p {
    margin-bottom: 28px;
}

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

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.service-list li::before {
    content: '—';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

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

/* =====================
   TEAM PAGE
   ===================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
}

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

.team-card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img {
    transform: scale(1.04);
}

.team-card-info {
    padding: 24px 20px;
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 16px;
}

.team-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.team-card-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-btn {
    color: var(--gold);
}

.team-card:hover .team-card-btn i {
    transform: translateX(4px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 820px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.modal-img {
    aspect-ratio: 2/3;
    overflow: hidden;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.modal-content {
    padding: 40px 36px;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ink);
    transition: var(--transition);
    z-index: 9;
}

.modal-close:hover {
    background: var(--gold);
}

.modal-box {
    position: relative;
}

.modal-role {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.modal-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 24px;
}

.modal-bio p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 16px;
    text-align: justify;
}

/* =====================
   CLIENTS PAGE
   ===================== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.client-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}

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

.client-card img {
    height: 64px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.client-card-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.clients-section-label {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 60px 0 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.clients-section-label::before,
.clients-section-label::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: var(--border-light);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.contact-info-text {
    font-size: 0.875rem;
}

.contact-info-text strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-text a,
.contact-info-text span {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-form-card>p {
    color: var(--muted);
    margin-bottom: 36px;
}

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

.form-grid .full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-control::placeholder {
    color: #b0b7c3;
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

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

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

.form-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius-sm);
    padding: 16px;
    color: #15803d;
    font-size: 0.9rem;
    margin-top: 16px;
    display: none;
}

.map-wrap {
    margin-top: 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-wrap iframe {
    display: block;
    width: 100%;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--ink);
    color: var(--white);
    border-top: 3px solid var(--gold);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 2fr;
    gap: 48px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
    line-height: 1.8;
    padding-right: 20px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-address {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
    line-height: 2;
    font-style: normal;
}

.footer-contact a {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* =====================
   ANIMATIONS
   ===================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-up[data-delay="1"] {
    transition-delay: 0.1s;
}

.reveal-up[data-delay="2"] {
    transition-delay: 0.2s;
}

.reveal-up[data-delay="3"] {
    transition-delay: 0.3s;
}

.reveal-up[data-delay="4"] {
    transition-delay: 0.4s;
}

.reveal-up[data-delay="5"] {
    transition-delay: 0.5s;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 400px;
    }

    .about-content {
        padding-right: 0;
    }

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

    .stats-divider {
        display: none;
    }

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

    .contact-info-card {
        position: static;
    }

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

    .hero-stat {
        padding: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

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

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

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

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

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

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-light);
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        margin: 0;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 80%;
    }

    .about-img-secondary {
        width: 55%;
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .modal-layout {
        grid-template-columns: 1fr;
    }

    .modal-img {
        aspect-ratio: 16/9;
    }

    .contact-info-card {
        padding: 32px 24px;
    }

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

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

    .hero-title {
        font-size: 2.4rem;
    }

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

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

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

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

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

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