/* Arcadia Legal Group Styles - Navy Blue, Gold, and White */

/* CSS Variables */
:root {
    /* Base Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 100%, 15%);

    /* Navy Blue Primary */
    --primary: hsl(220, 100%, 15%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-hover: hsl(220, 100%, 12%);
    
    /* Gold Accent */
    --gold: hsl(45, 100%, 50%);
    --gold-dark: hsl(42, 100%, 45%);
    --gold-light: hsl(48, 100%, 65%);
    --gold-foreground: hsl(220, 100%, 15%);

    /* Card and Surface Colors */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 100%, 15%);
    --secondary: hsl(220, 20%, 97%);
    --secondary-foreground: hsl(220, 100%, 15%);
    
    /* Muted Colors */
    --muted: hsl(220, 15%, 95%);
    --muted-foreground: hsl(220, 20%, 40%);

    /* Accent Colors */
    --accent: hsl(45, 100%, 50%);
    --accent-foreground: hsl(220, 100%, 15%);

    /* State Colors */
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --success: hsl(120, 100%, 25%);
    --success-foreground: hsl(0, 0%, 100%);

    /* Borders and Inputs */
    --border: hsl(220, 15%, 90%);
    --input: hsl(220, 15%, 90%);

    /* Layout */
    --radius: 0.75rem;
    
    /* Custom Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(220, 100%, 15%), hsl(220, 100%, 25%));
    --gradient-gold: linear-gradient(135deg, hsl(42, 100%, 45%), hsl(48, 100%, 65%));
    --gradient-hero: linear-gradient(135deg, hsl(220, 100%, 15%) 0%, hsl(220, 80%, 20%) 50%, hsl(45, 100%, 50%) 100%);
    
    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px hsla(220, 100%, 15%, 0.2);
    --shadow-gold: 0 5px 20px -5px hsla(45, 100%, 50%, 0.3);
    --shadow-card: 0 4px 15px -3px hsla(220, 100%, 15%, 0.1);
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Containers */
    --container-max-width: 1200px;
    --container-padding: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.mb-5 {
    margin-bottom: 3rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.text-white {
    color: white;
}

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

.bg-primary {
    background: var(--primary);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.col-md-6 {
    flex: 1;
    min-width: 300px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: hsla(220, 100%, 15%, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-elegant);
}

.navbar.scrolled {
    background: hsla(220, 100%, 15%, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px hsla(220, 100%, 15%, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--gold-light);
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
}

.nav-link {
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: hsla(45, 100%, 50%, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition-smooth);
}

/* Button Styles */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elegant);
    cursor: pointer;
}

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

.btn-gold {
    background: var(--gold);
    color: var(--gold-foreground);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
}

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

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--gold-foreground);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Card Styles */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-elegant);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        hsla(220, 100%, 15%, 0.8) 0%, 
        hsla(220, 100%, 15%, 0.6) 50%, 
        hsla(45, 100%, 50%, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.content-wrapper {
    max-width: 600px;
}

.slide-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.2);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--gold-foreground);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--gold-foreground);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Services Grid */
.services {
    background: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--gold-dark);
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.credential {
    text-align: center;
}

.credential-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.credential p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.about-features {
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.feature-card.offset {
    margin-top: 2rem;
}

.feature-card:hover {
    background: var(--secondary);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--gold-foreground);
    font-size: 1.25rem;
}

.feature-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Attorneys Preview */
.attorneys-preview {
    background: var(--secondary);
    padding: 5rem 0;
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.attorney-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.attorney-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.attorney-info {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.attorney-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.attorney-details h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.attorney-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.attorney-bio {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.attorney-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.attorney-specialties span {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.attorney-achievement {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attorney-achievement i {
    color: var(--gold);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--gold);
}

.testimonial-text {
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.author-avatar.gold {
    background: var(--gold);
    color: var(--gold-foreground);
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-text h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.footer-brand .logo-text p {
    color: var(--gold-light);
    margin: 0;
}

.footer-brand p {
    color: hsla(0, 0%, 100%, 0.8);
    margin-top: 1rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item p {
    color: hsla(0, 0%, 100%, 0.8);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom-content p {
    color: hsla(0, 0%, 100%, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: hsla(0, 0%, 100%, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

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

/* Utility Classes */
.hover-lift {
    transition: var(--transition-bounce);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar .container {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link span {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
    }

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

    .nav-menu .nav-link {
        color: var(--primary-foreground);
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle span {
        background: white;
    }

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

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

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

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

    .slide-title {
        font-size: 2.5rem;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .feature-card.offset {
        margin-top: 0;
    }

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

    .attorney-info {
        flex-direction: column;
        text-align: center;
    }

    .attorney-photo {
        align-self: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .attorneys-grid {
        grid-template-columns: 1fr;
    }

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

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }
}


/* Arcadia Legal Group Styles - Navy Blue, Gold, and White */

/* CSS Variables */
:root {
    /* Base Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 100%, 15%);

    /* Navy Blue Primary */
    --primary: hsl(220, 100%, 15%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-hover: hsl(220, 100%, 12%);
    
    /* Gold Accent */
    --gold: hsl(45, 100%, 50%);
    --gold-dark: hsl(42, 100%, 45%);
    --gold-light: hsl(48, 100%, 65%);
    --gold-foreground: hsl(220, 100%, 15%);

    /* Card and Surface Colors */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 100%, 15%);
    --secondary: hsl(220, 20%, 97%);
    --secondary-foreground: hsl(220, 100%, 15%);
    
    /* Muted Colors */
    --muted: hsl(220, 15%, 95%);
    --muted-foreground: hsl(220, 20%, 40%);

    /* Accent Colors */
    --accent: hsl(45, 100%, 50%);
    --accent-foreground: hsl(220, 100%, 15%);

    /* State Colors */
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --success: hsl(120, 100%, 25%);
    --success-foreground: hsl(0, 0%, 100%);

    /* Borders and Inputs */
    --border: hsl(220, 15%, 90%);
    --input: hsl(220, 15%, 90%);

    /* Layout */
    --radius: 0.75rem;
    
    /* Custom Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(220, 100%, 15%), hsl(220, 100%, 25%));
    --gradient-gold: linear-gradient(135deg, hsl(42, 100%, 45%), hsl(48, 100%, 65%));
    --gradient-hero: linear-gradient(135deg, hsl(220, 100%, 15%) 0%, hsl(220, 80%, 20%) 50%, hsl(45, 100%, 50%) 100%);
    
    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px hsla(220, 100%, 15%, 0.2);
    --shadow-gold: 0 5px 20px -5px hsla(45, 100%, 50%, 0.3);
    --shadow-card: 0 4px 15px -3px hsla(220, 100%, 15%, 0.1);
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Containers */
    --container-max-width: 1200px;
    --container-padding: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.hover-lift {
    transition: var(--transition-bounce);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

/* Button Styles */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elegant);
    cursor: pointer;
}

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

.btn-gold {
    background: var(--gold);
    color: var(--gold-foreground);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
}

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

.btn-outline {
    border: 2px solid var(--background);
    color: var(--background);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

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

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--gold-foreground);
}

/* Card Styles */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-elegant);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-elegant);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    text-decoration: none;
    color: var(--foreground);
    transition: var(--transition-smooth);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--foreground);
}

.navbar:not(.scrolled) .nav-link {
    color: var(--background);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--foreground);
    transition: var(--transition-smooth);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: var(--background);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, hsla(220, 100%, 15%, 0.9), hsla(220, 100%, 15%, 0.7), transparent);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 50%;
}

.slide-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(45, 100%, 50%, 0.2);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-description {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 3rem;
    height: 3rem;
    background: hsla(0, 0%, 100%, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--background);
    font-size: 1.25rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: hsla(0, 0%, 100%, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 1.5rem;
}

.next-btn {
    right: 1.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: hsla(0, 0%, 100%, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active,
.indicator:hover {
    background: var(--gold);
    transform: scale(1.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(0, 0%, 100%, 0.6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: hsla(0, 0%, 100%, 0.6);
    border-radius: 2px;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
    margin: 0;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--gold-dark);
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-link:hover i {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--primary-foreground);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-foreground);
}

.about-content p {
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 1.5rem;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.credential {
    text-align: center;
}

.credential-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.credential p {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.about-features {
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: hsla(0, 0%, 100%, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.feature-card.offset {
    margin-top: 3rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

/* Attorneys Preview Section */
.attorneys-preview {
    padding: 5rem 0;
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.attorney-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.attorney-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.attorney-info {
    display: flex;
    gap: 1.5rem;
}

.attorney-photo {
    width: 6rem;
    height: 6rem;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow-elegant);
    flex-shrink: 0;
}

.attorney-details h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.attorney-title {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.attorney-bio {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.attorney-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.attorney-specialties span {
    padding: 0.25rem 0.75rem;
    background: hsla(45, 100%, 50%, 0.1);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.875rem;
}

.attorney-achievement {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attorney-achievement i {
    color: var(--gold);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.125rem;
}

.author-avatar.gold {
    background: var(--gradient-gold);
    color: var(--primary);
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--gold);
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-foreground);
}

.cta-content p {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-text h3 {
    color: var(--primary-foreground);
    margin: 0;
}

.footer-brand .logo-text p {
    color: hsla(0, 0%, 100%, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

.footer-brand > p {
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--gold);
    margin-top: 0.25rem;
    width: 1rem;
    flex-shrink: 0;
}

.contact-item p {
    color: hsla(0, 0%, 100%, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: hsla(0, 0%, 100%, 0.8);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
    }

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

    .nav-menu .nav-link {
        color: var(--primary-foreground);
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

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

    .slide-title {
        font-size: 2.5rem;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .feature-card.offset {
        margin-top: 0;
    }

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

    .attorney-info {
        flex-direction: column;
        text-align: center;
    }

    .attorney-photo {
        align-self: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .attorneys-grid {
        grid-template-columns: 1fr;
    }

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

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }
}