/* =============================================
   BARRISTERS CIRCLE — LANDING PAGE
   ============================================= */

/* ----- RESET & VARIABLES ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #060b14;
    --bg-navy: #0a1226;
    --bg-card: #0f1a30;
    --gold: #c8a44e;
    --gold-bright: #e0c06e;
    --gold-dim: rgba(200, 164, 78, 0.2);
    --white: #ffffff;
    --text-main: #e2e4e9;
    --text-muted: #8b8f9a;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

.text-gold { color: var(--gold); }
.text-gradient {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--bg-deep);
}

.btn-gold:hover {
    box-shadow: 0 8px 32px rgba(200, 164, 78, 0.35);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

/* ----- HEADER ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-mark {
    font-size: 1.7rem;
}

.logo-accent {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.nav-btn {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ----- HERO ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg-deep);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 164, 78, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(200, 164, 78, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 22px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 28px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* ----- HERO VISUAL / GLOBE ----- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 380px;
    height: 380px;
}

.globe {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1a2a4a, var(--bg-navy) 70%, var(--bg-deep));
    box-shadow: 0 0 80px rgba(200, 164, 78, 0.08),
                inset 0 0 60px rgba(0,0,0,0.4);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.globe-inner {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 164, 78, 0.2);
    background: 
        radial-gradient(circle at 20% 30%, rgba(200,164,78,0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255,255,255,0.02) 0%, transparent 40%);
}

.globe-flags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flag {
    position: absolute;
    font-size: 1.6rem;
    animation: flagFloat 4s ease-in-out infinite;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.4);
}

.flag:nth-child(odd) { animation-delay: 1s; }
.flag:nth-child(even) { animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes flagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ----- VALUE PROP ----- */
.value-prop {
    padding: 100px 0;
    background: var(--bg-navy);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.value-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ----- MAP TEASER ----- */
.map-teaser {
    padding: 100px 0;
    background: var(--bg-deep);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-text h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 18px;
}

.map-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 440px;
}

.map-visual {
    display: flex;
    justify-content: center;
}

.rotating-globe {
    position: relative;
    width: 280px;
    height: 280px;
}

.globe-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #1e3055, #0a1226 70%, #060b14);
    box-shadow: 0 0 60px rgba(200, 164, 78, 0.1);
    animation: rotateGlobe 20s linear infinite;
}

.globe-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 78, 0.15);
    animation: ringRotate 8s linear infinite;
}

.ring-1 {
    width: 320px;
    height: 320px;
    top: -160px;
    left: -160px;
}

.ring-2 {
    width: 360px;
    height: 360px;
    top: -180px;
    left: -180px;
    animation-direction: reverse;
    animation-duration: 12s;
}

.ring-3 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-duration: 16s;
}

.map-pin {
    position: absolute;
    font-size: 1.3rem;
    animation: pinPulse 2.5s ease-in-out infinite;
    cursor: pointer;
}

.pin-1 { top: 25%; left: 48%; animation-delay: 0s; }
.pin-2 { top: 18%; left: 30%; animation-delay: 0.5s; }
.pin-3 { top: 20%; left: 62%; animation-delay: 1s; }
.pin-4 { top: 45%; left: 75%; animation-delay: 1.5s; }

@keyframes rotateGlobe {
    from { background-position: 0 0; }
    to { background-position: 100% 0; }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ----- PRACTICE AREAS ----- */
.practice-areas {
    padding: 100px 0;
    background: var(--bg-navy);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.practice-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.practice-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}

.practice-card:hover::before {
    opacity: 1;
}

.practice-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-dim);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.practice-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.practice-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ----- SOCIAL PROOF ----- */
.social-proof {
    padding: 100px 0;
    background: var(--bg-deep);
    text-align: center;
}

.proof-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: -10px;
}

blockquote {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-author {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ----- CTA SECTION ----- */
.cta-section {
    padding: 80px 0;
    background: var(--bg-navy);
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-card), #141f38);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
}

.cta-card h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.1rem;
}

/* ----- FOOTER ----- */
.footer {
    padding: 70px 0 0;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 14px;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 22px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-metrics {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }
    .globe-container {
        width: 260px;
        height: 260px;
    }
    .map-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .map-text p {
        margin: 0 auto 32px;
    }
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 100px 30px;
        gap: 24px;
        transition: var(--transition);
        border-left: 1px solid rgba(255,255,255,0.05);
    }
    .nav-menu.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .section-header h2,
    .map-text h2 {
        font-size: 2rem;
    }
    .practice-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
    .cta-card {
        padding: 40px 24px;
    }
    .cta-card h2 {
        font-size: 1.7rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    blockquote {
        font-size: 1.3rem;
    }
    .hero-metrics {
        gap: 16px;
    }
    .metric-value {
        font-size: 1.6rem;
    }
}
/* =============================================
   DIRECTORY PAGE
   ============================================= */

/* ----- PAGE HERO ----- */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--bg-deep);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 14px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ----- DIRECTORY SECTION ----- */
.directory-section {
    padding: 60px 0 100px;
    background: var(--bg-navy);
    min-height: 60vh;
}

/* ----- FILTERS ----- */
.directory-filters {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.04);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.filter-select {
    background: var(--bg-deep);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 36px 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    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='%23c8a44e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: var(--transition);
    min-width: 200px;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--gold);
    outline: none;
}

.filter-results {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-bottom: 12px;
}

.filter-results span {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

/* ----- DIRECTORY GRID ----- */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ----- LAWYER CARD (extended for directory) ----- */
.lawyer-card-full {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.lawyer-card-full:hover {
    border-color: var(--gold-dim);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lawyer-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.lawyer-avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2a4a, var(--bg-card));
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.lawyer-info h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.lawyer-country {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lawyer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-specialty {
    background: rgba(200, 164, 78, 0.12);
    color: var(--gold);
}

.badge-country {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.lawyer-card-full p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.lawyer-card-full .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
}

/* ----- NO RESULTS ----- */
.no-results {
    text-align: center;
    padding: 80px 20px;
    display: none;
}

.no-results-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.no-results h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .directory-grid {
        grid-template-columns: 1fr;
    }
    .directory-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-select {
        min-width: 100%;
    }
    .filter-results {
        margin-left: 0;
        padding-top: 8px;
    }
    .page-hero {
        padding: 120px 0 40px;
    }
    .page-title {
        font-size: 2rem;
    }
}
/* =============================================
   LAWYER PROFILE PAGE
   ============================================= */

/* ----- PROFILE SECTION ----- */
.profile-section {
    padding: 140px 0 80px;
    background: var(--bg-navy);
    min-height: 60vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--gold);
}

/* ----- PROFILE CARD ----- */
.profile-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 48px;
    display: none;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2a4a, var(--bg-card));
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.profile-title h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.profile-firm {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.profile-country {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ----- PROFILE BADGES ----- */
.profile-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.badge-verified {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

/* ----- PROFILE BODY ----- */
.profile-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.profile-section-block h3 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-section-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 650px;
}

.profile-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-tag {
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ----- PROFILE ACTIONS ----- */
.profile-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid rgba(255,255,255,0.15);
}

.btn-ghost-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .profile-card {
        padding: 28px 20px;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
    .profile-title h1 {
        font-size: 1.6rem;
    }
    .profile-badges {
        justify-content: center;
    }
    .profile-actions {
        flex-direction: column;
    }
    .profile-actions .btn {
        text-align: center;
        justify-content: center;
    }
    .profile-section {
        padding: 120px 0 60px;
    }
}
/* =============================================
   BLOG / INSIGHTS
   ============================================= */

.blog-section {
    padding: 60px 0 100px;
    background: var(--bg-navy);
    min-height: 60vh;
}

.blog-listing {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-listing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.blog-listing-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.blog-listing-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,78,0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.blog-listing-body { flex: 1; }

.blog-listing-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.blog-listing-body h2 { margin-bottom: 8px; }

.blog-listing-body h2 a {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.blog-listing-body h2 a:hover { color: var(--gold); }

.blog-listing-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.blog-listing-meta {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ----- BLOG POST ----- */
.blog-post-section {
    padding: 140px 0 80px;
    background: var(--bg-navy);
    min-height: 60vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    transition: var(--transition);
    text-decoration: none;
}

.back-link:hover { color: var(--gold); }

.blog-post-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 36px;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.blog-post-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-post-body {
    color: #c5c8d0;
    line-height: 1.9;
    font-size: 1rem;
}

.blog-post-body h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 36px;
    margin-bottom: 14px;
    font-family: var(--font-display);
}

.blog-post-body p { margin-bottom: 18px; }

.blog-post-footer {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

/* ----- COMMENTS ----- */
.comments-section {
    max-width: 750px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.comments-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.comment-item {
    display: flex;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 20px;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2a4a, var(--bg-card));
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1rem;
}

.comment-body { flex: 1; }

.comment-header {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.comment-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ----- COMMENT FORM ----- */
.comment-form {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 28px;
}

.comment-form h3 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-deep);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .blog-listing-card {
        flex-direction: column;
        padding: 24px;
    }
    .blog-listing-icon {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
    .blog-listing-body h2 a { font-size: 1.1rem; }
    .blog-post-header h1 { font-size: 1.8rem; }
    .blog-post-body { font-size: 0.95rem; }
    .blog-post-section { padding: 120px 0 60px; }
    .blog-post-footer .btn { width: 100%; text-align: center; justify-content: center; }
}
/* =============================================
   ABOUT PAGE
   ============================================= */

/* ----- MISSION SECTION ----- */
.about-mission {
    padding: 80px 0;
    background: var(--bg-navy);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.mission-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.mission-text p {
    color: #c5c8d0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.mission-text strong {
    color: var(--gold);
    font-weight: 600;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--gold-dim);
    transform: translateX(4px);
}

.value-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.value-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ----- SERVICES SECTION ----- */
.about-services {
    padding: 80px 0;
    background: var(--bg-deep);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ----- WHY SECTION ----- */
.about-why {
    padding: 80px 0;
    background: var(--bg-navy);
}

.why-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.why-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.why-content p {
    color: #c5c8d0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.why-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .mission-text h2,
    .why-content h2 {
        font-size: 1.6rem;
    }
    .about-mission,
    .about-services,
    .about-why {
        padding: 50px 0;
    }
}
/* ===== FLAG POPUP ===== */
.flag-popup {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    z-index: 2000;
    min-width: 200px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: popupIn 0.25s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.flag-popup-flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.flag-popup h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.flag-popup p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.flag-popup p strong {
    color: var(--gold);
}

.flag-popup-count {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}

.flag-popup-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
}
/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */

.privacy-content {
    padding: 60px 0 100px;
    background: var(--bg-navy);
}

.privacy-body {
    max-width: 750px;
    margin: 0 auto;
}

.privacy-body p {
    color: #c5c8d0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-body h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.privacy-body ul {
    color: #c5c8d0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
    list-style: disc;
}

.privacy-body ul li {
    margin-bottom: 6px;
}

.privacy-body a {
    color: var(--gold);
    text-decoration: underline;
}

.privacy-body strong {
    color: var(--white);
}
/* ----- MAP TEASER ----- */
/* ----- MAP TEASER ----- */
.map-teaser {
    padding: 100px 0;
    background: var(--bg-deep);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-text h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 18px;
}

.map-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 440px;
}

.map-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----- WORLD MAP CONTAINER ----- */
.world-map-container {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(200,164,78,0.04) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(200,164,78,0.15);
    animation: mapFloat 6s ease-in-out infinite;
}

/* Grid lines */
.map-grid-line {
    position: absolute;
    background: rgba(200,164,78,0.06);
}

.line-h-1 { top: 25%; left: 10%; width: 80%; height: 1px; }
.line-h-2 { top: 50%; left: 5%; width: 90%; height: 1px; }
.line-h-3 { top: 75%; left: 10%; width: 80%; height: 1px; }
.line-v-1 { left: 25%; top: 10%; width: 1px; height: 80%; }
.line-v-2 { left: 50%; top: 5%; width: 1px; height: 90%; }
.line-v-3 { left: 75%; top: 10%; width: 1px; height: 80%; }

/* Country markers */
.country-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.country-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.marker-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    display: block;
    animation: dotPulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(200,164,78,0.6);
}

.marker-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.country-marker:hover .marker-label {
    color: var(--gold);
}

/* Staggered animations */
.country-marker:nth-child(5) .marker-dot { animation-delay: 0s; }
.country-marker:nth-child(6) .marker-dot { animation-delay: 0.3s; }
.country-marker:nth-child(7) .marker-dot { animation-delay: 0.6s; }
.country-marker:nth-child(8) .marker-dot { animation-delay: 0.9s; }
.country-marker:nth-child(9) .marker-dot { animation-delay: 1.2s; }
.country-marker:nth-child(10) .marker-dot { animation-delay: 0.2s; }
.country-marker:nth-child(11) .marker-dot { animation-delay: 0.5s; }
.country-marker:nth-child(12) .marker-dot { animation-delay: 0.8s; }
.country-marker:nth-child(13) .marker-dot { animation-delay: 1.1s; }

@keyframes mapFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}

@media (max-width: 1024px) {
    .map-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .map-text p {
        margin: 0 auto 32px;
    }
    .map-text h2 {
        font-size: 2rem;
    }
    .world-map-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
}
@media (max-width: 1024px) {
    .map-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .map-text p {
        margin: 0 auto 32px;
    }
    .map-text h2 {
        font-size: 2rem;
    }
    .world-map-static {
        max-width: 320px;
        margin: 0 auto;
    }
}
/* ===== AWARD STRIP ===== */
.award-strip {
    background: linear-gradient(135deg, rgba(200,164,78,0.08), rgba(200,164,78,0.02));
    border-top: 1px solid rgba(200,164,78,0.12);
    border-bottom: 1px solid rgba(200,164,78,0.12);
    padding: 22px 0;
    text-align: center;
}

.award-strip p {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}
/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
    padding: 60px 0 100px;
    background: var(--bg-navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* Contact info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold-dim);
}

.contact-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 36px;
}

.contact-form-wrapper h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-deep);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
}