/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-blue: #0a1a44;
    --platinum-silver: #e5e5e5;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e4a6;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}


body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--royal-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 26, 68, 0.95);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--royal-blue), #1a2a54);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 68, 0.7);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--royal-blue);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.gavel-icon {
    font-size: 1.2rem;
    animation: gavelSwing 2s ease-in-out infinite;
}

/* Prestige Highlights */
.prestige-highlights {
    padding: 5rem 0;
    background: var(--gray-100);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    margin-bottom: 1rem;
    color: var(--royal-blue);
}

/* Quote Carousel */
.quote-carousel {
    padding: 4rem 0;
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quote-slide.active {
    display: block;
    opacity: 1;
}

.quote-slide blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.quote-slide cite {
    color: var(--gray-600);
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Legacy Section */
.legacy-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.legacy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.legacy-text h2 {
    margin-bottom: 1.5rem;
    color: var(--royal-blue);
}

.legacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.about-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--royal-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.mission-values {
    display: grid;
    gap: 2rem;
}

.mission h3,
.values h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.values ul {
    list-style: none;
    padding-left: 0;
}

.values li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.timeline-container h3 {
    color: var(--royal-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-content h4 {
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.accreditation {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 15px;
    margin-top: 3rem;
}

.scales-animation {
    margin-bottom: 1rem;
}

.scales {
    font-size: 3rem;
    animation: scalesTilt 3s ease-in-out infinite;
}

/* Practice Areas */
.practice-areas {
    padding: 5rem 0;
    background: var(--gray-100);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.practice-card:hover::before {
    left: 100%;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.practice-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.practice-card h3 {
    margin-bottom: 1rem;
    color: var(--royal-blue);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Team Categories */
.team-category {
    margin-bottom: 4rem;
}

.category-title {
    text-align: center;
    color: var(--royal-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* Team Grids */
.team-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.leadership-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.associates-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 800px;
    margin: 0 auto;
}

.support-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 400px;
    margin: 0 auto;
}

.chair-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    justify-items: center;
}

/* Medium screens - 2 columns for leadership */
@media (max-width: 1024px) and (min-width: 769px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
    }
}

/* Small screens - 1 column for all */
@media (max-width: 768px) {
    .chair-grid,
    .leadership-grid,
    .associates-grid,
    .support-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.chair-card {
    max-width: 500px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 300px;
    width: 100%;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.card-image {
    margin-bottom: 1rem;
}

.card-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.team-card:hover .card-image img {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--royal-blue);
}

.position {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.email {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--royal-blue);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: var(--royal-blue);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 300px;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--royal-blue);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--royal-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.consultation-widget {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.consultation-widget h3 {
    margin-bottom: 1rem;
    color: var(--royal-blue);
}

.calendar-placeholder {
    padding: 2rem;
    border: 2px dashed var(--gold);
    border-radius: 10px;
    color: var(--gray-600);
}

.book-btn {
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.book-btn:hover {
    background: var(--gold);
    color: var(--royal-blue);
}

/* Footer */
.footer {
    background: var(--royal-blue);
    color: var(--platinum-silver);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--platinum-silver);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details strong {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--platinum-silver);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.social-link:hover {
    background: var(--gold);
    color: var(--royal-blue);
    transform: translateY(-2px);
}

.footer-quote {
    text-align: left;
}

.footer-quote p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-style: italic;
}

.footer-quote small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--platinum-silver);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gavelSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes scalesTilt {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--royal-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .legacy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-quote {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .chair-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .associates-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .support-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlight-card,
    .practice-card {
        padding: 1.5rem;
    }

    .team-card {
        padding: 1rem;
    }

    .card-image img {
        width: 120px;
        height: 120px;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--royal-blue), #1a2a54);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Button styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--royal-blue);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
}

/* Legacy section enhancements */
.legacy-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats section */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--royal-blue);
    font-weight: 500;
}

/* About page enhancements */
.about-image {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 26, 68, 0.9);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-style: italic;
}

.timeline-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.timeline h5 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accreditation-section {
    padding: 4rem 0;
    background: var(--white);
}

.accreditation-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 10px;
}

.badge h4 {
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.why-choose-us {
    padding: 5rem 0;
    background: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Practice areas page enhancements */
.card-subtitle {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.card-content {
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.card-cta {
    display: inline-block;
    background: var(--royal-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: var(--gold);
    color: var(--royal-blue);
}

.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--gray-100);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-200);
}

.faq-question h3 {
    margin: 0;
    color: var(--royal-blue);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.process-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Team page enhancements */
.team-values {
    padding: 5rem 0;
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.awards-section {
    padding: 5rem 0;
    background: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h3 {
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

/* Contact page enhancements */
.contact-info h2 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--gray-700);
}

.contact-item small {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.map-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--royal-blue);
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.consultation-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 10px;
}

.consultation-info h4 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.consultation-info ul {
    list-style: none;
    padding: 0;
}

.consultation-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.consultation-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.calendar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.emergency-section {
    padding: 3rem 0;
    background: var(--royal-blue);
    color: var(--white);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.emergency-icon {
    font-size: 4rem;
}

.emergency-text h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-contact {
    margin-top: 1.5rem;
}

.emergency-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--royal-blue);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.emergency-number {
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA section */
.cta-section {
    padding: 4rem 0;
    background: var(--royal-blue);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enhanced Features Styles */

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.testimonial-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--royal-blue);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.testimonial-rating .stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

/* Enhanced Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.field-error.show {
    display: block;
}

.file-upload-container {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-container:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.file-upload-container.dragover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.file-upload-container input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.upload-icon {
    font-size: 2rem;
    color: var(--gold);
}

.upload-text {
    font-weight: 500;
    color: var(--royal-blue);
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.file-list {
    margin-top: 1rem;
    text-align: left;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--gray-100);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.file-name {
    font-size: 0.9rem;
    color: var(--royal-blue);
}

.file-size {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.remove-file {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.submit-btn .btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}


/* Blog Styles */
.blog-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--royal-blue);
    border: 2px solid var(--gray-300);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--royal-blue);
    border-color: var(--gold);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--royal-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.post-title {
    font-size: 1.3rem;
    color: var(--royal-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dark-gold);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.page-btn {
    background: var(--white);
    color: var(--royal-blue);
    border: 2px solid var(--gray-300);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn.active,
.page-btn:hover:not(:disabled) {
    background: var(--gold);
    color: var(--royal-blue);
    border-color: var(--gold);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post h4 {
    color: var(--royal-blue);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.recent-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--royal-blue);
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--dark-gold);
}

.practice-links {
    list-style: none;
    padding: 0;
}

.practice-links li {
    margin-bottom: 0.5rem;
}

.practice-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.practice-links a:hover {
    color: var(--gold);
}

/* Enhanced Animations */
@keyframes legalDocumentFlow {
    0% { transform: translateX(-100px) rotate(-5deg); opacity: 0; }
    50% { transform: translateX(0) rotate(0deg); opacity: 1; }
    100% { transform: translateX(100px) rotate(5deg); opacity: 0; }
}

@keyframes scalesBalance {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}

.language-selector select {
    background: var(--royal-blue);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* High Contrast Mode */
[data-theme="high-contrast"] {
    --royal-blue: #000000;
    --platinum-silver: #ffffff;
    --gold: #ffff00;
    --white: #ffffff;
    --black: #000000;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Virtual Tour Styles */
.virtual-tour-section {
    padding: 5rem 0;
    background: var(--white);
}

.tour-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.tour-viewer {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-image:hover img {
    transform: scale(1.05);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: var(--white);
}

.tour-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-btn {
    background: rgba(212, 175, 55, 0.9);
    color: var(--royal-blue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.tour-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.tour-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.tour-navigation h3 {
    color: var(--royal-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.room-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.room-item.active {
    background: var(--gold);
    color: var(--royal-blue);
    border-color: var(--dark-gold);
}

.room-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.room-details h4 {
    margin-bottom: 0.25rem;
    color: var(--royal-blue);
}

.room-details p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.room-item.active .room-details h4,
.room-item.active .room-details p {
    color: var(--royal-blue);
}

.tour-features {
    margin-top: 3rem;
}

.tour-features h3 {
    color: var(--royal-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.office-stats {
    padding: 4rem 0;
    background: var(--gray-100);
}

.tour-cta {
    padding: 4rem 0;
    background: var(--royal-blue);
    color: var(--white);
    text-align: center;
}

.tour-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.tour-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Focus improvements */
*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}
