/**
 * ConferLegal - Main Stylesheet
 */

:root {
    --primary-blue: #0a4d68;
    --primary-dark: #083d52;
    --accent-teal: #0e6b8a;
    --text-white: #ffffff;
    --text-light: #e8f1f5;
    --text-gray: #6b7c85;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --border-light: #e1e8eb;
    --success: #28a745;
    --error: #dc3545;
    --shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
    --shadow-hover: 0 8px 30px rgba(10, 77, 104, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}

*, *::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(--primary-blue);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 4px; }

/* ============ LOADING SPINNER ============ */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--text-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-indicator {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 15px;
}

.loading-indicator p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-gray);
}

/* ============ DISCLAIMER MODAL ============ */
.disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 77, 104, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.disclaimer-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.disclaimer-modal {
    background: var(--bg-white);
    max-width: 680px;
    width: 100%;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.disclaimer-overlay.hidden .disclaimer-modal {
    transform: translateY(30px);
}

.disclaimer-modal h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.disclaimer-modal p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.disclaimer-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    cursor: pointer;
}

.disclaimer-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.disclaimer-checkbox label {
    font-size: 0.9rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.btn-proceed {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.4;
    pointer-events: none;
}

.btn-proceed.active {
    opacity: 1;
    pointer-events: auto;
}

.btn-proceed.active:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* ============ GLOBAL SEARCH MODAL ============ */
.global-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 77, 104, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.global-search-modal {
    background: var(--bg-white);
    width: 100%;
    max-width: 700px;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
}

.global-search-overlay.active .global-search-modal {
    transform: translateY(0);
}

.close-search {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-search:hover {
    color: var(--primary-blue);
}

.global-search-modal h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.global-search-modal input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-blue);
    outline: none;
    transition: var(--transition);
}

.global-search-modal input:focus {
    border-color: var(--primary-blue);
}

.search-results {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.search-hint {
    color: var(--text-gray);
    text-align: center;
    padding: 20px;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-item h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.search-result-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.search-result-item .result-type {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-blue);
    color: var(--text-white);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

/* Logo colors - white by default for dark hero backgrounds */
.logo {
    color: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
    transition: color 0.4s ease;
}

.logo-tagline {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    transition: color 0.4s ease;
}

/* Logo icon - white outer/inner on dark background */
.logo-icon .logo-outer,
.logo-icon .logo-inner {
    fill: #ffffff;
    transition: fill 0.4s ease;
}

.logo-icon .logo-middle {
    fill: #0a4d68;
    transition: fill 0.4s ease;
}

/* When header is scrolled - blue logo on white background */
header.scrolled .logo-name {
    color: #0a4d68;
}

header.scrolled .logo-tagline {
    color: #6b7c85;
}

header.scrolled .logo-icon .logo-outer,
header.scrolled .logo-icon .logo-inner {
    fill: #0a4d68;
}

header.scrolled .logo-icon .logo-middle {
    fill: #ffffff;
}

/* Search and menu icons - white by default */
.search-btn svg, .menu-btn svg {
    stroke: #ffffff;
    transition: stroke 0.4s ease;
}

.menu-btn span {
    background: #ffffff;
    transition: background 0.4s ease;
}

header.scrolled .search-btn svg,
header.scrolled .menu-btn svg {
    stroke: #0a4d68;
}

header.scrolled .menu-btn span {
    background: #0a4d68;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 1001;
}

.search-btn, .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover svg, .menu-btn:hover svg {
    opacity: 0.7;
}

.search-btn svg, .menu-btn svg {
    width: 24px;
    height: 24px;
}

.menu-btn {
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 2px;
}

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

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

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

/* ============ FULLSCREEN MENU ============ */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: var(--primary-blue);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

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

.fullscreen-menu nav ul {
    list-style: none;
}

.fullscreen-menu nav li {
    margin-bottom: 15px;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.fullscreen-menu.active nav li {
    transform: translateX(0);
    opacity: 1;
}

.fullscreen-menu nav li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu nav li:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu nav li:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu nav li:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu nav li:nth-child(5) { transition-delay: 0.3s; }

.fullscreen-menu nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.fullscreen-menu nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
}

.fullscreen-menu nav a:hover::after {
    width: 100%;
}

/* ============ HERO SECTIONS ============ */
.hero-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 45% 55%;
    scroll-snap-align: start;
    position: relative;
}

.hero-content {
    background: var(--primary-blue);
    padding: 120px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

.btn-outline:hover svg {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-section:hover .hero-image img {
    transform: scale(1.05);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.3) 0%, transparent 50%);
}

/* Section Navigation */
.section-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.section-nav-item .dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    background: transparent;
    transition: var(--transition);
}

.section-nav-item.active .dot {
    background: var(--primary-blue);
}

.section-nav-item .label {
    position: absolute;
    right: 25px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
}

.section-nav-item:hover .label,
.section-nav-item.active .label {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-blue);
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 22.5%;
    transform: translateX(-50%);
    z-index: 100;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============ EXPERTISE SECTION ============ */
.expertise-section {
    padding: 120px 60px 80px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
}

.expertise-sidebar {
    background: var(--primary-blue);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: fit-content;
}

.expertise-sidebar h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.expertise-sidebar p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.practice-search-box {
    position: relative;
    margin-bottom: 30px;
}

.practice-search-box .search-input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
}

.practice-search-box .search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.practice-search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.practice-search-box .search-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.6);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.back-link:hover {
    opacity: 1;
}

.expertise-content {
    padding: 40px 0;
}

.expertise-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.expertise-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin: 40px 0 25px;
}

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

.practice-item {
    padding: 20px 25px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.practice-item:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.practice-item.hidden {
    display: none;
}

/* ============ PEOPLE SECTION ============ */
.people-section {
    padding: 120px 60px 80px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 60px;
    background: var(--bg-light);
}

.people-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.people-sidebar h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.people-sidebar p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-tag {
    padding: 10px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    font-size: 0.8rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 25px;
}

.filter-tag.active,
.filter-tag:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--primary-blue);
    outline: none;
    transition: var(--transition);
    margin-bottom: 15px;
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-input:focus {
    border-color: var(--primary-blue);
}

.select-dropdown {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
    outline: none;
    margin-bottom: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7c85' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.btn-apply-filter {
    width: 100%;
    padding: 15px 20px;
    background: var(--primary-blue);
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-apply-filter:hover {
    background: var(--primary-dark);
}

.btn-clear-filter {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-clear-filter:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.date-range-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.date-range-inputs .search-input {
    margin-bottom: 0;
}

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

.person-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: var(--transition);
}

.person-card.hidden {
    display: none;
}

.person-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.person-card:hover img {
    transform: scale(1.05);
}

.person-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 77, 104, 0.95));
    padding: 80px 25px 25px;
    transition: var(--transition);
}

.person-card:hover .person-info {
    background: rgba(10, 77, 104, 0.95);
    padding-top: 120px;
}

.person-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 5px;
}

.person-role {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 10px;
}

.person-practice {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    line-height: 1.6;
}

.person-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.person-card:hover .person-arrow {
    opacity: 1;
    transform: translateX(0);
}

.person-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-blue);
}

/* ============ INSIGHTS SECTION ============ */
.insights-section {
    padding: 120px 60px 80px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 60px;
}

.insights-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.insights-sidebar h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.insights-sidebar p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.insight-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 30px;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.insight-card.hidden {
    display: none;
}

.insight-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.insight-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(10, 77, 104, 0.08);
    color: var(--primary-blue);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.insight-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.insight-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1.4;
    margin-bottom: 15px;
    transition: var(--transition);
}

.insight-card:hover .insight-title {
    color: var(--accent-teal);
}

.insight-excerpt {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.insight-practice {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 15px;
}

.read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.insight-card:hover .read-more svg {
    transform: translateX(5px);
}

/* ============ AWARDS SECTION ============ */
.awards-section {
    padding: 100px 60px;
    background: var(--bg-light);
    text-align: center;
}

.awards-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.award-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.award-logo {
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.award-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-blue);
}

.contact-item-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-item-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-item-content a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-content a:hover {
    color: var(--primary-blue);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--primary-blue);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 0.75rem;
    margin-top: 5px;
    min-height: 18px;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-blue);
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-response.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-response.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

/* ============ FOOTER ============ */
footer {
    background: var(--primary-blue);
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    max-width: 350px;
    margin-top: 20px;
}

.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-white);
    opacity: 0.7;
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 50% 50%;
    }

    .expertise-section,
    .people-section,
    .insights-section {
        grid-template-columns: 1fr;
    }

    .expertise-sidebar,
    .people-sidebar,
    .insights-sidebar {
        position: relative;
        top: auto;
    }

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

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

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

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

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

    .hero-content {
        padding: 100px 30px 60px;
        min-height: 60vh;
    }

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

    .hero-image {
        min-height: 40vh;
    }

    .section-nav {
        display: none;
    }

    .fullscreen-menu {
        width: 100%;
    }

    .expertise-section,
    .people-section,
    .insights-section,
    .awards-section,
    .contact-section {
        padding: 60px 20px;
    }

    .expertise-sidebar,
    .people-sidebar,
    .insights-sidebar {
        padding: 40px 30px;
    }

    .expertise-sidebar h2,
    .people-sidebar h2,
    .insights-sidebar h2 {
        font-size: 2.2rem;
    }

    .practice-grid,
    .people-grid,
    .insights-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

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

    footer {
        padding: 60px 20px 30px;
    }

    .scroll-indicator {
        left: 50%;
    }

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

    .global-search-modal {
        padding: 30px;
    }
}
