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

:root {
    --primary: #2c3e50;
    --primary-light: #3d5a73;
    --primary-dark: #1a252f;
    --accent: #5d7a8c;
    --accent-light: #7a9bb0;
    --gold: #c9a84c;
    --gold-light: #dbc06e;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-white: #ffffff;
    --bg-light: #f5f6f8;
    --bg-gray: #e8eaed;
    --bg-dark: #1a252f;
    --border: #dde0e4;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

section {
    padding: 100px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

.section-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

/* ===== HEADER & NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 0.5px;
}

.nav-logo .logo-text span {
    color: var(--gold);
}

.nav-logo .logo-ampersand {
    color: var(--gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--bg-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--bg-white);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.nav-cta {
    background: var(--accent);
    color: var(--bg-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--accent-light);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--bg-white);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    opacity: 0.95;
}

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

.hero-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-decoration::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 8px;
    line-height: 1.15;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-content .hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-services li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.hero-services li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-statue {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-statue svg {
    width: 280px;
    height: 350px;
    opacity: 0.3;
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: -20px;
    right: -20px;
    background: rgba(26, 37, 47, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
}

.hero-stat .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonials-header .section-title h2 {
    margin-bottom: 4px;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.rating-badge .stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.rating-badge .review-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-light);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    min-height: 120px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services {
    position: relative;
}

.services-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.04;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 24px;
}

.services-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-light);
    font-family: var(--font-body);
}

.service-tab.active,
.service-tab:hover {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.service-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-content.active {
    display: grid;
}

.service-image {
    width: 100%;
    height: 350px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
    padding-left: 4px;
}

.service-link svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--accent);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-banner h2 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 4px;
}

.cta-banner .section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bg-white);
}

.cta-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--bg-white);
}

.cta-phone .phone-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.cta-phone .phone-number {
    font-weight: 600;
    font-size: 1rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us h2 {
    color: var(--bg-white);
    margin-bottom: 8px;
}

.why-us .section-subtitle {
    color: var(--gold-light);
    margin-bottom: 16px;
}

.why-us > .container > p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 50px;
}

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

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.why-card h4 {
    color: var(--bg-white);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: var(--bg-light);
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-section .section-header p {
    max-width: 600px;
    margin: 16px auto 0;
}

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

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid transparent;
    transition: var(--transition);
}

.team-card:hover .team-photo {
    border-color: var(--accent);
}

.team-photo svg {
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

.team-photo-initials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.6;
    font-weight: 700;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-brand .logo-text span {
    color: var(--gold);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.7);
}

.footer-column h4 {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.footer-column ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

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

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    background: var(--primary-dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    opacity: 0.95;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 12px;
}

.page-hero .breadcrumb {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.page-hero .breadcrumb a:hover {
    color: var(--gold-light);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.about-image svg {
    width: 100px;
    height: 100px;
    opacity: 0.15;
}

.about-text h2 {
    margin-bottom: 8px;
}

.about-text .section-subtitle {
    margin-bottom: 24px;
}

.about-values {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(93, 122, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.value-card h4 {
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== PRACTICE AREAS PAGE ===== */
.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.practice-card-image {
    height: 200px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.practice-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.85;
}

.practice-card-image svg {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    fill: rgba(255,255,255,0.8);
}

.practice-card-body {
    padding: 28px;
}

.practice-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.practice-card-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.practice-card-body .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===== TEAM PAGE ===== */
.team-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-member-photo {
    height: 300px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-member-photo .team-photo-initials {
    font-size: 3.5rem;
}

.team-member-info {
    padding: 28px;
}

.team-member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.team-member-info .member-title {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.team-member-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section h2 {
    margin-bottom: 8px;
}

.contact-form-section .section-subtitle {
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(93, 122, 140, 0.1);
}

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

.contact-info-section {
    padding: 40px;
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    color: var(--bg-white);
}

.contact-info-section h3 {
    color: var(--bg-white);
    margin-bottom: 8px;
}

.contact-info-section > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.contact-info-item h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    margin-bottom: 4px;
}

.contact-info-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-map {
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
}

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

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

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 { font-size: 2.8rem; }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-services {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        max-width: 500px;
        margin: 40px auto 0;
    }

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

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

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

    .about-intro {
        grid-template-columns: 1fr;
    }

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

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

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .nav-links,
    .nav-contact {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-dark);
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.mobile-open a {
        font-size: 1.2rem;
    }

    .nav-contact.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 40px;
        left: 0;
        width: 100%;
        align-items: center;
        z-index: 999;
        gap: 16px;
    }

    .hero-content h1 { font-size: 2.2rem; }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
    }

    .hero-stat .number { font-size: 1.5rem; }

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

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-content.active {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-actions {
        flex-direction: column;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .team-page-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .service-links {
        grid-template-columns: 1fr;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-content h1 { font-size: 1.8rem; }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        padding: 16px;
    }

    .hero-stat .number { font-size: 1.3rem; }
    .hero-stat .label { font-size: 0.6rem; }

    .btn { padding: 12px 24px; }
}
