/*
 * Tarun Bajaj Advocate - Brand Style System
 * Dark Luxury, Glassmorphism, Cinematic Gold
 * Designed & Developed by Rana Pratap Technology
 * Website: https://www.ranaprataptechnology.com/
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-black: #050505;
    --secondary-dark: #111111;
    --gold-accent: #D4AF37;
    --soft-gold: #E5C158;
    --white: #FFFFFF;
    --grey: #DADADA;
    --grey-dark: #888888;
    --muted-gold: rgba(212, 175, 55, 0.1);
    --gold-border: rgba(212, 175, 55, 0.2);
    --gold-border-hover: rgba(229, 193, 88, 0.6);
    
    /* Glassmorphism settings */
    --glass-bg: rgba(17, 17, 17, 0.65);
    --glass-bg-hover: rgba(25, 25, 25, 0.85);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-blur: blur(16px);
    
    /* Shadows & Glows */
    --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    --gold-glow-intense: 0 0 35px rgba(229, 193, 88, 0.45);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    
    /* Transitions */
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-black);
    color: var(--grey);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-color: var(--primary-black);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-dark);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.03em;
}

p, span, li, a, label, input, textarea, .body-font {
    font-family: 'Inter', sans-serif;
}

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

/* Gold Gradient Text */
.gold-text {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--soft-gold) 50%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Sections */
section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-black);
    overflow: hidden;
}

section.bg-alternate {
    background-color: var(--secondary-dark);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 15px auto 0 auto;
}

/* Glassmorphism Panel */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-premium);
}

.glass-card:hover {
    border-color: var(--gold-border-hover);
    box-shadow: var(--gold-glow);
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-premium);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--soft-gold) 100%);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--gold-accent) 100%);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
}

.btn-secondary:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

/* Sticky Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-premium);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.nav-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--white);
}

.nav-brand-text span {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-accent);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: var(--transition-fast);
}

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

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

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

/* Hamburger & Mobile Nav */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold-accent);
    transition: var(--transition-fast);
}

/* Mobile Slide Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--secondary-dark);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    border-left: 1px solid var(--glass-border);
    z-index: 1005;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition-premium);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Background Particle Engine */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Dynamic Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

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

/* Cinematic Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.65) 0%, rgba(5, 5, 5, 0.92) 65%, rgba(5, 5, 5, 1) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.hero-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero .container {
    z-index: 3;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Trust Metric Bar */
.trust-bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.trust-card {
    padding: 30px;
    text-align: center;
    background: var(--glass-bg);
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

/* Split Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

#about {
    background: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 65%),
                linear-gradient(135deg, #050505 0%, #111111 100%) !important;
    position: relative;
}

.split-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.05);
    aspect-ratio: 4 / 3;
    width: 100%;
    min-height: 420px;
    transition: var(--transition-premium);
}

.split-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1), filter 1.5s ease;
    filter: grayscale(10%) brightness(80%) contrast(105%);
}

.split-image-container:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
}

.split-image-container:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(95%) contrast(110%);
}

.split-image-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Gold Divider */
.gold-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    margin: 20px 0;
}

/* Practice Area Card */
.practice-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.practice-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-accent);
}

.practice-card-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.practice-card-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.practice-card-desc {
    font-size: 0.95rem;
    color: var(--grey-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

.practice-card-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--gold-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.practice-card-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.practice-card-link:hover svg {
    transform: translateX(5px);
}

/* Interactive Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-accent) 20%, var(--gold-accent) 80%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-black);
    border: 2px solid var(--gold-accent);
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: var(--transition-premium);
}

.timeline-item:hover .timeline-dot {
    background: var(--gold-accent);
    box-shadow: var(--gold-glow);
    transform: translateX(-50%) scale(1.2);
}

.timeline-content {
    width: 45%;
    padding: 30px;
}

.timeline-step {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Testimonial slider */
.reviews-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

.review-slide {
    flex: 0 0 calc(33.333% - 20px);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--gold-accent);
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--grey);
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--muted-gold);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-meta h4 {
    font-size: 1rem;
    font-weight: 600;
}

.review-meta p {
    font-size: 0.75rem;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--gold-accent);
    transform: scale(1.2);
}

/* Premium Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form-panel {
    padding: 50px;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-bottom-color: var(--gold-accent);
}

.form-label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.9rem;
    color: var(--grey-dark);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--gold-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: var(--secondary-dark);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted-gold);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.95rem;
    color: var(--grey-dark);
}

.contact-info-content a:hover {
    color: var(--gold-accent);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

/* Premium Footer */
footer {
    background: #020202;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold-accent);
    margin-top: 10px;
}

.footer-about img {
    height: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--grey-dark);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--grey-dark);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--grey-dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--muted-gold);
    border: 1px solid var(--gold-border);
    color: var(--gold-accent);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    box-shadow: var(--gold-glow);
}

.social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Floating Actions Widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: var(--transition-premium);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    pointer-events: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.floating-call {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-black);
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: var(--transition-premium);
}

.floating-call::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite;
    pointer-events: none;
}

.floating-call:hover {
    transform: scale(1.1);
    background: var(--gold-accent);
    color: var(--primary-black);
    box-shadow: var(--gold-glow);
}

.floating-call svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Sticky Quick Action Mobile Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    z-index: 998;
    grid-template-columns: repeat(3, 1fr);
}

.mobile-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--grey);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-action-item:not(:last-child) {
    border-right: 1px solid rgba(212, 175, 55, 0.08);
}

.mobile-action-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-action-item.highlight {
    color: var(--gold-accent);
}

/* BCI Disclaimer Modal Styles */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 2, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.disclaimer-modal {
    width: 100%;
    max-width: 700px;
    padding: 50px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--gold-border);
    box-shadow: var(--gold-glow);
}

.disclaimer-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 20px;
}

.disclaimer-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.disclaimer-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--gold-accent);
    font-size: 1.2rem;
    top: -2px;
}

.disclaimer-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Custom Pages Visuals */
.inner-hero {
    padding: 180px 0 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    z-index: 1;
}

.inner-hero .container {
    z-index: 2;
}

.inner-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.inner-hero-breadcrumbs {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
}

.inner-hero-breadcrumbs span {
    color: var(--grey-dark);
}

/* Practice Area Directory Layout */
.practice-directory {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.practice-sidebar {
    position: sticky;
    top: 120px;
    padding: 30px;
}

.practice-sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.practice-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.practice-sidebar-link {
    font-size: 0.95rem;
    color: var(--grey-dark);
    display: block;
    transition: var(--transition-fast);
}

.practice-sidebar-link:hover,
.practice-sidebar-link.active {
    color: var(--gold-accent);
    padding-left: 8px;
}

.practice-detail-card {
    padding: 50px;
    margin-bottom: 40px;
}

.practice-detail-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.practice-detail-para {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 25px;
}

.practice-detail-list-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.practice-detail-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.practice-detail-list.full-width {
    grid-template-columns: 1fr;
}

.practice-detail-list li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.practice-detail-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--gold-accent);
}

/* Document Page Custom Grids */
.doc-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 50px;
}

.doc-section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.doc-card {
    padding: 30px;
}

.doc-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.doc-card-desc {
    font-size: 0.9rem;
    color: var(--grey-dark);
    line-height: 1.6;
}

/* Animations declarations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0; }
}

.animated-float {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Overrides */

/* Softer Glows and Borders Globally to prevent visual noise */
.glass-card {
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.03);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.08);
}

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .reviews-wrapper {
        gap: 20px !important;
    }
    .review-slide {
        flex: 0 0 calc(50% - 10px) !important;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px !important;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    .grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    .split-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .timeline::before {
        left: 20px !important;
    }
    .timeline-dot {
        left: 20px !important;
    }
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 40px !important;
    }
    .timeline-content {
        width: calc(100% - 40px) !important;
        margin-left: 40px !important;
        padding: 24px !important;
    }
    .practice-directory {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .practice-sidebar {
        position: relative !important;
        top: 0 !important;
        padding: 20px !important;
    }
    .practice-sidebar-list {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .doc-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .disclaimer-modal {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    /* 1. Mobile Container & Breathing Sections */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    /* 2. Responsive Grids - strictly 1 column on mobile */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* 3. Typography Scaling */
    html {
        font-size: 15px !important;
    }
    
    h1, .hero-title {
        font-size: 2.4rem !important;
        line-height: 1.25 !important;
        letter-spacing: 0.02em !important;
        margin-bottom: 15px !important;
    }
    
    h2, .section-title, .practice-detail-title, .doc-section-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    h3, .timeline-title, .practice-card-title, .doc-card-title {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
    }
    
    p, .hero-subtitle, .practice-detail-para, span, li, a {
        font-size: 0.92rem !important;
        line-height: 1.8 !important;
        color: #DADADA !important; /* Excellent high contrast text */
    }
    
    /* 4. Navbar Height Reduction & Hamburger Alignment */
    .header-container {
        padding: 10px 20px !important;
    }
    
    .nav-brand {
        gap: 10px !important;
    }
    
    .nav-brand svg {
        width: 36px !important;
        height: 36px !important;
    }
    
    .nav-brand-text {
        font-size: 1.15rem !important;
        line-height: 1.1 !important;
    }
    
    .nav-brand-text span {
        font-size: 0.6rem !important;
        letter-spacing: 0.25em !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
        align-self: center !important;
    }
    
    /* 5. Mobile Hero Scaling & Spacing */
    .hero {
        min-height: 70vh !important;
        height: auto !important;
        padding: 100px 0 60px 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-subtitle {
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }
    
    .hero-btn-group {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .hero-btn-group .btn {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* 6. Card Design Fixes (Increase Card Spacing & padding) */
    .glass-card, .practice-card, .timeline-content, .contact-form-panel, .contact-info-panel, .practice-detail-card, .doc-card {
        padding: 24px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(212, 175, 55, 0.12) !important;
        background: rgba(12, 12, 12, 0.85) !important; /* Darker glass for extreme text contrast */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7) !important;
        transform: none !important;
    }
    
    .glass-card:hover {
        border-color: rgba(212, 175, 55, 0.25) !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8) !important;
    }
    
    .trust-bar {
        margin-top: -20px !important;
        padding: 0 !important;
    }
    
    .trust-card {
        padding: 20px !important;
    }
    
    .trust-number {
        font-size: 2.2rem !important;
    }
    
    /* 7. Button Padding & Mobile Sizing */
    .btn {
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
        border-radius: 6px !important;
        min-height: 48px !important;
        width: 100% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .btn-secondary {
        border: 1px solid rgba(212, 175, 55, 0.5) !important;
    }
    
    /* 8. Contact Section Spacing */
    .contact-wrapper {
        gap: 30px !important;
    }
    
    .contact-info-panel {
        background: rgba(12, 12, 12, 0.85) !important;
    }
    
    .map-container {
        height: 250px !important;
        margin-top: 30px !important;
    }
    
    /* 9. Floating Buttons Suppression & Sticky Bottom Actions Bar */
    .floating-whatsapp,
    .floating-call {
        display: none !important; /* Strictly suppress overlapping floating icons on mobile */
    }
    
    body {
        padding-bottom: 75px !important; /* Safe zone padding preventing sticky bar content overlaps */
    }
    
    footer {
        padding-bottom: 90px !important; /* Protects footer contents from overlapping sticky bar */
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }
    
    .footer-col h4 {
        margin-bottom: 15px !important;
    }
    
    /* Minimalist Premium Sticky Mobile Action Bar */
    .mobile-action-bar {
        display: grid !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(8, 8, 8, 0.97) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
        z-index: 9999 !important;
        grid-template-columns: repeat(3, 1fr) !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        height: calc(55px + env(safe-area-inset-bottom)) !important;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8) !important;
    }
    
    .mobile-action-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        color: #DADADA !important;
        font-size: 0.72rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        transition: var(--transition-fast) !important;
        border-right: none !important; /* Remove generic borders for luxury look */
    }
    
    .mobile-action-item:not(:last-child) {
        border-right: 1px solid rgba(212, 175, 55, 0.08) !important;
    }
    
    .mobile-action-item svg {
        width: 18px !important;
        height: 18px !important;
        fill: currentColor !important;
    }
    
    .mobile-action-item.highlight {
        color: var(--gold-accent) !important;
    }
    
    .mobile-action-item:active {
        color: var(--soft-gold) !important;
        transform: scale(0.96) !important;
    }
    
    /* 10. Multi-Page Specific Elements Mobile Tuning */
    .practice-sidebar-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    
    .practice-sidebar-link {
        padding: 6px 12px !important;
        background: rgba(212, 175, 55, 0.05) !important;
        border: 1px solid rgba(212, 175, 55, 0.1) !important;
        border-radius: 4px !important;
    }
    
    .practice-sidebar-link.active {
        background: var(--gold-accent) !important;
        color: var(--primary-black) !important;
        padding-left: 12px !important;
    }
    
    .practice-detail-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .disclaimer-modal {
        width: 95% !important;
        padding: 24px !important;
        border-radius: 12px !important;
    }
    
    .disclaimer-title {
        font-size: 1.6rem !important;
    }
    
    .disclaimer-btn-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .review-slide {
        flex: 0 0 100% !important;
        padding: 24px !important;
    }
}
