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

:root {
    --primary-color: #0d1b2a;
    --secondary-color: #c9a030;  /* More saturated gold */
    --accent-color: #415a77;
    --text-dark: #1b263b;
    --text-light: #778da9;
    --bg-light: #fafbfc;
    --bg-white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: 
        radial-gradient(circle at 25% 35%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(65, 90, 119, 0.06) 0%, transparent 45%),
        linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(65, 90, 119, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.3) 0%, transparent 35%),
        radial-gradient(circle at 30% 80%, rgba(65, 90, 119, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 90% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 10% 60%, rgba(65, 90, 119, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0d1b2a 0%, #1b263b 20%, #415a77 40%, #778da9 60%, #415a77 80%, #0d1b2a 100%);
    opacity: 1;
    pointer-events: none;
}

#particle-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(212, 175, 55, 0.15) 50px, rgba(212, 175, 55, 0.15) 52px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(65, 90, 119, 0.12) 70px, rgba(65, 90, 119, 0.12) 72px),
        repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(212, 175, 55, 0.08) 120px, rgba(212, 175, 55, 0.08) 121px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(65, 90, 119, 0.06) 100px, rgba(65, 90, 119, 0.06) 101px);
    animation: subtleShift 18s ease-in-out infinite;
}

#particle-canvas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 30% 60%, rgba(65, 90, 119, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(65, 90, 119, 0.12) 0%, transparent 20%),
        radial-gradient(circle at 15% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 22%),
        radial-gradient(circle at 85% 80%, rgba(65, 90, 119, 0.1) 0%, transparent 22%),
        radial-gradient(circle at 40% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 18%);
    animation: floatingShapes 25s linear infinite;
}

@keyframes subtleShift {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: translateX(35px) translateY(-25px) scale(1.08) rotate(2deg);
        opacity: 1.3;
    }
    50% { 
        transform: translateX(-30px) translateY(30px) scale(0.92) rotate(-2deg);
        opacity: 1.5;
    }
    75% { 
        transform: translateX(25px) translateY(-35px) scale(1.06) rotate(1deg);
        opacity: 1.1;
    }
}

@keyframes floatingShapes {
    0% { 
        transform: rotate(0deg) scale(1) translateX(0) translateY(0);
        opacity: 0.8;
    }
    20% { 
        transform: rotate(72deg) scale(1.12) translateX(30px) translateY(-20px);
        opacity: 1.2;
    }
    40% { 
        transform: rotate(144deg) scale(0.88) translateX(-25px) translateY(25px);
        opacity: 1.4;
    }
    60% { 
        transform: rotate(216deg) scale(1.15) translateX(20px) translateY(-30px);
        opacity: 1.1;
    }
    80% { 
        transform: rotate(288deg) scale(0.92) translateX(-35px) translateY(15px);
        opacity: 1.3;
    }
    100% { 
        transform: rotate(360deg) scale(1) translateX(0) translateY(0);
        opacity: 0.8;
    }
}

@keyframes legalPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes emojiFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-5px) rotate(-3deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-15px) rotate(8deg);
        opacity: 0.6;
    }
}

@keyframes symbolAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scalesPulse {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
}

@keyframes bookFlip {
    0%, 100% { 
        transform: rotateY(0deg);
    }
    50% { 
        transform: rotateY(15deg);
    }
}

@keyframes gavelStrike {
    0%, 90%, 100% { 
        transform: rotate(0deg);
    }
    5%, 15% { 
        transform: rotate(-15deg);
    }
    10% { 
        transform: rotate(10deg);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.99), rgba(250, 251, 252, 0.98));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 2px 10px rgba(13, 27, 42, 0.08);
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 160, 48, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(27, 38, 59, 0.95) 100%);
    border-radius: 8px;
    letter-spacing: -0.5px;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(250, 251, 252, 0.45) 100%);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: heroFloat 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(65, 90, 119, 0.06) 0%, transparent 70%);
    animation: heroFloat 30s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% { 
        transform: translate(-20px, -15px) rotate(120deg);
        opacity: 0.8;
    }
    66% { 
        transform: translate(15px, -25px) rotate(240deg);
        opacity: 0.4;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.why-choose {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.feature-number::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    padding: 0.2rem 0.8rem;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(27, 38, 59, 0.85) 100%);
    border-radius: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.badge-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(2deg);
    }
}

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.practice-areas {
    padding: 6rem 0;
    background: rgba(250, 251, 252, 0.65);
    position: relative;
    z-index: 1;
}

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

.practice-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.practice-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.practice-card:hover::after {
    opacity: 1;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.practice-card:hover::before {
    transform: scaleX(1);
}

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

.practice-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    position: relative;
}

.practice-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.practice-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    z-index: 1;
}

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

.practice-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.practice-list {
    list-style: none;
}

.practice-list li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.practice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}


.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

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

.about-image {
    position: relative;
}

.legal-symbols {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
}

.legal-symbols::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    animation: legalPulse 4s ease-in-out infinite;
}

.legal-symbols::after {
    content: '⚖️ 📚 🔨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.8rem;
    opacity: 0.3;
    animation: emojiFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.symbol-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.symbol-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.legal-symbols:hover .symbol-item {
    animation-play-state: paused;
    transform: scale(1.05);
}

.legal-symbols:hover::before {
    animation-duration: 1s;
}

.symbol-item svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.symbol-item:hover svg {
    color: white;
    transform: scale(1.1);
}

.symbol-scales {
    animation: 
        float 6s ease-in-out infinite,
        scalesPulse 3s ease-in-out infinite,
        symbolAppear 0.8s ease-out;
}

.symbol-book {
    animation: 
        float 6s ease-in-out infinite 2s,
        bookFlip 4s ease-in-out infinite 1s,
        symbolAppear 0.8s ease-out 0.3s both;
}

.symbol-gavel {
    animation: 
        float 6s ease-in-out infinite 4s,
        gavelStrike 5s ease-in-out infinite 2s,
        symbolAppear 0.8s ease-out 0.6s both;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-intro {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
}

.faq {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact {
    padding: 6rem 0;
    background: rgba(250, 251, 252, 0.65);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b474);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-content p, .info-content a {
    color: var(--text-light);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--secondary-color);
}

.office-hours {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.office-hours ul {
    list-style: none;
}

.office-hours li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.office-hours li span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:not([value=""]) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.form-group select[value=""] ~ label {
    top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.form-group select option[value=""] {
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

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

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

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    padding: 0.5rem 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

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

    .hero-badge {
        position: static;
        margin: 3rem auto 0;
        max-width: 200px;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

    .practice-card {
        padding: 2rem 1.5rem;
    }

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

    .legal-symbols {
        height: 300px;
        padding: 2rem;
        gap: 1.5rem;
    }

    .symbol-item {
        width: 70px;
        height: 70px;
    }

    .symbol-item svg {
        width: 35px;
        height: 35px;
    }

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

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.2rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-scales {
    margin-bottom: 2rem;
    animation: scaleBalance 2s ease-in-out infinite;
}

.loader-scales svg {
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.4));
}

.scale-left {
    transform-origin: 30px 40px;
    animation: tiltLeft 2s ease-in-out infinite;
}

.scale-right {
    transform-origin: 70px 40px;
    animation: tiltRight 2s ease-in-out infinite;
}

@keyframes scaleBalance {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(-2deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(2deg); }
}

@keyframes tiltLeft {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg) translateY(5px); }
    75% { transform: rotate(5deg) translateY(-3px); }
}

@keyframes tiltRight {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg) translateY(-5px); }
    75% { transform: rotate(-5deg) translateY(3px); }
}

.loader-text {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    animation: loadProgress 2s ease-out forwards;
    border-radius: 3px;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Removed FAB and Scroll to Top styles */

/* Enhanced Animations */
.hero-title {
    position: relative;
    overflow: hidden;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmer {
    0% { 
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

/* Card Hover Effects */
.practice-card {
    position: relative;
    overflow: hidden;
}

.practice-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.practice-card:hover::after {
    opacity: 0.1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Interactive Form Effects */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Success Animation */
@keyframes successPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.form-status.success {
    animation: successPulse 0.5s ease;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Removed FAB and scroll-top mobile styles */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .practice-card {
        padding: 1.5rem;
    }

    .practice-icon {
        width: 60px;
        height: 60px;
    }

    .practice-icon svg {
        width: 30px;
        height: 30px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 0.8rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}