/* ============================================
   JM Consult Group - Premium Law Firm Website
   Luxury Dark & Gold Theme
   ============================================ */

:root {
    --navy: #0A1A2F;
    --navy-light: #142a4a;
    --navy-dark: #060f1c;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8960C;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --gray-dark: #2A2A2A;
    --text-dark: #1a1a1a;
    --text-light: #888888;
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--navy);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 26, 47, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 3px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 40%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

/* Gavel Animation */
.gavel-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
}

.gavel {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: linear-gradient(180deg, #8B6914 0%, #D4AF37 50%, #8B6914 100%);
    border-radius: 5px;
    transform-origin: 80% center;
    animation: gavelSwing 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.gavel::before {
    content: '';
    position: absolute;
    right: -15px;
    top: -10px;
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, #D4AF37 0%, #8B6914 100%);
    border-radius: 5px;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.3);
}

.gavel::after {
    content: '';
    position: absolute;
    left: -80px;
    top: 8px;
    width: 80px;
    height: 14px;
    background: linear-gradient(90deg, #5C4033 0%, #8B6914 100%);
    border-radius: 3px;
}

.sound-block {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: linear-gradient(180deg, #8B6914 0%, #5C4033 100%);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.impact-particles {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    overflow: visible;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleBurst 3s ease-out infinite;
}

.particle:nth-child(1) { animation-delay: 0.8s; left: 40%; }
.particle:nth-child(2) { animation-delay: 0.85s; left: 45%; }
.particle:nth-child(3) { animation-delay: 0.9s; left: 50%; }
.particle:nth-child(4) { animation-delay: 0.95s; left: 55%; }
.particle:nth-child(5) { animation-delay: 1s; left: 60%; }

.glow-ring {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: glowExpand 3s ease-out infinite;
}

@keyframes gavelSwing {
    0%, 100% { transform: translateX(-50%) rotate(-15deg); }
    40% { transform: translateX(-50%) rotate(-15deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
    55% { transform: translateX(-50%) rotate(-2deg); }
    60% { transform: translateX(-50%) rotate(0deg); }
    70% { transform: translateX(-50%) rotate(-15deg); }
}

@keyframes particleBurst {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-50px) scale(0); }
}

@keyframes glowExpand {
    0%, 80% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    85% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) scale(1.5); }
}

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-title .gold-text {
    color: var(--gold);
    position: relative;
}

.hero-title .gold-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 1s ease-out 1.5s forwards;
}

.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Cormorant Garamond', serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

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

@keyframes lineExpand {
    to { transform: scaleX(1); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-light {
    background: var(--gray);
}

.section-white {
    background: var(--white);
}

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

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

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--white);
}

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

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 5px;
    z-index: -1;
}

.about-content h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--navy);
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 5px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.practice-icon {
    width: 60px;
    height: 60px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.practice-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.practice-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.practice-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.practice-link:hover {
    gap: 1rem;
}

/* ============================================
   ATTORNEYS
   ============================================ */
.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.attorney-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.attorney-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.attorney-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--navy-light);
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.attorney-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(10,26,47,0.9));
    transform: translateY(100%);
    transition: var(--transition);
}

.attorney-card:hover .attorney-overlay {
    transform: translateY(0);
}

.attorney-overlay a {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
}

.attorney-info {
    padding: 1.5rem;
}

.attorney-info h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.attorney-info .title {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.attorney-info .practice-areas {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Attorney Search */
.search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-bar input,
.search-bar select {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    min-width: 200px;
}

.search-bar input:focus,
.search-bar select:focus {
    outline: none;
    border-color: var(--gold);
}

/* ============================================
   LEAD ATTORNEY PROFILE
   ============================================ */
.lead-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.lead-image {
    position: relative;
}

.lead-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lead-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.85rem;
}

.lead-content h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.lead-content .lead-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lead-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.lead-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.lead-tab.active,
.lead-tab:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.lead-tab-content {
    display: none;
}

.lead-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
}

.info-list li strong {
    color: var(--navy);
    min-width: 150px;
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin: 0 auto 1.5rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-role {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.rating {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question .icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* ============================================
   FORMS
   ============================================ */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

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

.form-group input[type="file"] {
    padding: 0.5rem;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(39,174,96,0.1);
    color: #27ae60;
    border: 1px solid rgba(39,174,96,0.3);
}

.alert-error {
    background: rgba(231,76,60,0.1);
    color: #e74c3c;
    border: 1px solid rgba(231,76,60,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-brand .logo-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body {
    background: var(--navy-dark);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--navy);
    border-right: 1px solid var(--border-gold);
    z-index: 1000;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
}

.admin-sidebar-header h2 {
    color: var(--gold);
    font-size: 1.3rem;
}

.admin-nav {
    list-style: none;
    padding: 1rem 0;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    border-right: 3px solid var(--gold);
}

.admin-main {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gold);
}

.admin-header h1 {
    color: var(--white);
    font-size: 1.8rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--navy);
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    padding: 1.5rem;
}

.admin-stat-card h3 {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.admin-stat-card .number {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--navy);
    border-radius: 5px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.admin-table th {
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending { background: rgba(243,156,18,0.2); color: #f39c12; }
.status-confirmed { background: rgba(39,174,96,0.2); color: #27ae60; }
.status-cancelled { background: rgba(231,76,60,0.2); color: #e74c3c; }
.status-completed { background: rgba(52,152,219,0.2); color: #3498db; }

.admin-btn {
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.admin-btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.admin-btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.admin-btn-danger {
    background: rgba(231,76,60,0.2);
    color: #e74c3c;
}

.admin-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.admin-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-search input,
.admin-search select {
    padding: 0.6rem 1rem;
    background: var(--navy);
    border: 1px solid var(--border-gold);
    border-radius: 3px;
    color: var(--white);
    font-size: 0.9rem;
}

.admin-search input:focus,
.admin-search select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Login */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.login-box {
    background: var(--navy-light);
    padding: 3rem;
    border-radius: 5px;
    border: 1px solid var(--border-gold);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h1 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.login-box p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .lead-profile {
        grid-template-columns: 1fr;
    }

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

    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10,26,47,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

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

    .footer-social {
        justify-content: center;
    }

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

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

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }
}

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

    .form-container {
        padding: 1.5rem;
    }

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar, .footer, .scroll-indicator, .hero-buttons {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
