/*
Theme Name: VNS And Partners Pro
Theme URI: http://example.com/vns-theme-pro
Author: Antigravity
Author URI: http://example.com
Description: The complete, premium, and fully customizable WordPress theme for VNS And Partners. Features dynamic customizer settings and full Elementor compatibility.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vns-theme-pro
*/

/* ============================================
   VNS AND PARTNERS - LAW FIRM WEBSITE
   Premium Corporate Style
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --navy-dark: #0a1628;
    --navy: #0f2044;
    --navy-medium: #152d5a;
    --navy-light: #1b3a72;
    --gold: #c5a44e;
    --gold-light: #d4b96a;
    --gold-dark: #a8893a;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-light: #e8e8e8;
    --gray: #999999;
    --text-dark: #1a1a1a;
    --text-body: #444444;

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    --header-height: 70px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn--gold {
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 164, 78, 0.4);
}

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

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

.btn--outline-light {
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    font-size: 0.8rem;
    padding: 10px 24px;
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    height: var(--header-height);
    transition: all var(--transition);
    box-shadow: none;
}

.header.scrolled {
    background: var(--navy-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    height: 60px;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo__vns {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo__and {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo__and-footer {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

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

.dropdown-arrow {
    width: 10px;
    height: 6px;
    color: var(--white);
    transition: transform var(--transition);
}

.nav__link:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--gold-light);
}

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

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(12, 26, 50, 0.85) 30%,
        rgba(15, 32, 68, 0.65) 55%,
        rgba(21, 45, 90, 0.35) 80%,
        rgba(27, 58, 114, 0.20) 100%
    );
}

.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.6) 0%,
        transparent 30%,
        transparent 80%,
        rgba(10, 22, 40, 0.3) 100%
    );
}

.hero__gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 100px;
    width: 100%;
}

.hero__content {
    max-width: 620px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero__description {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__tags span {
    font-size: 0.82rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tag-separator {
    color: rgba(255,255,255,0.4) !important;
    font-weight: 300 !important;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* === ABOUT SECTION === */
.about {
    padding: 60px 40px 70px;
    background: var(--white);
    text-align: center;
}

.about__container {
    max-width: 700px;
    margin: 0 auto;
}

.about__text {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.about__text strong {
    color: var(--navy);
    font-weight: 600;
}

/* === SECTION TITLE === */
.section__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section__title-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 50px;
}

.section__title--light {
    color: var(--white);
}

.section__title-line--light {
    background: var(--gold);
}

/* === EXPERTISE SECTION === */
.expertise {
    padding: 70px 40px 80px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-top: none;
    border-bottom: none;
}

.expertise__container {
    max-width: 1100px;
    margin: 0 auto;
}

.expertise__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.expertise__card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15, 32, 68, 0.6);
    transition: all var(--transition);
    cursor: default;
    backdrop-filter: blur(5px);
}

.expertise__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: var(--gold);
    background: rgba(21, 45, 90, 0.8);
}

.expertise__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
}

.expertise__icon svg {
    width: 100%;
    height: 100%;
}

.expertise__card-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.expertise__card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* === SUPPORT SECTION === */
.support {
    padding: 70px 40px 80px;
    background: var(--white);
}

.support__container {
    max-width: 800px;
    margin: 0 auto;
}

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

.support__list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.5;
}

.support__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.5rem;
    color: var(--navy);
}

/* === EXPERIENCE SECTION === */
.experience {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.experience__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.experience__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.experience__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.88) 45%,
        rgba(15, 32, 68, 0.7) 65%,
        rgba(21, 45, 90, 0.5) 100%
    );
    z-index: 1;
}

.experience__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.4) 0%,
        transparent 30%,
        transparent 70%,
        rgba(10, 22, 40, 0.5) 100%
    );
}

.experience__container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.experience__left {
    padding: 60px 40px 60px;
}

.experience__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.experience__list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
    line-height: 1.6;
}

.experience__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.experience__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.investing-card {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 164, 78, 0.3);
    padding: 40px 35px;
    max-width: 380px;
    width: 100%;
    transition: all var(--transition);
}

.investing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(197, 164, 78, 0.1);
}

.investing-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.investing-card__text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.investing-card__text strong {
    color: var(--white);
    font-weight: 600;
}

.investing-card .btn {
    margin-top: 8px;
}

/* === FOOTER === */
.footer {
    background: var(--navy);
    padding: 50px 40px 40px;
    text-align: center;
    border-top: 2px solid var(--gold);
}

.footer__container {
    max-width: 800px;
    margin: 0 auto;
}

.footer__brand {
    margin-bottom: 28px;
}

.footer__logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer__logo .logo__vns {
    color: var(--white);
    font-size: 1.4rem;
}

.footer__location {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.footer__email {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer__email:hover {
    color: var(--gold);
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__nav a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

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

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

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider__slides {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
}

.hero-slider__slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-slider__slide.active .hero__title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-slider__slide.active .hero__description {
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-slider__slide.active .hero__tags {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-slider__slide.active .hero__buttons {
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* Slider Navigation */
.hero-slider__nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(8px);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    padding: 0;
}

.hero-slider__arrow:hover {
    border-color: var(--gold);
    background: rgba(197, 164, 78, 0.2);
    transform: scale(1.1);
}

.hero-slider__arrow svg {
    width: 20px;
    height: 20px;
}

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

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-slider__dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(197, 164, 78, 0.5);
}

.hero-slider__dot:hover {
    border-color: var(--gold-light);
}

/* Slider Progress Bar */
.hero-slider__progress {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    z-index: 10;
    overflow: hidden;
}

.hero-slider__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* === CONTACT FORM 7 THEME STYLING === */
.wpcf7 {
    width: 100%;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all var(--transition);
    outline: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 164, 78, 0.12);
}

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

.wpcf7-form input[type="submit"],
.wpcf7-submit {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    width: 100%;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 164, 78, 0.4);
}

.wpcf7-response-output {
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 0.88rem;
    margin: 10px 0 0 !important;
}

.wpcf7-not-valid-tip {
    color: #e53935;
    font-size: 0.8rem;
    margin-top: 4px;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
    border-color: #e53935 !important;
    background: rgba(229, 57, 53, 0.05);
}

.wpcf7 .wpcf7-mail-sent-ok {
    border-color: #2d8a4e !important;
    background: rgba(45, 138, 78, 0.05);
    color: #2d8a4e;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

    .experience__right {
        padding: 0 40px 60px;
    }

    .investing-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__container {
        padding: 0 20px;
    }

    .header__toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--navy-dark);
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .hero {
        min-height: 480px;
    }

    .hero__container {
        padding: 60px 20px 100px;
    }

    .hero__title {
        font-size: 1.6rem;
    }

    .hero__title br {
        display: none;
    }

    .hero__description {
        font-size: 0.85rem;
    }

    .hero__description br {
        display: none;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    /* Slider responsive */
    .hero-slider,
    .hero-slider__slides {
        min-height: 480px;
    }

    .hero-slider__nav {
        bottom: 90px;
        gap: 14px;
    }

    .hero-slider__arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider__arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider__dot {
        width: 10px;
        height: 10px;
    }

    .hero-slider__progress {
        bottom: 72px;
        width: 150px;
    }

    .about {
        padding: 40px 20px 50px;
    }

    .about__text {
        font-size: 1.05rem;
    }

    .expertise {
        padding: 50px 20px 60px;
    }

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

    .support {
        padding: 50px 20px 60px;
    }

    .support__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .experience__left {
        padding: 40px 20px;
    }

    .experience__right {
        padding: 0 20px 40px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .section__title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .parallax-divider {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.35rem;
    }

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

    .expertise__card {
        border-bottom: none;
    }

    .expertise__card:last-child {
        border-bottom: 1px solid var(--gray-light);
    }

    .footer__nav {
        flex-wrap: wrap;
    }
}

/* ============================================
   INNER PAGES - SHARED STYLES
   ============================================ */

/* === HEADER SOLID (Inner Pages) === */
.header--solid {
    background: var(--navy-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header--solid.scrolled {
    background: var(--navy-dark);
}

/* === NAV ACTIVE STATE === */
.nav__link--active {
    color: var(--gold) !important;
}

.nav__link--active::after {
    width: 100% !important;
    background: var(--gold) !important;
}

/* === PAGE HERO (Inner Pages) === */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero--compact {
    min-height: 340px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(12, 26, 50, 0.85) 40%,
        rgba(15, 32, 68, 0.75) 70%,
        rgba(21, 45, 90, 0.6) 100%
    );
}

.page-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.5) 0%,
        transparent 40%,
        transparent 60%,
        rgba(10, 22, 40, 0.4) 100%
    );
}

.page-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 80px;
    width: 100%;
}

.page-hero__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    animation: fadeInUp 0.6s ease-out;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 1px;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* === FOOTER COPYRIGHT === */
.footer__copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
    letter-spacing: 0.3px;
}


/* ============================================
   ABOUT PAGE
   ============================================ */

/* === FIRM OVERVIEW === */
.firm-overview {
    padding: 80px 40px 90px;
    background: var(--white);
}

.firm-overview__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.firm-overview__content .section__title {
    text-align: left;
}

.firm-overview__content .section__title-line {
    margin: 0 0 30px 0;
}

.firm-overview__text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.firm-overview__text strong {
    color: var(--navy);
    font-weight: 600;
}

.firm-overview__image {
    position: relative;
}

.firm-overview__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}

.firm-overview__image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
}

/* === VALUES === */
.values {
    padding: 80px 40px 90px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.values__container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.value-card {
    padding: 40px 28px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15, 32, 68, 0.5);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.value-card:hover {
    background: rgba(21, 45, 90, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

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

.value-card__number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(197, 164, 78, 0.25);
    margin-bottom: 16px;
    line-height: 1;
}

.value-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.value-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* === WHY CHOOSE US === */
.why-us {
    padding: 80px 40px 90px;
    background: var(--white);
}

.why-us__container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-us__item {
    padding: 35px 30px;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    transition: all var(--transition);
    position: relative;
}

.why-us__item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.why-us__icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-us__icon svg {
    width: 100%;
    height: 100%;
}

.why-us__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.why-us__desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* === CTA BANNER === */
.cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 32, 68, 0.85) 50%,
        rgba(21, 45, 90, 0.8) 100%
    );
}

.cta-banner__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.cta-banner__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    line-height: 1.6;
}


/* ============================================
   EXPERTISE PAGE
   ============================================ */

/* === EXPERTISE DETAIL === */
.expertise-detail {
    padding: 70px 40px 80px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.expertise-detail--dark {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-bottom: none;
}

.expertise-detail__container {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-detail__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.expertise-detail__icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    flex-shrink: 0;
}

.expertise-detail__icon svg {
    width: 100%;
    height: 100%;
}

.expertise-detail__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.expertise-detail__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(197, 164, 78, 0.3);
    line-height: 1;
}

.expertise-detail--dark .expertise-detail__number {
    color: rgba(197, 164, 78, 0.25);
}

.expertise-detail__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.expertise-detail--dark .expertise-detail__title {
    color: var(--white);
}

.expertise-detail__content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    padding-left: 80px;
}

.expertise-detail__desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
}

.expertise-detail--dark .expertise-detail__desc {
    color: rgba(255,255,255,0.8);
}

.expertise-detail__services-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-light);
}

.expertise-detail--dark .expertise-detail__services-title {
    border-bottom-color: rgba(255,255,255,0.15);
}

.expertise-detail__list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 10px;
    line-height: 1.6;
}

.expertise-detail--dark .expertise-detail__list li {
    color: rgba(255,255,255,0.75);
}

.expertise-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}


/* ============================================
   INSIGHTS PAGE
   ============================================ */

/* === INSIGHTS SECTION === */
.insights-section {
    padding: 80px 40px 90px;
    background: var(--white);
}

.insights-section__container {
    max-width: 1100px;
    margin: 0 auto;
}

.insights-section__subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 60px 0 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* Featured Insight */
.insight-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition);
}

.insight-featured:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.insight-featured__image {
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

.insight-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-featured:hover .insight-featured__img {
    transform: scale(1.05);
}

.insight-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.3) 0%,
        transparent 100%
    );
}

.insight-featured__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.insight-featured__content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-featured__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.insight__category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.insight__date {
    font-size: 0.78rem;
    color: var(--gray);
}

.insight-featured__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 16px;
}

.insight-featured__desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.insight__read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.insight__read-more:hover {
    color: var(--navy);
    gap: 10px;
}

.insight__read-more .arrow {
    transition: transform var(--transition);
}

.insight__read-more:hover .arrow {
    transform: translateX(4px);
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.insight-card {
    padding: 30px 26px;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

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

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

.insight-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.insight-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 12px;
}

.insight-card__desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* === NEWSLETTER === */
.newsletter {
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.newsletter__container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.newsletter__content {
    flex: 1;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.newsletter__desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.newsletter__form {
    flex: 1;
}

.newsletter__input-group {
    display: flex;
    gap: 0;
}

.newsletter__input {
    flex: 1;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-right: none;
    outline: none;
    transition: all var(--transition);
}

.newsletter__input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter__input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
}

.newsletter__btn {
    border-radius: 0;
    white-space: nowrap;
}


/* ============================================
   CONTACT PAGE
   ============================================ */

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 40px 90px;
    background: var(--white);
}

.contact-section__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

/* Contact Info */
.contact-info {
    padding-right: 20px;
}

.contact-info__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info__subtitle {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 36px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info__icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__icon svg {
    width: 100%;
    height: 100%;
}

.contact-info__label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info__text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
}

.contact-info__text--small {
    font-size: 0.82rem;
    color: var(--gray);
}

.contact-info__link {
    font-size: 0.88rem;
    color: var(--text-body);
    transition: color var(--transition);
}

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

.contact-info__social {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    color: var(--navy);
    transition: all var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px 36px;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
}

.contact-form__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form__desc {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__group {
    margin-bottom: 18px;
}

.contact-form__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 11px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    outline: none;
    transition: all var(--transition);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 164, 78, 0.1);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--gray);
}

.contact-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* === MAP SECTION === */
.map-section {
    background: var(--navy-dark);
    padding: 0;
}

.map-section__container {
    max-width: 100%;
}

.map-section__embed {
    width: 100%;
    height: 380px;
    filter: grayscale(30%) contrast(1.05);
}

.map-section__embed iframe {
    width: 100%;
    height: 100%;
}


/* ============================================
   INNER PAGES - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .firm-overview__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .firm-overview__image {
        order: -1;
    }

    .firm-overview__img {
        height: 300px;
    }

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

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

    .expertise-detail__content {
        padding-left: 0;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .insight-featured {
        grid-template-columns: 1fr;
    }

    .insight-featured__image {
        min-height: 250px;
    }

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

    .contact-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .newsletter__container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .newsletter__form {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 340px;
    }

    .page-hero--compact {
        min-height: 280px;
    }

    .page-hero__container {
        padding: 100px 20px 60px;
    }

    .page-hero__title {
        font-size: 1.8rem;
    }

    .page-hero__subtitle {
        font-size: 0.9rem;
    }

    .firm-overview {
        padding: 50px 20px 60px;
    }

    .values {
        padding: 50px 20px 60px;
    }

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

    .value-card {
        padding: 30px 24px;
    }

    .why-us {
        padding: 50px 20px 60px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .cta-banner__container {
        padding: 50px 20px;
    }

    .cta-banner__title {
        font-size: 1.4rem;
    }

    .expertise-detail {
        padding: 50px 20px 60px;
    }

    .expertise-detail__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .expertise-detail__title {
        font-size: 1.2rem;
    }

    .insights-section {
        padding: 50px 20px 60px;
    }

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

    .newsletter {
        padding: 40px 20px;
    }

    .newsletter__input-group {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter__input {
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .contact-section {
        padding: 50px 20px 60px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

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

    .map-section__embed {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .page-hero__title {
        font-size: 1.5rem;
    }

    .page-hero__label {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .insight-featured__content {
        padding: 24px 20px;
    }

    .insight-featured__title {
        font-size: 1.1rem;
    }

    .insight-card {
        padding: 24px 20px;
    }

    .firm-overview__img {
        height: 220px;
    }

    .firm-overview__image-accent {
        display: none;
    }
}


/* ============================================
   EXPERTISE CARD LINKS (Homepage)
   ============================================ */

a.expertise__card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.expertise__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

.expertise__card-link .arrow {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.expertise__card:hover .expertise__card-link {
    opacity: 1;
    transform: translateY(0);
}

.expertise__card:hover .expertise__card-link .arrow {
    transform: translateX(4px);
}


/* ============================================
   PRACTICE DETAIL PAGES
   ============================================ */

/* === PRACTICE INTRO === */
.practice-intro {
    padding: 80px 40px 70px;
    background: var(--white);
}

.practice-intro__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.practice-intro__icon-badge {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    color: var(--gold);
    padding: 12px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-intro__icon-badge svg {
    width: 100%;
    height: 100%;
}

.practice-intro__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 22px;
    line-height: 1.3;
}

.practice-intro__text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* === PRACTICE SERVICES GRID === */
.practice-services {
    padding: 80px 40px 90px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.practice-services__container {
    max-width: 1100px;
    margin: 0 auto;
}

.practice-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.practice-service-card {
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15, 32, 68, 0.5);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.practice-service-card:hover {
    background: rgba(21, 45, 90, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

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

.practice-service-card__number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(197, 164, 78, 0.2);
    margin-bottom: 14px;
    line-height: 1;
}

.practice-service-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.3;
}

.practice-service-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* === PRACTICE APPROACH === */
.practice-approach {
    padding: 80px 40px 90px;
    background: var(--white);
}

.practice-approach__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.practice-approach__text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.practice-approach__list {
    list-style: none;
}

.practice-approach__list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 18px;
    line-height: 1.7;
}

.practice-approach__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.practice-approach__list li strong {
    color: var(--navy);
    font-weight: 600;
}

.practice-approach__stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
}

.practice-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    transition: all var(--transition);
}

.practice-stat:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.practice-stat__icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    flex-shrink: 0;
}

.practice-stat__icon svg {
    width: 100%;
    height: 100%;
}

.practice-stat__label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* === RELATED EXPERTISE === */
.related-expertise {
    padding: 70px 40px 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.related-expertise__container {
    max-width: 1000px;
    margin: 0 auto;
}

.related-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    display: block;
    padding: 30px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(15, 32, 68, 0.4);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.related-card:hover {
    border-color: var(--gold);
    background: rgba(21, 45, 90, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.related-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.related-card__desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 12px;
}

.related-card__arrow {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform var(--transition);
    display: inline-block;
}

.related-card:hover .related-card__arrow {
    transform: translateX(6px);
}


/* ============================================
   PRACTICE PAGES - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .practice-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-approach__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .practice-approach__stats {
        flex-direction: row;
        gap: 16px;
    }

    .practice-stat {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

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

@media (max-width: 768px) {
    .practice-intro {
        padding: 50px 20px 40px;
    }

    .practice-intro__title {
        font-size: 1.3rem;
    }

    .practice-services {
        padding: 50px 20px 60px;
    }

    .practice-services__grid {
        grid-template-columns: 1fr;
    }

    .practice-approach {
        padding: 50px 20px 60px;
    }

    .practice-approach__stats {
        flex-direction: column;
    }

    .practice-stat {
        flex-direction: row;
        text-align: left;
    }

    .related-expertise {
        padding: 50px 20px 60px;
    }

    .related-expertise__grid {
        grid-template-columns: 1fr;
    }

    .expertise__card-link {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .practice-intro__icon-badge {
        width: 60px;
        height: 60px;
    }

    .practice-service-card {
        padding: 28px 22px;
    }
}



/* === WORDPRESS FIXES === */

body.admin-bar .header { top: 32px !important; }

@media screen and (max-width: 782px) {

    body.admin-bar .header { top: 46px !important; }

}


/* Reveal logic safety */

.reveal { opacity: 1; transform: none; }

.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }

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