@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #0a1128;
    --primary: #1b2a4a;
    --primary-light: #243556;
    --accent: #c9a84c;
    --accent-light: #e8d48b;
    --accent-glow: rgba(201,168,76,0.3);
    --surface: #162040;
    --surface-light: #1e2d52;
    --text: #f0f0f0;
    --text-secondary: #8e9bae;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    --glass: rgba(22,32,64,0.7);
    --glass-border: rgba(201,168,76,0.15);
    --radius: 12px;
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-position: center center;
}
picture { display: block; }
ul { list-style: none; }

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

/* TOP BAR */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--surface) 100%);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left a, .top-bar-right a { color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--accent); }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-right .social-links { display: flex; gap: 12px; }
.top-bar-right .social-links a { font-size: 1rem; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-border); }
.top-bar-right .social-links a:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
    transition: var(--transition);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.navbar-brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(201,168,76,0.08); }
.nav-book-consultation {
    white-space: nowrap;
}
.nav-links a:hover::after, .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    position: relative;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
    color: var(--text);
    background: rgba(201,168,76,0.08);
}
.nav-dropdown-toggle i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}
.nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(10,17,40,0.98);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1200;
}
.nav-dropdown-menu a {
    display: flex;
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* TRACK CASE BUTTON */
.btn-track-case {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent), #b8952f);
    color: var(--primary-dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulseGlow 3s ease-in-out infinite;
}
.btn-track-case:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 30px rgba(201,168,76,0.5);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 4px 20px var(--accent-glow); }
    50% { box-shadow: 0 4px 30px rgba(201,168,76,0.5); }
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--surface) 100%);
}
.home-slider {
    display: block;
    padding-top: 0;
    padding-bottom: 50px;
}
.home-slider-track {
    position: relative;
    min-height: 70vh;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,17,40,0.78) 0%, rgba(10,17,40,0.55) 55%, rgba(10,17,40,0.42) 100%);
    z-index: 1;
}
.hero-slide .hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.02);
}
.hero-slide .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: start;
    min-height: 70vh;
    padding-top: 20px;
    padding-bottom: 88px;
    gap: 14px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52,152,219,0.1) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite reverse;
}
@keyframes heroGlow { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(30px,-30px); } }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
    padding-right: 0;
    display: grid;
    gap: 18px;
    justify-items: start;
}
.hero-copy {
    width: min(100%, 720px);
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}
.hero h1 {
    font-size: clamp(2.35rem, 4.8vw, 4.35rem);
    margin-bottom: 20px;
    max-width: 760px;
    line-height: 1;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .hero-title-line {
    line-height: 0.9;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 720px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
    display: flex;
    gap: 28px 56px;
    margin-top: 0;
    align-self: end;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stat h3 { font-size: 2.2rem; color: var(--accent); font-family: 'Playfair Display', serif; }
.hero-stat p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,17,40,0.5);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}
.hero-slider-nav:hover { background: rgba(201,168,76,0.18); border-color: var(--accent); color: var(--accent); }
.hero-slider-nav.prev { left: 32px; }
.hero-slider-nav.next { right: 32px; }
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}
.hero-slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: var(--transition);
}
.hero-slider-dot.active {
    width: 34px;
    background: var(--accent);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b8952f);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px var(--accent-glow); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--glass-border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section-header h2 span { color: var(--accent); }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* PRACTICE AREAS */
.practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.practice-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    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: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}
.practice-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow); }
.practice-card:hover::before { opacity: 1; }
.practice-card .icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.practice-card:hover .icon { background: var(--accent); color: var(--primary-dark); }
.practice-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.practice-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    background: linear-gradient(135deg, var(--surface), var(--primary));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image .placeholder-icon { font-size: 5rem; opacity: 0.2; }
.about-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to top, var(--primary-dark), transparent);
}
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content h2 span { color: var(--accent); }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.95rem; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: var(--transition);
}
.about-feature:hover { border-color: rgba(201,168,76,0.3); }
.about-feature .check { color: var(--accent); font-size: 1.1rem; }
.about-feature span { font-size: 0.92rem; font-weight: 500; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-secondary); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--primary-dark); font-size: 1.1rem;
}
.testimonial-info h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.testimonial-info p { font-size: 0.82rem; color: var(--text-secondary); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent);
}
.contact-item h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-secondary); }
.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* FOOTER */
.footer {
    background: var(--primary);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.footer-about .footer-brand span { color: var(--accent); }
.footer-about p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; color: var(--accent); font-family: 'Inter', sans-serif; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; color: var(--text-secondary); }
.footer ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* TRACK CASE PAGE */
.track-section { min-height: 80vh; display: flex; align-items: center; padding: 120px 0 80px; }
.track-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(20px);
}
.track-card h1 { font-size: 2rem; margin-bottom: 12px; }
.track-card h1 span { color: var(--accent); }
.track-card > p { color: var(--text-secondary); margin-bottom: 32px; }
.track-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.track-input-group input {
    flex: 1;
    padding: 14px 20px;
    background: var(--surface);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.track-input-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.track-input-group button { white-space: nowrap; }

/* CASE RESULT */
.case-result {
    text-align: left;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}
.case-result h3 { font-size: 1.3rem; margin-bottom: 20px; font-family: 'Inter', sans-serif; }

/* VISUAL TRACKER */
.case-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0;
    position: relative;
    padding: 0 10px;
}
.case-tracker::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 34px;
    right: 34px;
    height: 3px;
    background: var(--surface);
    border-radius: 3px;
    z-index: 0;
}
.tracker-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.tracker-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    border: 3px solid var(--surface-light);
    background: var(--primary-dark);
    color: var(--text-secondary);
}
.tracker-step.completed .tracker-dot {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}
.tracker-step.active .tracker-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--accent-glow);
    animation: activePulse 2s ease-in-out infinite;
}
@keyframes activePulse {
    0%,100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 35px rgba(201,168,76,0.5); }
}
.tracker-step.upcoming .tracker-dot { opacity: 0.4; }
.tracker-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    max-width: 80px;
}
.tracker-step.active .tracker-label { color: var(--accent); }
.tracker-step.completed .tracker-label { color: var(--success); }

.case-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.case-info-item { padding: 14px 16px; background: var(--surface); border-radius: 8px; }
.case-info-item label { font-size: 0.78rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
.case-info-item span { font-size: 0.95rem; font-weight: 600; }

/* STATUS BADGES */
.status-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.status-open { background: rgba(52,152,219,0.15); color: var(--info); }
.status-progress { background: rgba(243,156,18,0.15); color: var(--warning); }
.status-review { background: rgba(155,89,182,0.15); color: #9b59b6; }
.status-resolved { background: rgba(46,204,113,0.15); color: var(--success); }
.status-closed { background: rgba(142,155,174,0.15); color: var(--text-secondary); }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ATTORNEYS / LEGAL TEAM */
.attorneys-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 20px; }
.attorney-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.attorney-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow); }
.attorney-photo {
    height: 320px;
    background: linear-gradient(135deg, var(--primary), var(--surface));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: rgba(201,168,76,0.15);
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}
.attorney-photo i { transition: var(--transition); }
.attorney-card:hover .attorney-photo i { color: rgba(201,168,76,0.4); transform: scale(1.1); }
.attorney-info { padding: 24px; text-align: center; }
.attorney-info h3 { font-size: 1.25rem; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.attorney-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.attorney-specialization { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 16px; }

/* CASE RESULTS / SUCCESS STORIES */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.result-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.result-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.result-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 16px;
}
.result-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-weight: 600; }
.result-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.result-outcome {
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.result-outcome label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-secondary); font-weight: 500; }
.result-outcome span { font-size: 1.05rem; font-weight: 700; color: var(--success); }

/* LEGAL PROCESS steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 20px; position: relative; }
.process-step {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.process-num {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700; color: var(--accent);
    margin: 0 auto 20px;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.process-step p { font-size: 0.88rem; color: var(--text-secondary); }

/* PHASE GUIDE */
.phase-guide-section { position: relative; overflow: hidden; }
.phase-guide-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(201,168,76,0.10), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(255,255,255,0.06), transparent 24%);
    pointer-events: none;
}
.phase-guide-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: stretch;
}
.phase-guide-intro {
    padding: 34px;
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(180deg, rgba(22,32,64,0.92), rgba(27,42,74,0.88));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.phase-guide-intro h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
}
.phase-guide-intro h2 span { color: var(--accent); }
.phase-guide-copy {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}
.phase-guide-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.phase-guide-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
}
.phase-guide-badges i { color: var(--accent); }
.phase-guide-timeline {
    position: relative;
    padding: 18px 0 18px 18px;
    margin-left: 10px;
}
.phase-guide-timeline::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(201,168,76,0.7), rgba(201,168,76,0.15));
}
.phase-guide-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 56px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 18px 18px 0;
    margin-bottom: 14px;
}
.phase-guide-item:last-child { margin-bottom: 0; }
.phase-guide-step,
.phase-guide-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.phase-guide-step {
    background: linear-gradient(135deg, var(--accent), #b8952f);
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 800;
}
.phase-guide-icon {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--accent);
    font-size: 1.1rem;
}
.phase-guide-content {
    padding: 6px 0 0;
}
.phase-guide-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.phase-guide-content p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1024px) {
    .phase-guide-shell { grid-template-columns: 1fr; }
    .phase-guide-timeline { margin-left: 0; padding-left: 0; }
    .phase-guide-timeline::before { left: 29px; }
}
@media (max-width: 768px) {
    .phase-guide-intro { padding: 26px; }
    .phase-guide-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 0;
    }
    .phase-guide-timeline::before { left: 27px; }
}

/* PARTNERS / TRUSTED ORGANIZATIONS */
.partners-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    opacity: 0.7;
    padding: 20px 0;
}
.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.partner-logo:hover { opacity: 1; color: var(--accent); }
.partner-logo i { font-size: 1.4rem; color: var(--accent); }

/* FAQ Accordion */
.faq-section { position: relative; overflow: hidden; }
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 14%, rgba(201,168,76,0.10), transparent 28%),
        radial-gradient(circle at 80% 18%, rgba(255,255,255,0.05), transparent 22%);
    pointer-events: none;
}
.faq-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: start;
}
.faq-intro {
    padding: 34px;
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(180deg, rgba(22,32,64,0.92), rgba(27,42,74,0.88));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.faq-intro h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
}
.faq-intro h2 span { color: var(--accent); }
.faq-copy {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}
.faq-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.faq-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
}
.faq-highlights i { color: var(--accent); }
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
.faq-item:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-2px); }
.faq-question {
    padding: 20px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
}
.faq-question span { font-family: 'Inter', sans-serif; }
.faq-index {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #b8952f);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.85rem;
}
.faq-question > span:nth-child(2) {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0,0,0,0.08);
}
.faq-answer-content {
    padding: 0 22px 20px 72px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
}
.faq-item.active .faq-answer {
    max-height: 260px;
}
.faq-item .faq-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
@media (max-width: 1024px) {
    .faq-shell { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .faq-intro { padding: 26px; }
    .faq-question { padding: 18px 18px; font-size: 0.98rem; }
    .faq-answer-content { padding: 0 18px 18px 18px; }
    .faq-question { flex-wrap: nowrap; }
}

/* BLOG / RESOURCES */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow); }
.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--surface), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(201,168,76,0.1);
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}
.blog-content { padding: 24px; }
.blog-meta { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 10px; display: flex; gap: 16px; }
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-card h3 { font-size: 1.2rem; font-family: 'Playfair Display', serif; margin-bottom: 12px; font-weight: 700; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.blog-readmore { font-size: 0.88rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.blog-readmore:hover { color: var(--accent-light); }
.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
    gap: 38px;
    align-items: start;
}
.news-detail-card {
    padding: 42px;
    background: linear-gradient(180deg, rgba(22,32,64,0.96), rgba(18,27,54,0.98));
    border: 1px solid rgba(201,168,76,0.18);
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.news-detail-image {
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.12);
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}
.news-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}
.news-detail-placeholder {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2.4rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(201,168,76,0.05));
}
.news-detail-content {
    min-width: 0;
    padding-top: 4px;
}
.news-detail-kicker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.news-featured-chip {
    background: rgba(201,168,76,0.15);
    color: var(--accent);
}
.news-detail-title {
    font-size: 2.85rem !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em;
    max-width: 16ch;
}
.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 20px;
}
.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.14);
    color: var(--text-secondary);
    font-size: 0.84rem;
}
.news-detail-meta i {
    color: var(--accent);
}
.news-detail-summary {
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
    color: var(--text);
    font-size: 1.16rem;
    line-height: 1.8;
    max-width: 60ch;
}
.news-detail-body {
    font-size: 1.16rem;
    line-height: 2.08;
    color: var(--text-secondary);
    max-width: 66ch;
}

/* PRINT STYLING */
.btn-print {
    background: var(--surface-light);
    color: var(--text);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-print:hover { border-color: var(--accent); color: var(--accent); }

@media print {
    body { background: #fff !important; color: #000 !important; font-family: 'Inter', sans-serif !important; }
    .top-bar, .navbar, .footer, .track-card > form, .track-card > p, .btn-print, .contact-form, .hero-buttons, .top-bar-right, .top-bar-left, .top-bar-left a, .social-links { display: none !important; }
    .track-section { padding: 40px 0 !important; }
    .track-card { max-width: 100% !important; border: none !important; box-shadow: none !important; background: none !important; padding: 0 !important; color: #000 !important; }
    .case-result { border-top: 2px solid #000 !important; margin-top: 20px !important; padding-top: 20px !important; color: #000 !important; }
    .case-result h3 { color: #000 !important; }
    .case-info-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; margin-top: 15px !important; }
    .case-info-item { background: #f5f5f5 !important; border: 1px solid #ccc !important; color: #000 !important; padding: 10px !important; border-radius: 4px !important; }
    .case-info-item label { color: #444 !important; font-size: 0.72rem !important; }
    .case-info-item span { color: #000 !important; font-size: 0.88rem !important; font-weight: bold !important; }
    
    .case-tracker { display: flex !important; flex-direction: row !important; justify-content: space-between !important; margin: 20px 0 !important; }
    .case-tracker::before { background: #ddd !important; top: 16px !important; }
    .tracker-step { flex: 1 !important; flex-direction: column !important; align-items: center !important; }
    .tracker-dot { width: 32px !important; height: 32px !important; font-size: 0.75rem !important; border: 2px solid #ccc !important; background: #fff !important; color: #777 !important; }
    .tracker-step.completed .tracker-dot { background: #e0e0e0 !important; border-color: #777 !important; color: #000 !important; }
    .tracker-step.active .tracker-dot { background: #000 !important; border-color: #000 !important; color: #fff !important; }
    .tracker-label { font-size: 0.65rem !important; color: #666 !important; max-width: 60px !important; margin-top: 6px !important; }
    
    .status-badge { border: 1px solid #777 !important; color: #000 !important; background: none !important; padding: 2px 8px !important; }
    
    /* Print Header decoration */
    .track-card h1 { font-size: 1.8rem !important; margin-bottom: 20px !important; color: #000 !important; }
    .track-card h1 span { color: #000 !important; border-bottom: 2px solid #000 !important; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .about-image { height: 300px !important; }
    .nav-book-consultation { padding: 6px 12px !important; font-size: 0.76rem !important; white-space: nowrap; }
    .navbar-brand { gap: 10px; font-size: 1.18rem; }
    .navbar-brand .brand-icon { width: 38px; height: 38px; font-size: 1.05rem; }
    .navbar-brand span { white-space: nowrap; }
    .nav-links {
        gap: 8px;
    }
    .nav-links a,
    .nav-dropdown {
        width: min(100%, 240px);
    }
    .hero.home-slider {
        min-height: auto;
        align-items: stretch;
    }
    .home-slider {
        padding-bottom: 0;
    }
    .home-slider-track {
        min-height: auto;
    }
    .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: none;
    }
    .hero-slide.active {
        display: block;
        pointer-events: auto;
    }
    .hero-slide .container {
        min-height: 0;
        padding-bottom: 12px;
        grid-template-rows: auto auto;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-copy {
        max-width: 100%;
    }
    .hero-stats {
        margin-top: 8px;
    }
}
@media (max-width: 768px) {
    .top-bar-left, .top-bar-right { font-size: 0.78rem; }
    .nav-book-consultation { padding: 6px 10px !important; font-size: 0.72rem !important; white-space: nowrap; }
    .navbar-brand { gap: 8px; font-size: 0.98rem; max-width: calc(100% - 72px); }
    .navbar-brand .brand-icon { width: 34px; height: 34px; font-size: 0.95rem; border-radius: 8px; flex: 0 0 auto; }
    .navbar-brand img { height: 34px !important; width: auto !important; flex: 0 0 auto; }
    .navbar-brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .hero.home-slider {
        min-height: auto;
    }
    .nav-links { 
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(10,17,40,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding-top: 18px;
        padding-bottom: 12px;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        width: min(100%, 240px);
        justify-content: center;
        text-align: center;
        min-height: 42px;
    }
    .nav-dropdown {
        width: min(100%, 240px);
        flex-direction: column;
        align-items: stretch;
    }
    .nav-dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 14px;
        color: var(--text);
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(201,168,76,0.12);
        border-radius: 10px;
        font-size: 0.92rem;
        font-weight: 500;
        box-sizing: border-box;
        min-height: 42px;
    }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-dropdown.active .nav-dropdown-menu {
        display: grid;
        gap: 6px;
    }
    .nav-dropdown-menu a {
        justify-content: center;
        width: 100%;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(201,168,76,0.14);
        padding: 7px 14px;
    }
    .hamburger { display: flex; z-index: 1001; }
    .hero-stats { gap: 18px 28px; }
    .hero-badge { margin-bottom: 16px; }
    .hero p { margin-bottom: 22px; }
    .hero h1 { margin-bottom: 12px; font-size: 2.05rem; line-height: 0.92; max-width: 100%; }
    .hero h1 .hero-title-line { line-height: 0.98; }
    .home-slider { padding-bottom: 0; }
    .hero-slide .container {
        padding-top: 10px;
        padding-bottom: 8px;
        gap: 8px;
    }
    .hero-content { width: 100%; max-width: 100%; padding-right: 0; }
    .hero-copy { width: 100%; max-width: 100%; }
    .hero-slider-nav { width: 42px; height: 42px; }
    .hero-slider-nav.prev { left: 12px; }
    .hero-slider-nav.next { right: 12px; }
    .hero-slider-dots { bottom: 14px; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .track-input-group { flex-direction: column; }
    .case-tracker { flex-direction: column; gap: 4px; align-items: flex-start; padding: 0; }
    .case-tracker::before { display: none; }
    .tracker-step { flex-direction: row; gap: 14px; width: 100%; }
    .tracker-dot { width: 36px; height: 36px; min-width: 36px; font-size: 0.75rem; }
    .tracker-label { max-width: none; text-align: left; }
    .case-info-grid { grid-template-columns: 1fr; }
    .news-detail-layout { grid-template-columns: 1fr; }
    .news-detail-card { padding: 24px; }
    .news-detail-image, .news-detail-image img, .news-detail-placeholder { min-height: 220px; }
    .news-detail-title { font-size: 2.1rem !important; max-width: none; }
    .news-detail-summary { font-size: 1rem; }
    .news-detail-body { font-size: 1.02rem; }
}

/* SUBPAGE HERO BANNER */
.subpage-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.subpage-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}
.subpage-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}
.subpage-hero h1 span {
    color: var(--accent);
}
.subpage-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.subpage-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.subpage-breadcrumbs a {
    color: var(--accent);
}
.subpage-breadcrumbs a:hover {
    color: var(--accent-light);
}

/* EXTRA UTILITIES FOR SUBPAGES */
.contact-map-iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--glass-border);
}

/* REAL IMAGE OVERRIDES */
.attorney-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}
.attorney-card:hover .attorney-photo img {
    transform: scale(1.04);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
}
.services-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
.subpage-hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.subpage-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}
.subpage-hero > .container { position: relative; z-index: 1; }

/* BOOKING MODAL */
body.modal-open { overflow: hidden; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 20, 0.82);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.modal-backdrop.active { display: flex; }
.modal-shell {
    width: min(100%, 760px);
    max-height: min(90vh, 920px);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(24, 33, 62, 0.98), rgba(17, 26, 50, 0.98));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    padding: 28px;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.modal-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    cursor: pointer;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.modal-summary div {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--glass-border);
}
.modal-summary span,
.payment-panel span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.modal-summary strong,
.payment-panel strong {
    font-size: 1rem;
    color: var(--text);
}
.payment-panel {
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}
.payment-panel-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.payment-panel p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.6;
}
