/* ═══════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════ */
:root {
    --maroon-deep: #451616;
    --red-accent: #B51818;
    --red-hover: #9a1414;
    --pink-light: #f7eded;
    --cream: #faf6f3;
    --white: #ffffff;
    --dark: #1a1212;
    --text-body: #4a3636;
    --text-muted: #7a6565;
    --border-subtle: rgba(181,24,24,0.12);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

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

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(69,22,22,0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 48px;
    width: auto;
    transition: height 0.4s var(--ease-out);
}
.nav.scrolled .nav-logo img {
    height: 40px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.03em;
    position: relative;
    padding: 4px 0;
}
.nav.scrolled .nav-links a {
    color: var(--maroon-deep);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-accent);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    background: var(--red-accent) !important;
    color: var(--white) !important;
    padding: 10px 28px !important;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--maroon-deep) !important;
    transform: translateY(-1px);
}

/* Inner page nav: always scrolled style */
.nav-inner-page {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(69,22,22,0.08);
}
.nav-inner-page .nav-links a {
    color: var(--maroon-deep);
}
.nav-inner-page .nav-logo img {
    height: 40px;
}
.nav-inner-page .nav-toggle span {
    background: var(--maroon-deep);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav.scrolled .nav-toggle span {
    background: var(--maroon-deep);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.nav-overlay.show {
    display: block;
}

/* ═══════════════════════════════════════
   HERO (Homepage)
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--maroon-deep);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(69,22,22,0.92) 0%, rgba(69,22,22,0.7) 50%, rgba(181,24,24,0.5) 100%);
}
.hero-dots {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    z-index: 3;
    opacity: 0.08;
    background-image: radial-gradient(circle, var(--white) 2px, transparent 2px);
    background-size: 20px 20px;
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 720px;
    padding: 140px 0 100px;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--red-accent);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero-title .highlight {
    color: var(--red-accent);
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.btn-primary-v {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--red-accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary-v:hover {
    background: var(--white);
    color: var(--maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.btn-outline-v {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline-v:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
/* Solid outline variant for inner pages */
.btn-outline-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--maroon-deep);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid var(--border-subtle);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline-solid:hover {
    border-color: var(--red-accent);
    color: var(--red-accent);
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════
   PAGE HERO (Inner pages)
   ═══════════════════════════════════════ */
.page-hero {
    background: var(--maroon-deep);
    padding: 140px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-hero .hero-dots {
    top: -60px;
    right: -60px;
}
.page-hero-content {
    position: relative;
    z-index: 4;
    max-width: 720px;
}
.page-hero .section-label {
    color: rgba(255,255,255,0.5);
}
.page-hero .section-label::before {
    background: rgba(255,255,255,0.3);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-weight: 300;
    max-width: 560px;
}
/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a {
    color: rgba(255,255,255,0.55);
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.35);
    fill: none;
    stroke-width: 2;
}

/* ═══════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════ */
.section {
    padding: 100px 0;
}
.section-sm {
    padding: 72px 0;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red-accent);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red-accent);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--maroon-deep);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}
.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}
.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, var(--red-accent) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.15;
    z-index: -1;
    border-radius: 8px;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 1.02rem;
}
.about-motto {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: var(--pink-light);
    border-radius: 10px;
    border-left: 4px solid var(--red-accent);
}
.about-motto-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-motto-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}
.about-motto p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--maroon-deep);
    margin: 0;
    line-height: 1.6;
}
.about-motto .highlight {
    color: var(--red-accent);
}

/* ═══════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════ */
.services {
    background: var(--cream);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}
.services-header {
    text-align: center;
    margin-bottom: 64px;
}
.services-header .section-subtitle {
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(69,22,22,0.08);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--pink-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--red-accent);
}
.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 1.8;
    transition: stroke 0.3s ease;
}
.service-card:hover .service-icon svg {
    stroke: var(--white);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--maroon-deep);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-accent);
    transition: gap 0.3s ease;
}
.service-card:hover .card-link {
    gap: 10px;
}
.service-card .card-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--red-accent);
    stroke-width: 2;
}

/* ═══════════════════════════════════════
   PRACTICE AREAS
   ═══════════════════════════════════════ */
.practice {
    background: var(--maroon-deep);
    position: relative;
    overflow: hidden;
}
.practice .hero-dots {
    top: auto;
    bottom: -80px;
    left: -80px;
    right: auto;
    opacity: 0.05;
}
.practice .section-label {
    color: rgba(255,255,255,0.5);
}
.practice .section-label::before {
    background: rgba(255,255,255,0.3);
}
.practice .section-title {
    color: var(--white);
}
.practice .section-subtitle {
    color: rgba(255,255,255,0.55);
}
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 48px;
}
.practice-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
}
.practice-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(4px);
}
.practice-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--red-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.practice-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}
.practice-item span {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 400;
}

/* ═══════════════════════════════════════
   WHY VANTAGE
   ═══════════════════════════════════════ */
.why {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}
.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-feature-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--pink-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--red-accent);
}
.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--maroon-deep);
    margin-bottom: 4px;
}
.why-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.why-image-wrap {
    position: relative;
}
.why-image-wrap img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
}
.why-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--red-accent);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(181,24,24,0.3);
}
.why-badge-number {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}
.why-badge-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════ */
.industries {
    background: var(--cream);
    position: relative;
}
.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}
.industries-header {
    text-align: center;
    margin-bottom: 56px;
}
.industries-header .section-subtitle {
    margin: 0 auto;
}
.industries-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.industry-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--maroon-deep);
    transition: all 0.3s var(--ease-out);
}
.industry-tag:hover {
    background: var(--maroon-deep);
    color: var(--white);
    border-color: var(--maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(69,22,22,0.15);
}
.industry-tag svg {
    width: 20px;
    height: 20px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 1.8;
    transition: stroke 0.3s ease;
}
.industry-tag:hover svg {
    stroke: var(--white);
}

/* Industry cards (industries.html full page) */
.industry-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(69,22,22,0.08);
    border-color: transparent;
}
.industry-card:hover::before {
    transform: scaleX(1);
}
.industry-card .service-icon {
    margin-bottom: 20px;
}
.industry-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--maroon-deep);
    margin-bottom: 10px;
}
.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
.contact {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--pink-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 1.8;
}
.contact-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 1rem;
    color: var(--maroon-deep);
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--red-accent);
}

/* Form styling */
.contact-form-wrap {
    background: var(--cream);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--maroon-deep);
    margin-bottom: 8px;
}
.contact-form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--maroon-deep);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1.5px solid var(--border-subtle);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(181,24,24,0.08);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}
/* File upload styling */
.form-group input[type="file"] {
    padding: 12px 18px;
    cursor: pointer;
    background: var(--white);
}
.form-group input[type="file"]::file-selector-button {
    background: var(--pink-light);
    color: var(--maroon-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.3s ease;
}
.form-group input[type="file"]::file-selector-button:hover {
    background: var(--red-accent);
    color: var(--white);
    border-color: var(--red-accent);
}
.form-captcha {
    margin: 20px 0;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--red-accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}
.form-submit:hover {
    background: var(--maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(69,22,22,0.2);
}

/* ═══════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(69,22,22,0.08);
    border-color: transparent;
}
.team-card-photo {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card-photo svg {
    width: 48px;
    height: 48px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 1.2;
    opacity: 0.4;
}
.team-card-info {
    padding: 24px 20px;
}
.team-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--maroon-deep);
    margin-bottom: 4px;
}
.team-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   SUBSIDIARY CARDS
   ═══════════════════════════════════════ */
.subsidiary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.subsidiary-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.subsidiary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(69,22,22,0.08);
    border-color: transparent;
}
.subsidiary-card:hover::before {
    transform: scaleX(1);
}
.subsidiary-card .service-icon {
    margin: 0 auto 20px;
}
.subsidiary-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--maroon-deep);
    margin-bottom: 12px;
}
.subsidiary-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.subsidiary-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-accent);
    transition: gap 0.3s ease;
    white-space: nowrap;
}
.subsidiary-card .card-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.subsidiary-card:hover .card-link {
    gap: 10px;
}

/* ═══════════════════════════════════════
   VALUES GRID
   ═══════════════════════════════════════ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(69,22,22,0.06);
}
.value-card .service-icon {
    margin-bottom: 20px;
}
.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--maroon-deep);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    counter-reset: step;
}
.process-step {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    position: relative;
    counter-increment: step;
    transition: all 0.3s var(--ease-out);
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(69,22,22,0.06);
}
.process-step-num {
    width: 44px;
    height: 44px;
    background: var(--pink-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--red-accent);
    margin-bottom: 16px;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--maroon-deep);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(69,22,22,0.06);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--maroon-deep);
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: var(--cream);
}
.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   BENEFIT CARDS (Careers)
   ═══════════════════════════════════════ */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.benefit-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(69,22,22,0.06);
}
.benefit-card .service-icon {
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--maroon-deep);
    margin-bottom: 8px;
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    background: var(--maroon-deep);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner .hero-dots {
    top: -80px;
    right: -80px;
    opacity: 0.05;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn-primary-v:hover {
    background: var(--white);
    color: var(--maroon-deep);
}

/* ═══════════════════════════════════════
   KPI / STATS ROW
   ═══════════════════════════════════════ */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.kpi-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--pink-light);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
}
.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(69,22,22,0.06);
}
.kpi-card .service-icon {
    margin: 0 auto 16px;
}
.kpi-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--maroon-deep);
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--maroon-deep);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 6px;
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer h5 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    padding: 6px 0;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--red-accent);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-item span, .footer-contact-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-contact-item a:hover {
    color: var(--white);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-wrap { order: -1; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        color: var(--maroon-deep) !important;
        font-size: 1.1rem;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .section {
        padding: 72px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .practice-grid {
        grid-template-columns: 1fr;
    }
    .industries-row {
        gap: 12px;
    }
    .industry-tag {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    .contact-form-wrap {
        padding: 32px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .why-badge {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-flex;
        flex-direction: column;
        margin-top: 16px;
    }
    .page-hero {
        padding: 120px 0 56px;
    }
    .subsidiary-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-primary-v, .btn-outline-v, .btn-outline-solid {
        justify-content: center;
        width: 100%;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .kpi-grid {
        grid-template-columns: 1fr;
    }
}
