:root {
    --bg-dark: #000000;
    --bg-darker: #0D0D0D;
    --gold-primary: #FFCC00;
    --gold-hover: #E6B800;
    --gold-dim: rgba(255, 204, 0, 0.15);
    --text-white: #FFFFFF;
    --text-light: #B3B3B3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 204, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background-image: url('law_pattern_bg.png');
    background-repeat: repeat;
    background-size: 400px; /* Base size for symbols */
    opacity: 0.4; /* Increased visibility */
    background-blend-mode: screen;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Cinzel', serif;
    color: var(--text-white);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 6rem 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    white-space: nowrap;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--text-white);
}

.nav-links li a:hover {
    color: var(--gold-primary);
}

/* Dropdown Nav System */
.nav-links li {
    position: relative;
}

.nav-links li .nav-link-main {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-links li .nav-link-main .chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-links li:hover .nav-link-main .chevron {
    transform: rotate(-135deg) translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 8, 20, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.8rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%) translateY(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,204,0,0.15);
    z-index: 2000;
    /* Prevent dropdown from escaping viewport */
    max-width: calc(100vw - 2rem);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--glass-border);
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-group-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
    padding: 0.5rem 1.2rem 0.3rem;
    opacity: 0.7;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    color: var(--text-light);
    font-size: 0.88rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 204, 0, 0.08);
    color: var(--gold-primary) !important;
    padding-left: 1.5rem;
}

.dropdown-menu a .drop-icon {
    width: 18px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.85rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0.5rem 1rem;
}

/* =========================================
   MEGA MENU SYSTEM
   ========================================= */
.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(4, 6, 15, 0.99);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: min(1100px, 95vw);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,204,0,0.1);
    z-index: 2000;
    overflow: hidden;
}

.nav-links li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-container {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 0;
}

.mega-column {
    padding: 2.5rem;
    border-right: 1px solid rgba(255, 204, 0, 0.05);
}

.mega-column:last-child {
    border-right: none;
}

.mega-label {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

.mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 1rem !important;
    margin: 0 -1rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: normal !important;
}

.mega-item:hover {
    background: rgba(255, 204, 0, 0.06) !important;
    transform: translateX(5px);
}

.mega-icon {
    font-size: 1.2rem;
    color: var(--gold-primary);
    width: 24px;
    text-align: center;
    margin-top: 3px;
}

.mega-info {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.mega-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
    opacity: 0.7;
}

.mega-featured {
    background: rgba(255, 204, 0, 0.03);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.featured-img {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    object-fit: cover;
    filter: grayscale(0.5);
    border: 1px solid rgba(255,204,0,0.2);
}

.featured-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
}

.featured-text {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.mega-footer {
    background: rgba(255, 204, 0, 0.04);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-foot-links {
    display: flex;
    gap: 2rem;
}

.mega-foot-link {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.mega-foot-link i {
    color: var(--gold-primary);
}

.mega-foot-link:hover {
    color: var(--gold-primary);
}

@media (max-width: 1024px) {
    .mega-menu {
        display: none !important; /* Standard mobile nav handles this */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--bg-darker);
    border: 1px solid var(--gold-primary);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-dim);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-outline-nav {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary) !important;
    padding: 0.6rem 1.5rem;
}

.btn-outline-nav:hover {
    background: var(--gold-dim);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('hero-bg.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 4, 9, 0.9) 0%, rgba(2, 4, 9, 0.4) 100%);
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: left;
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFFFFF, #E0E0E0, var(--gold-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Section Common */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold-primary);
}

/* Stats Bar */
.stats-bar {
    background: #0a0a0a;
    padding: 4.5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats-bar {
        padding: 3rem 0;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Services */
.services {
    background-color: var(--bg-darker);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 60%);
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.15);
}

.category-link {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.category-link:hover {
    color: var(--text-white);
}

.service-item-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.service-item-link:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.card-list li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    opacity: 0.8;
}

/* Contact Section inside card */
.contact-card {
    text-align: center;
    padding: clamp(1.5rem, 5vw, 4rem);
    max-width: 800px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.contact-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #020409;
    padding: 3.5rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--gold-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
    border-color: var(--gold-primary);
}

.footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Animations Setup & High-Intensity Effects */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(80px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes revealZoom {
    from { opacity: 0; transform: scale(0.5) rotate(-5deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes goldGlowPulse {
    0% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 204, 0, 0.6); }
    100% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.2); }
}

@keyframes glint {
    0% { left: -100%; }
    100% { left: 100%; }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

.animate-on-scroll.up { transform: translateY(80px); }
.animate-on-scroll.zoom { transform: scale(0.8); }
.animate-on-scroll.left { transform: translateX(-80px); }
.animate-on-scroll.right { transform: translateX(80px); }

.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* 3D Hover & Glow Effects */
.glass-card {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.5s ease, 
                border-color 0.5s ease;
    perspective: 1000px;
    backface-visibility: hidden;
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 
                0 0 35px rgba(255, 204, 0, 0.3) !important;
    border-color: var(--gold-primary) !important;
    z-index: 10;
}

/* Global Link & Button Intensity */
a:not(.btn):not(.whatsapp-float):not(.social-icon):not(.logo-link) {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:not(.btn):not(.whatsapp-float):not(.social-icon):not(.logo-link)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: var(--gold-primary);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

a:not(.btn):not(.whatsapp-float):not(.social-icon):not(.logo-link):hover {
    color: var(--gold-primary) !important;
}

a:not(.btn):not(.whatsapp-float):not(.social-icon):not(.logo-link):hover::after {
    width: 100%;
}

.btn {
    overflow: hidden;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.btn:hover::before {
    left: 150%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 5px 25px rgba(255, 204, 0, 0.4) !important;
}

/* Navbar Phone & Contact Wrapper */
.nav-contact-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
}

.nav-phone {
    color: var(--gold-primary) !important;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.nav-phone:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.phone-icon {
    font-size: 1.1rem;
    animation: phone-wiggle 3s infinite;
}

@keyframes phone-wiggle {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(10deg); }
    94% { transform: rotate(-10deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
}

@media (max-width: 1024px) {
    .nav-contact-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        align-items: center;
    }
    .nav-phone {
        font-size: 1.1rem;
    }
    .btn-outline-nav {
        width: 100%;
        text-align: center;
    }
}

/* Hamburger Menu */
.menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    flex-shrink: 0;
}
.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    margin: 5px 0;
    transition: 0.4s;
}
.menu-btn.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* Internal Page Hero */
.internal-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #111 100%);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.internal-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.internal-hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}
.internal-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile nav overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* Body scroll lock when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

@media (max-width: 1024px) {
    .menu-btn { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80%, 320px);
        height: 100vh;
        height: 100dvh; /* dynamic viewport for mobile browsers */
        background: rgba(5, 5, 15, 0.99);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        z-index: 999;
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        overflow-x: hidden;
        white-space: normal;
    }
    .nav-links.active { right: 0; }

    .nav-links li {
        width: 100%;
        margin: 0.4rem 0;
    }

    .nav-links li a,
    .nav-links li .nav-link-main {
        font-size: 1rem;
        color: var(--text-white);
        padding: 0.6rem 0;
        display: flex;
        width: 100%;
    }

    /* Mobile dropdowns — expand vertically, not float */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        background: rgba(255,255,255,0.03);
        border: none;
        border-left: 2px solid var(--gold-primary);
        border-radius: 0;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        display: none;
        margin-top: 0.3rem;
    }

    .dropdown-menu::before { display: none; }

    .nav-links li:hover .dropdown-menu { display: block; }

    /* Also show on click via JS-added class */
    .nav-links li.mobile-open .dropdown-menu { display: block; }

    .dropdown-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        white-space: normal;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        margin-bottom: 2.5rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Hero section */
    .hero {
        align-items: flex-end;
        padding-bottom: 4rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    /* Marquee items smaller on mobile */
    .logo-item {
        width: 150px;
        height: 80px;
        margin: 0 0.8rem;
    }
    .logo-item-text {
        font-size: 0.85rem;
    }

    /* Testimonial */
    .testimonial-card-inner {
        padding: 1.5rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }

    /* Premium bridge section */
    .premium-bridge .premium-title {
        font-size: clamp(1.4rem, 5vw, 2.2rem);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .internal-hero {
        padding: 8rem 0 3rem;
    }
}


/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    padding: 2rem;
    box-sizing: border-box;
}

/* Constrain logo image inside splash on all screens */
.splash-screen img,
.splash-logo-img {
    max-width: min(300px, 80vw);
    width: auto;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    animation: pulse 1.5s infinite alternate;
}

@media (max-width: 480px) {
    .splash-screen img,
    .splash-logo-img {
        max-height: 90px;
        max-width: 70vw;
    }
}

.splash-logo {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold-primary);
    letter-spacing: 4px;
    animation: pulse 1.5s infinite alternate;
}

.splash-loader {
    width: 60px;
    height: 4px;
    background: var(--glass-border);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.splash-loader::after {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    height: 100%;
    width: 60px;
    background: var(--gold-primary);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.98); opacity: 0.8; }
    100% { transform: scale(1.02); opacity: 1; }
}

@keyframes loading {
    0% { left: -60px; }
    100% { left: 100%; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    background: #1eb954;
}

.whatsapp-float::after {
    content: 'Chat with us';
    position: absolute;
    right: 80px;
    background: var(--glass-bg);
    color: var(--gold-primary);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
    .whatsapp-float::after {
        display: none;
    }
}

/* Testimonial Carousel */
.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.testimonial-card-inner::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 5rem;
    color: var(--gold-primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--gold-primary);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testimonial-card-inner {
        padding: 2rem;
    }
    .testimonial-text {
        font-size: 1.1rem;
    }
}


/* Logo Carousel / Marquee */
.logo-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 3rem 0;
    width: 100%;
}
.logo-marquee-container::before, .logo-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vh;
    height: 100%;
    z-index: 2;
}
.logo-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.logo-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.logo-marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.logo-marquee-track:hover {
    animation-play-state: paused;
}
.logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    margin: 0 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
}
.logo-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.15);
}
.logo-item-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}
.logo-item:hover .logo-item-text {
    color: var(--gold-primary);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ==========================================================================
   A11Y (Accessibility) OVERRIDES & THEMES
   ========================================================================== */

/* Focus Styles - highly visible outline for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--gold-primary) !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.8) !important;
}

/* High Contrast Mode */
body.a11y-high-contrast, 
body.a11y-high-contrast * {
    background-color: #000000 !important;
    background-image: none !important;
    color: #FFFF00 !important;
    border-color: #FFFF00 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
body.a11y-high-contrast img {
    filter: contrast(120%) !important;
}
body.a11y-high-contrast a, 
body.a11y-high-contrast button {
    text-decoration: underline !important;
    color: #FFFFFF !important;
}

/* Highlight Links */
body.a11y-highlight-links a {
    text-decoration: underline !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 3px !important;
    background-color: rgba(255, 255, 0, 0.1) !important;
    color: var(--gold-primary) !important;
}

/* Dyslexia Friendly / Readable Font */
body.a11y-readable-font * {
    font-family: 'Comic Sans MS', 'Arial', 'Helvetica', sans-serif !important;
    letter-spacing: 1px !important;
    word-spacing: 2px !important;
    line-height: 1.8 !important;
}

/* Text Scaling */
html.a11y-text-large { font-size: 115% !important; }
html.a11y-text-xlarge { font-size: 130% !important; }

/* Reduced Motion */
body.a11y-reduced-motion,
body.a11y-reduced-motion * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

/* -----------------------------------------------------------
   A11Y WIDGET STYLES
   ----------------------------------------------------------- */
.a11y-widget-btn {
    position: fixed;
    top: 100px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #005A9C;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease;
    border: 2px solid white;
}
.a11y-widget-btn:hover {
    transform: scale(1.1);
}
.a11y-widget-btn i, .a11y-widget-btn svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.a11y-panel {
    position: fixed;
    top: 170px;
    left: 20px;
    width: 320px;
    background: #020409;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    z-index: 9999;
    padding: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.a11y-panel.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.a11y-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.a11y-panel-header h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.a11y-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}
.a11y-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.a11y-setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.a11y-setting-label {
    font-size: 0.95rem;
    color: var(--text-light);
}
.a11y-toggle-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}
.a11y-toggle-btn.active {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}
.a11y-btn-group {
    display: flex;
    gap: 5px;
}
.a11y-btn-group button {
    flex: 1;
}


/* Enhanced Button Symmetry */
.premium-btn-group {
    display: flex !important;
    gap: 1.5rem;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 2rem;
}

.premium-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 55px !important;
    min-width: 240px !important;
    padding: 0 30px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.premium-btn i, .premium-btn svg {
    margin-right: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .premium-btn-group {
        flex-direction: column !important;
        gap: 1rem;
    }
    .premium-btn {
        width: 100% !important;
        min-width: 0 !important;
    }
}


/* Law Directory Split-Layout */
.laws-container {
    display: flex;
    gap: 2rem;
    height: auto; min-height: 800px;
    margin-top: 2rem;
}

.laws-sidebar {
    flex: 0 0 320px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.laws-content {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.laws-sidebar::-webkit-scrollbar,
.laws-content::-webkit-scrollbar {
    width: 6px;
}

.laws-sidebar::-webkit-scrollbar-thumb,
.laws-content::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 10px;
}

.sidebar-category {
    margin-bottom: 2rem;
}

.sidebar-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
    margin-bottom: 1rem;
}

.sidebar-category-header.active .chevron {
    transform: rotate(180deg);
}

.sidebar-law-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-law-list.collapsed {
    display: none;
}

.sidebar-law-item {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.sidebar-law-item:hover {
    background: var(--gold-dim);
    color: var(--gold-primary);
}

.sidebar-law-item.active {
    background: var(--gold-primary);
    color: var(--bg-darker);
    font-weight: 700;
}

.viewer-header {
    background: rgba(10, 10, 10, 0.8);
    padding: 1.5rem 2.5rem;
    border-bottom: 2px solid var(--gold-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(15px);
}

.viewer-header h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin: 0;
}

.viewer-body {
    padding: 3rem;
    flex: 1;
}

.viewer-badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.viewer-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    white-space: pre-wrap;
}

@media (max-width: 1024px) {
    .laws-container {
        flex-direction: column;
        height: auto;
    }
    .laws-sidebar {
        flex: none;
        max-height: 350px;
    }
    .laws-content {
        height: 600px;
    }
}


/* Global Icon Formatting */
i.fas, i.fab, i.far, i.fa-solid, i.fa-regular, i.fa-brands {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Ensure buttons with icons have appropriate space */
.btn i, .premium-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* WhatsApp Icon Alignment */
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 10001; /* Higher than a11y widget */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.13) translateY(-5px);
    color: #FFF;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 32px;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* Social Icon Sizes */
.social-icon i {
    font-size: 1.3rem;
}

/* GL Assistant - Smart Chatbot Styles */
.gl-assistant-bubble {
    display: none !important;
    position: fixed;
    bottom: 30px;
    left: 100px; /* Hidden for now */
    width: 65px;
    height: 65px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-black);
    cursor: pointer;
    z-index: 11000;
    box-shadow: 0 10px 30px rgba(237, 202, 27, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.1);
}

.gl-assistant-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
    box-shadow: 0 15px 40px rgba(237, 202, 27, 0.6);
}

.gl-assistant-bubble i {
    font-size: 28px;
}

.gl-assistant-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid var(--text-black);
    animation: bounce 2s infinite;
}

.gl-chat-window {
    position: fixed;
    bottom: 110px;
    left: 100px; /* Aligned with the new bubble position */
    width: 380px;
    height: 550px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 10999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.gl-chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.gl-chat-header {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-black);
}

.gl-chat-header .avatar {
    width: 45px;
    height: 45px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 20px;
    border: 2px solid rgba(255,255,255,0.3);
}

.gl-chat-header-info {
    flex: 1;
}

.gl-chat-header-info h4 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 800;
}

.gl-chat-header-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.gl-chat-close {
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s;
}

.gl-chat-close:hover {
    transform: rotate(90deg);
}

.gl-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) transparent;
}

.gl-chat-body::-webkit-scrollbar {
    width: 4px;
}

.gl-chat-body::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255,255,255,0.05);
    color: #eee;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(255,255,255,0.05);
}

.message.user {
    align-self: flex-end;
    background: var(--gold-primary);
    color: var(--text-black);
    border-bottom-right-radius: 2px;
}

.gl-chat-input-area {
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 10px;
    align-items: center;
}

.gl-chat-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 10px 18px;
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

.gl-chat-input:focus {
    border-color: var(--gold-primary);
    background: rgba(237, 202, 27, 0.05);
}

.gl-chat-send {
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    color: var(--text-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.gl-chat-send:hover {
    transform: scale(1.1);
    background: #fff;
}

.gl-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.suggestion-chip {
    padding: 6px 12px;
    background: rgba(237, 202, 27, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.suggestion-chip:hover {
    background: var(--gold-primary);
    color: var(--text-black);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

@media (max-width: 480px) {
    .gl-chat-window {
        width: calc(100vw - 40px);
        height: 80vh;
        left: 20px;
        bottom: 90px;
    }
    .gl-assistant-bubble {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 85px; /* Side-by-side with Accessibility (left: 20px) on mobile */
    }
}

/* Tidio Bot Positioning - Default (Right) */
#tidio-chat-iframe {
    right: 10px !important;
    left: auto !important;
}
