/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --navy: #1a2744;
    --navy-light: #243354;
    --navy-dark: #111b30;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-light: #e8e6e1;
    --gray: #6b7280;
    --gray-dark: #374151;
    --text: #1f2937;
    --text-light: #6b7280;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);

    --radius: 6px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--off-white);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

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

.section-title-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
}

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

/* ========================================
   Header Top Bar
   ======================================== */
.header-top {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-top-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.header-top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-top-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.header-top-item a {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--white);
}

.nav-logo strong {
    font-weight: 700;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 8px;
}

.lang-btn {
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 3px;
    opacity: 0.5;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 0.8;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    opacity: 1;
}

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

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

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* ========================================
   Hero Image
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text span {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.4rem, 3.4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.95),
        0 0 8px rgba(255, 255, 255, 0.85),
        0 0 16px rgba(255, 255, 255, 0.7),
        0 0 28px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    max-width: 90%;
    text-align: center;
    line-height: 1.3;
    padding: 0 16px;
}

/* ========================================
   About / Team
   ======================================== */
.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--gray-light);
}

.team-member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-photo {
    text-align: center;
}

.team-photo img {
    width: 198px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.team-lang {
    font-style: italic;
    color: var(--gold) !important;
    font-weight: 500;
}

.team-lang a {
    color: var(--gold);
    transition: color var(--transition);
}

.team-lang a:hover {
    color: var(--text);
}

.team-contact {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.team-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
}

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

.team-contact svg {
    color: var(--gold);
    flex-shrink: 0;
}

.team-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.about-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 24px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

.team-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin: 36px 0 44px;
    padding-bottom: 14px;
    position: relative;
    line-height: 1.3;
}

.team-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.about-headline {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.4;
    padding: 18px 16px;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Saznaj više button */
.team-actions {
    margin-top: 22px;
    text-align: center;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-learn-more:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

/* ========================================
   Member Detail Modal
   ======================================== */
.member-detail[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 27, 48, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease;
}

.modal-dialog {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
    z-index: 1;
}

.modal-close:hover {
    color: var(--navy);
    background: var(--gray-light);
}

.modal-body {
    padding: 40px;
}

.member-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.member-detail-photo img {
    width: 200px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.member-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 18px;
}

.member-detail-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.member-detail-content .team-lang {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.member-detail-contact {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.member-detail-contact p {
    margin-bottom: 6px;
    font-size: 0.92rem;
    color: var(--text);
}

.member-detail-contact strong {
    color: var(--navy);
    font-weight: 600;
    margin-right: 6px;
}

.member-detail-contact a {
    color: var(--navy);
    font-weight: 500;
}

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

body.modal-open {
    overflow: hidden;
}

/* ========================================
   Practice Areas
   ======================================== */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.practice-grid:last-child {
    margin-bottom: 0;
}

.practice-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.practice-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.practice-card ul {
    list-style: none;
    padding: 0;
}

.practice-card li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.practice-card li:last-child {
    margin-bottom: 0;
}

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

.practice-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.practice-card-highlight {
    background: var(--navy);
    border-color: var(--navy);
}

.practice-card-highlight h4 {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.practice-card-highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.services-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.services-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin: 56px 0 28px;
    padding-bottom: 12px;
    position: relative;
}

.services-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
}

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

.why-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-card p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   References
   ======================================== */
.references {
    background: var(--white);
}

.ref-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin: 40px 0 24px;
    padding-bottom: 12px;
    position: relative;
}

.ref-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.ref-logos + .ref-subtitle {
    margin-top: 50px;
}

.ref-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 28px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ref-list li {
    position: relative;
    padding: 10px 14px 10px 28px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text);
    background: var(--off-white);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--transition), transform var(--transition);
}

.ref-list li:hover {
    background: var(--gray-light);
    transform: translateX(2px);
}

.ref-list li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.ref-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 0;
}

.ref-logo {
    text-align: center;
    padding: 24px 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ref-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ref-logo img {
    max-height: 70px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter var(--transition), opacity var(--transition);
}

.ref-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.ref-logo-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.ref-logo-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.45;
}

/* ========================================
   Contact
   ======================================== */
.contact {
    position: relative;
    background: transparent !important;
}

.contact-parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.parallax-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item a {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
}

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

.contact .section-title-light {
    color: var(--text);
}

.contact .section-title-line-light {
    background: var(--gold);
}

.contact .form-group label {
    color: var(--text);
}

.contact .section-title,
.contact-item a,
.contact .form-group label,
.contact .form-group input,
.contact .form-group textarea,
.contact .btn,
.contact .form-status {
    font-weight: 700;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .btn-primary {
    display: block;
    margin: 8px auto 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-status {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success {
    color: #27ae60;
}

.form-status.error {
    color: #e74c3c;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

/* ========================================
   Google Maps
   ======================================== */
.map-section {
    line-height: 0;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0 24px;
}

.footer-content {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    font-size: 0.82rem;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-sep {
    margin: 0 8px;
    opacity: 0.4;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ========================================
   Legal Pages
   ======================================== */
.legal-page {
    padding-top: 60px;
    background: var(--white) !important;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-light);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-page p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--gold);
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .team-member {
        grid-template-columns: 150px 1fr;
        gap: 28px;
    }

    .team-photo img {
        width: 150px;
    }

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

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

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

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

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

    .section-header {
        margin-bottom: 36px;
    }

    .header-top {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 190px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .lang-toggle {
        margin-top: 16px;
        margin-left: 0;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-photo {
        display: flex;
        justify-content: center;
    }

    .team-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .modal-body {
        padding: 28px 20px;
    }

    .member-detail {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .member-detail-photo {
        display: flex;
        justify-content: center;
    }

    .member-detail-photo img {
        width: 160px;
    }

    .member-detail-contact {
        text-align: left;
    }

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

    .ref-list {
        grid-template-columns: 1fr;
    }

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

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

    .hero-image {
        height: 45vh;
        min-height: 280px;
    }

    .contact-form {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 0.9rem;
    }

    .hero-image {
        height: 35vh;
        min-height: 220px;
    }
}
