/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0B3D91;         /* Trust Dark Navy */
    --primary-light: #164da8;
    --primary-dark: #072558;
    --secondary: #D6AF37;       /* Elegant Legal Gold Accent */
    --secondary-hover: #B89228;
    --bg-dark: #04132b;
    --text-color: #2D3748;      /* Charcoal Body Text */
    --text-muted: #4A5568;      /* Dark Slate Grey */
    --bg-light: #F7FAFC;        /* Soft Cool Grey */
    --white: #FFFFFF;
    
    /* CTAs */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba59;
    --danger: #E53E3E;
    --success: #38A169;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Shadows */
    --container-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-red: 0 10px 20px -5px rgba(214, 175, 55, 0.25);
    --border-radius: 12px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
}

*, *::before, *::after {
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

.highlight {
    color: var(--secondary);
}

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

.sub-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0b3d91;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

.sub-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0b3d91, #d6af37);
    border-radius: 2px;
    margin: 8px 0 0;
}

.section-header .sub-title::after {
    margin: 8px auto 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    padding: 16px 0;
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.logo-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 22px;
    color: var(--secondary);
    background-color: rgba(11, 61, 145, 0.08);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

/* Nav links — centered between logo and actions */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 0 10px;
}

.nav-menu ul {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-color);
    position: relative;
    padding: 6px 3px;
    white-space: nowrap;
    display: block;
}

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

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

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

/* Header action buttons — right side */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-phone-header {
    background-color: rgba(11, 61, 145, 0.05);
    color: var(--primary);
    border: 1px solid rgba(11, 61, 145, 0.2);
    padding: 9px 14px;
    font-size: 13.5px;
    border-radius: 6px;
    box-shadow: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-phone-header:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(0);
}

/* Hamburger button — hidden on desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    z-index: 201;
    padding: 0;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Animated hamburger → X when drawer open */
.hamburger-menu.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger-menu.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-menu.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background-color: var(--white);
    z-index: 200;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(11, 61, 145, 0.08);
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    flex-shrink: 0;
}

.drawer-header .logo-img {
    height: 34px;
    width: auto;
}

.drawer-close {
    background: rgba(11, 61, 145, 0.07);
    border: 1px solid rgba(11, 61, 145, 0.12);
    font-size: 18px;
    color: var(--primary-dark);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.drawer-close:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.drawer-links {
    padding: 20px 20px;
    flex: 1;
    list-style: none;
    margin: 0;
}

.drawer-links li {
    margin-bottom: 4px;
}

.drawer-link {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 8px;
    color: var(--text-color);
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    color: var(--primary);
    background-color: rgba(11, 61, 145, 0.06);
    border-left-color: var(--primary);
    padding-left: 18px;
}

.drawer-link.active {
    color: var(--secondary);
    background-color: rgba(229, 62, 62, 0.06);
    border-left-color: var(--secondary);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px;
    border-top: 1px solid rgba(11, 61, 145, 0.08);
    flex-shrink: 0;
}

.btn-call-drawer {
    background-color: var(--primary);
    color: var(--white);
    justify-content: center;
}

.btn-whatsapp-drawer {
    background-color: var(--whatsapp-green);
    color: var(--white);
    justify-content: center;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(4, 19, 43, 0.5);
    z-index: 190;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    cursor: pointer;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   SECTION 1: HERO BANNER
   ========================================================================== */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Interactive Client Photo Showcase Slider */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    background: #04132b;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
    transform: scale(1.04);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 20px 18px;
    background: linear-gradient(to top, rgba(4, 19, 43, 0.95) 0%, rgba(4, 19, 43, 0.6) 60%, transparent 100%);
    color: #ffffff;
    z-index: 5;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #d6af37;
    color: #0b3d91;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-slide-caption p {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #0b3d91;
    border: none;
    cursor: pointer;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #d6af37;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev { left: 12px; }
.hero-slider-next { right: 12px; }

.hero-slider-dots {
    position: absolute;
    bottom: 14px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 12;
}

.hero-slider-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: #d6af37;
    width: 22px;
    border-radius: 10px;
}

.hero-trust-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 61, 145, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    z-index: 12;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.trust-badge-icon {
    font-size: 20px;
    color: #d6af37;
}

.trust-badge-info strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-badge-info span {
    font-size: 10.5px;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .hero-slider-wrapper {
        height: 300px;
        max-width: 100%;
    }
}

/* ==========================================================================
   SECTION 2: TRUST INDICATORS
   ========================================================================== */
.trust-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-bottom: 60px;
}

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

.trust-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 4px solid var(--secondary);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-red);
    border-top-color: var(--primary);
}

.trust-icon {
    font-size: 32px;
    color: var(--primary);
    background-color: rgba(11, 61, 145, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--primary-dark);
}

.trust-info p {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION 3: SERVICES OVERVIEW GRID
   ========================================================================== */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.08);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 28px;
    color: var(--secondary);
    background-color: rgba(214, 175, 55, 0.08);
    width: 54px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    width: fit-content;
}

.btn-read-more i {
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: var(--secondary);
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION 4: WHY CHOOSE US
   ========================================================================== */
.why-choose-section {
    padding: 100px 0;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image-area {
    position: relative;
}

.advocate-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.advocate-quote {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    max-width: 320px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary);
}

.advocate-quote p {
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.9;
}

.advocate-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

.why-choose-content-area .lead-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 20px;
    color: var(--secondary);
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 5: ELIGIBILITY
/* ==========================================================================
   SECTION 5: ELIGIBILITY CRITERIA (INTERACTIVE QUIZ & BADGES)
   ========================================================================== */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-quiz-wrapper {
    max-width: 900px;
    margin: 0 auto 45px;
    background: linear-gradient(135deg, #0b3d91, #1e40af);
    border-radius: 16px;
    padding: 32px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(11, 61, 145, 0.2);
}

.quiz-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.quiz-header p {
    color: #cbd5e1;
    font-size: 13.5px;
    margin-bottom: 20px;
}

.eligibility-quiz-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 15px;
    align-items: flex-end;
}

.quiz-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #93c5fd;
    margin-bottom: 6px;
}

.quiz-field select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 600;
    outline: none;
}

.quiz-result-box {
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.quiz-result-box.success {
    display: flex;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #a7f3d0;
}

.quiz-result-box.error {
    display: flex;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #fca5a5;
}

/* Eligibility Summary Cards */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.eligibility-card {
    background-color: #ffffff;
    border: 1px solid rgba(11, 61, 145, 0.1);
    padding: 30px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eligibility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(11, 61, 145, 0.14);
}

.eligibility-card .card-gender-icon {
    font-size: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.boy-card .card-gender-icon {
    color: var(--primary);
    background: rgba(11, 61, 145, 0.08);
}

.girl-card .card-gender-icon {
    color: #e11d48;
    background: rgba(225, 29, 72, 0.08);
}

.witness-card .card-gender-icon {
    color: var(--secondary);
    background: rgba(214, 175, 55, 0.12);
}

.eligibility-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0f172a;
}

.eligibility-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 15px;
}

.boy-card .eligibility-badge {
    background: rgba(11, 61, 145, 0.1);
    color: var(--primary);
}

.girl-card .eligibility-badge {
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
}

.witness-card .eligibility-badge {
    background: rgba(214, 175, 55, 0.15);
    color: var(--primary-dark);
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.45;
}

.eligibility-list li i {
    color: var(--success);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   SECTION 6: REQUIRED DOCUMENTS (INTERACTIVE TABS)
   ========================================================================== */
.documents-section {
    padding: 80px 0;
}

.doc-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.doc-tab {
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.doc-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.doc-tab.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(11, 61, 145, 0.25);
}

.doc-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.doc-tab-pane.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.doc-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.doc-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12);
    border-color: rgba(11, 61, 145, 0.3);
}

.doc-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.doc-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(11, 61, 145, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.doc-item-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.doc-item-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.doc-item-note {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(214, 175, 55, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* ==========================================================================
   SECTION 7: HOW IT WORKS (INTERACTIVE WIZARD STEPPER)
   ========================================================================== */
.timeline-section {
    padding: 80px 0;
}

.process-wizard-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.process-stepper-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.process-stepper-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.step-num-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    color: #64748b;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.process-step-btn.active .step-num-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.3);
}

.step-btn-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.process-step-btn.active .step-btn-label {
    color: var(--primary);
}

.process-cards-container {
    position: relative;
}

.process-step-card {
    display: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.4s ease;
}

.process-step-card.active {
    display: block;
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.step-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.step-time-badge {
    padding: 6px 14px;
    background: rgba(214, 175, 55, 0.15);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.process-step-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.step-key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.key-point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 8px;
}

.key-point-item i {
    color: var(--primary);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 61, 145, 0.15);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 8: FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 80px 0;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: rgba(11, 61, 145, 0.2);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--primary);
    background-color: rgba(11, 61, 145, 0.02);
}

.accordion-header .icon {
    font-size: 14px;
    color: var(--secondary);
    transition: var(--transition-smooth);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
    color: var(--danger);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-content p {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 9: CLIENT REVIEWS
   ========================================================================== */
.reviews-section {
    padding: 80px 0;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 130px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: rgba(11, 61, 145, 0.03);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-red);
    border-color: var(--secondary);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 24px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.reviewer-status {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 10: CTA BANNER
   ========================================================================== */
/* Fully Responsive CTA Banner for Desktop, Tablet & Mobile */
.cta-banner-section {
    padding: 60px 0;
    width: 100%;
}

.cta-banner-container {
    background: linear-gradient(135deg, #04132b 0%, #072558 50%, #0b3d91 100%);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(7, 37, 88, 0.25);
    border: 1px solid rgba(214, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.cta-banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(214, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-content h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.btn-cta-large {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
}

/* Tablet Responsiveness (769px - 1024px) */
@media (max-width: 1024px) {
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 24px;
    }
    .cta-banner-content h2 {
        font-size: 24px;
    }
    .cta-banner-content p {
        max-width: 100%;
        font-size: 14.5px;
    }
    .cta-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Responsiveness (≤ 768px) */
@media (max-width: 768px) {
    .cta-banner-section {
        padding: 35px 0 !important;
    }
    .cta-banner-container {
        padding: 28px 18px !important;
        border-radius: 18px !important;
        gap: 20px !important;
        text-align: center !important;
    }
    .cta-banner-content h2 {
        font-size: 21px !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }
    .cta-banner-content p {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }
    .cta-banner-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 6px !important;
    }
    .cta-banner-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 13px 18px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   SECTION 11: CONTACT & FORM
   ========================================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(11, 61, 145, 0.15);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.btn-submit {
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
}

.form-feedback {
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(56, 161, 105, 0.1);
    color: var(--success);
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.form-feedback.error {
    display: block;
    background-color: rgba(229, 62, 99, 0.1);
    color: var(--danger);
    border: 1px solid rgba(229, 62, 99, 0.2);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 18px;
    color: var(--secondary);
    background-color: rgba(214, 175, 55, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-list li strong {
    font-size: 14px;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 2px;
}

.info-list li p, .info-list li a {
    font-size: 13px;
    color: var(--text-muted);
}

.info-list li a:hover {
    color: var(--primary);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 145, 0.08);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 4px solid var(--secondary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 14px;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
    margin-top: 8px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    position: relative;
}

.btn-call-float {
    background-color: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-float {
    background-color: var(--whatsapp-green);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 66px;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    width: 100%;
    max-width: 500px;
    margin: 20px;
    z-index: 202;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.open .modal-dialog {
    transform: scale(1);
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(11, 61, 145, 0.08);
    overflow: hidden;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--danger);
}

.modal-body {
    padding: 24px;
}

.modal-intro {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-footer {
    padding: 16px 24px;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(11, 61, 145, 0.05);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(4, 19, 43, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 201;
}

/* Service Detail Modal Special Styling */
#serviceDetailModal .modal-dialog {
    max-width: 600px;
}

.modal-detail-block {
    margin-bottom: 18px;
}

.modal-detail-block:last-child {
    margin-bottom: 0;
}

.modal-detail-block h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-detail-block p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   SCROLL ANIMATIONS (INTERSECTION OBSERVER - SITE-WIDE 60FPS REVEAL)
   ========================================================================== */
[data-animate],
.reveal-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1), transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-animate="fade-up"],
.reveal-fade-up {
    transform: translate3d(0, 35px, 0);
}

[data-animate="fade-left"],
.reveal-fade-left {
    transform: translate3d(40px, 0, 0);
}

[data-animate="fade-right"],
.reveal-fade-right {
    transform: translate3d(-40px, 0, 0);
}

[data-animate="zoom-in"],
.reveal-zoom-in {
    transform: scale(0.92);
}

.animated,
.in-view {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Laptop & Large Tablets (1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-section {
        margin-top: -30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image-area {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .document-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .cta-banner-actions {
        flex-shrink: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile & Tablets (991px) */
/* =====================================================================
   RESPONSIVE — SMALL DESKTOP & LAPTOPS (max 1280px)
   ===================================================================== */
@media (max-width: 1280px) {
    .nav-menu ul {
        gap: 8px;
    }

    .nav-link {
        font-size: 13px;
        padding: 5px 2px;
    }

    .btn-phone-header {
        padding: 8px 12px;
        font-size: 12.5px;
    }

    .btn-download-header span {
        display: none;
    }

    .btn-download-header {
        padding: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 38px;
    }
}

/* =====================================================================
   RESPONSIVE — TABLETS & MOBILE (max 1150px)
   Show hamburger, hide desktop nav
   ===================================================================== */
@media (max-width: 1150px) {
    html {
        font-size: 15px;
    }

    /* Header */
    .main-header {
        padding: 12px 0;
    }

    .nav-menu {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    /* Collapse phone text; show icon-only circle button */
    .btn-phone-header span {
        display: none;
    }

    .btn-phone-header {
        padding: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-tagline {
        margin-bottom: 20px;
        font-size: 11px;
        letter-spacing: 0.8px;
        padding: 5px 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        margin-top: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        bottom: -15px;
        left: 15px;
        right: 15px;
        justify-content: center;
    }

    /* Sections */
    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 0;
        top: 20px;
    }

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

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* =====================================================================
   RESPONSIVE — SMALL PHONES (max 640px)
   ===================================================================== */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    /* Header shrinks more */
    .main-header {
        padding: 10px 0;
    }

    .logo-img {
        height: 34px;
    }

    /* Hero */
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* Grids go 1 column */
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Floating buttons */
    .floating-cta-container {
        bottom: 20px;
        right: 16px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    /* Drawer slightly narrower */
    .mobile-drawer {
        width: 280px;
    }

    /* Legal popup full width */
    .legal-notice-popup {
        width: calc(100vw - 32px);
        right: 16px;
        left: 16px;
    }

    /* Inner hero pages */
    .inner-hero {
        padding: 100px 0 50px;
    }

    /* Section padding */
    section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* =====================================================================
   RESPONSIVE — EXTRA SMALL PHONES (max 380px)
   ===================================================================== */
@media (max-width: 380px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 24px;
    }

    .logo-img {
        height: 28px;
    }

    .mobile-drawer {
        width: 100vw;
        max-width: 100vw;
    }

    .section-title {
        font-size: 22px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}



/* ==========================================================================
   SUBPAGE STYLING (BREADCRUMB, TIMELINES, SERVICE GRID)
   ========================================================================== */
.inner-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.breadcrumb-nav {
    margin-top: 15px;
}

.breadcrumb-nav ul {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-nav li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav li a {
    color: var(--secondary);
    font-weight: 500;
}

.breadcrumb-nav li a:hover {
    color: var(--white);
}

.breadcrumb-nav li::after {
    content: '/';
    margin-left: 8px;
}

.breadcrumb-nav li:last-child::after {
    content: none;
}

.breadcrumb-nav li.active {
    color: var(--white);
    font-weight: 500;
}

/* Stepper adjustments */
.process-horizontal-grid {
    margin-bottom: 30px;
}

.stepper-card {
    transition: var(--transition-smooth);
    border: 1px solid rgba(11, 61, 145, 0.06);
}

.stepper-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background-color: var(--white) !important;
}

/* responsive subpage tweaks */
@media (max-width: 900px) {
    .process-horizontal-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-detail-item {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 24px !important;
    }
    
    .profile-section .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .profile-image-box {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   TESTIMONIALS SLIDER STYLING
   ========================================================================== */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.review-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 15px;
    transition: opacity 0.3s ease;
    display: flex;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 33.333%;
    }
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.slider-arrow-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.slider-arrow-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(11, 61, 145, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.slider-dot.active {
    background-color: var(--primary);
    transform: scale(1.1);
    width: 24px;
    border-radius: 5px;
}

/* Animations details */
.trust-card, .service-card, .stepper-card, .review-slide, .why-choose-content-area, .why-choose-image-area, .doc-column, .contact-form-wrapper, .contact-info-wrapper {
    will-change: transform, opacity;
}

/* Professional SVG logo layout */
.logo-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-brand:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* Mobile adjustments for header logo */
@media (max-width: 480px) {
    .logo-img {
        height: 38px;
    }
}

/* Interactive Tabs styling */
.tabs-container {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 61, 145, 0.08);
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--bg-light);
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 16px;
}

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

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.tab-pane {
    animation: fadeInTab 0.5s ease-in-out;
}

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

/* Hero Tagline Text Rotator */
.text-rotator {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    transition: opacity 0.4s ease-in-out;
}

/* Tagline Dot Divider */
.tagline-dot {
    color: var(--secondary);
    margin: 0 6px;
    font-weight: 900;
}

/* Services Filter Navigation styling */
.services-filter-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.services-filter-bar {
    display: inline-flex;
    background-color: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(11, 61, 145, 0.06);
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    color: var(--primary);
    background-color: rgba(11, 61, 145, 0.05);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.15);
}

/* Premium Service Cards layout */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-detail-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.07);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

.service-detail-card:nth-child(even)::before {
    background-color: var(--secondary);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 12px 35px rgba(11, 61, 145, 0.06);
    border-color: rgba(11, 61, 145, 0.15);
}

.card-header-bar {
    margin-bottom: 20px;
}

.badge-num {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.badge-primary {
    background-color: rgba(11, 61, 145, 0.07);
    color: var(--primary);
}

.badge-secondary {
    background-color: rgba(214, 175, 55, 0.08);
    color: var(--secondary-hover);
}

.card-header-bar h3 {
    font-size: 21px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-summary {
    color: var(--text-color);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.card-meta-list {
    border-top: 1px dashed rgba(11, 61, 145, 0.1);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    gap: 10px;
}

.meta-label {
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.meta-label i {
    color: var(--primary);
    font-size: 12px;
}

.meta-value {
    color: var(--primary-dark);
    font-weight: 700;
    text-align: right;
}

.card-footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-card-primary, .btn-card-whatsapp {
    padding: 10px 14px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.btn-card-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-card-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-card-whatsapp:hover {
    background-color: #20ba56;
    transform: translateY(-1px);
}

/* Service responsiveness */
@media (max-width: 1024px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-detail-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .services-filter-bar {
        border-radius: 12px;
        padding: 4px;
        width: 100%;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .card-footer-actions {
        grid-template-columns: 1fr;
    }
}

/* Important Procedure Guidelines Section Grid Layout */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guideline-card {
    background-color: var(--white);
    border: 1px solid rgba(229, 62, 98, 0.08);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border-top: 4px solid #D6AF37; /* Gold accent border for guidelines */
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 175, 55, 0.12);
    border-color: rgba(214, 175, 55, 0.3);
}

.guideline-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(214, 175, 55, 0.12);
    color: #D6AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.guideline-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.guideline-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 991px) {
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* About Advocate Page - Profile Grid & Cards Styling */
.profile-section {
    padding: 80px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 35px;
    align-items: flex-start;
    width: 100%;
}

.profile-portrait {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(11, 61, 145, 0.05);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid rgba(11, 61, 145, 0.05);
    transition: var(--transition-smooth);
}

.profile-portrait:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg), 0 15px 40px rgba(229, 62, 62, 0.18); /* Red glow outline on portrait */
}

.profile-content-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.profile-intro {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.profile-details {
    font-size: 14.5px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* stats card grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

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

.stat-card.border-primary {
    border-left: 4px solid var(--primary);
}

.stat-card.border-secondary {
    border-left: 4px solid var(--secondary);
}

.stat-title {
    display: block;
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 12.5px;
    color: var(--text-color);
    font-weight: 500;
}

/* Credentials tab details timeline */
.credentials-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-card {
    background-color: var(--white);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(11, 61, 145, 0.03);
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 61, 145, 0.08);
}

.timeline-card.border-primary {
    border-left: 4px solid var(--primary);
}

.timeline-card.border-secondary {
    border-left: 4px solid var(--secondary);
}

.timeline-year {
    color: var(--secondary-hover);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 13.5px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Education Details layout */
.education-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 145, 0.03);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.edu-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(11, 61, 145, 0.06);
}

.edu-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.edu-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.edu-item h3 i {
    font-size: 16px;
}

.edu-meta {
    color: var(--primary);
    font-weight: 700;
    font-size: 13.5px;
    display: block;
    margin-bottom: 8px;
}

.edu-item p {
    font-size: 13.5px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Skills/Practice tab grid */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.skill-item-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 145, 0.04);
    transition: var(--transition-smooth);
}

.skill-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 61, 145, 0.1);
}

.skill-item-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-item-card p {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive breakpoint overrides */
@media (max-width: 991px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-portrait {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .profile-quick-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Office Gallery Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.06);
    box-shadow: var(--shadow-sm);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(11, 61, 145, 0.06);
    border-color: rgba(11, 61, 145, 0.15);
}

.gallery-card:hover::before {
    background-color: var(--secondary);
}

.gallery-card-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(11, 61, 145, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-card-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
}

.gallery-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.gallery-card span {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Modern Ticker Bar above header */
.ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background: linear-gradient(90deg, #072558 0%, #0b3d91 50%, #072558 100%);
    color: #ffffff;
    z-index: 105;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(214, 175, 55, 0.3);
}

.ticker-bar:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-title {
    background-color: #d6af37;
    color: #072558;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker-slide 25s linear infinite;
}

@keyframes ticker-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-text {
    display: inline-block;
    padding-right: 50px;
}

/* Adjust sticky header position down for ticker */
.main-header {
    top: 34px;
}

body {
    padding-top: 34px;
}

/* Ticker responsiveness */
@media (max-width: 640px) {
    .ticker-bar {
        height: 30px;
        font-size: 12px;
    }

    .ticker-title {
        padding: 0 10px;
        font-size: 11px;
        letter-spacing: 0;
    }

    .main-header {
        top: 30px;
    }

    body {
        padding-top: 30px;
    }
}

@media (max-width: 380px) {
    .ticker-title {
        display: none;
    }
}

/* Header Download Button */
.btn-download-header {
    background-color: var(--white);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: none;
    font-weight: 700;
}

.btn-download-header:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(0);
}

@media (max-width: 991px) {
    .btn-download-header {
        display: none;
    }
}

/* Legal Notice Popup Toast styling */
.legal-notice-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 32px);
    background-color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(229, 62, 62, 0.05);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--secondary);
    z-index: 1000;
    transform: translateY(150%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    padding: 24px;
}

.legal-notice-popup.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.legal-notice-content {
    position: relative;
}

.legal-notice-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.legal-notice-close:hover {
    opacity: 1;
    color: var(--secondary);
}

.legal-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.legal-notice-header i {
    color: var(--secondary);
    font-size: 22px;
}

.legal-notice-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.legal-notice-body p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 18px;
}

.legal-notice-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}

@media (max-width: 480px) {
    .legal-notice-popup {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }
}

/* ==========================================
   INTERACTIVE GALLERY SECTION & LIGHTBOX
   ========================================== */
.gallery-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 10px 22px;
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.gallery-tab:hover {
    color: var(--primary, #0b3d91);
    border-color: var(--primary, #0b3d91);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: var(--primary, #0b3d91);
    color: #ffffff;
    border-color: var(--primary, #0b3d91);
    box-shadow: 0 4px 14px rgba(11, 61, 145, 0.25);
}

/* Slider Track Wrapper */
.gallery-slider-wrapper {
    position: relative;
    padding: 0 45px;
    margin: 0 auto;
}

.gallery-slider-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    padding: 10px 0;
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Gallery Card */
.gallery-card {
    flex: 0 0 calc(33.333% - 16px);
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(11, 61, 145, 0.16);
}

.gallery-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1e293b;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img-box img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary, #0b3d91);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0.7);
    transition: transform 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-info {
    padding: 20px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(11, 61, 145, 0.08);
    color: var(--primary, #0b3d91);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.gallery-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.35;
}

.gallery-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Slider Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary, #0b3d91);
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    outline: none;
}

.gallery-arrow:hover {
    background: var(--primary, #0b3d91);
    color: #ffffff;
    border-color: var(--primary, #0b3d91);
    box-shadow: 0 6px 18px rgba(11, 61, 145, 0.3);
}

.gallery-arrow-prev {
    left: 0;
}

.gallery-arrow-next {
    right: 0;
}

.gallery-arrow.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination Dots */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary, #0b3d91);
}

/* Load More Button */
.btn-load-gallery {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 1050px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.gallery-lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: var(--secondary, #d4af37);
    color: #0b3d91;
}

.lightbox-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    max-height: 85vh;
}

.lightbox-img-wrapper {
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 600px;
}

.lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 600px;
}

.lightbox-caption-box {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

.lightbox-category {
    color: var(--secondary, #d4af37);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lightbox-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.lightbox-caption {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.lightbox-counter {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #0b3d91;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.lightbox-arrow:hover {
    background: var(--primary, #0b3d91);
    color: #ffffff;
}

.lightbox-arrow-prev {
    left: 20px;
}

.lightbox-arrow-next {
    right: 20px;
}

/* Responsive Rules for Gallery */
@media (max-width: 992px) {
    .gallery-card {
        flex: 0 0 calc(50% - 12px);
    }
    .lightbox-body {
        grid-template-columns: 1fr;
    }
    .lightbox-img-wrapper {
        max-height: 380px;
    }
    .lightbox-caption-box {
        padding: 24px 20px;
    }
    .lightbox-title {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .gallery-slider-wrapper {
        padding: 0 10px;
    }
    .gallery-card {
        flex: 0 0 100%;
    }
    .gallery-arrow {
        display: none;
    }
    .gallery-filter-tabs {
        gap: 8px;
    }
    .gallery-tab {
        padding: 8px 16px;
        font-size: 12.5px;
    }
}

/* ==========================================
   GALLERY PAGE MASONRY GRID STYLING
   ========================================== */
.gallery-grid-section {
    padding: 70px 0 90px;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.gallery-grid-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #1e293b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 36px rgba(11, 61, 145, 0.2);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.1);
}

.gallery-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
}

.gallery-grid-badge {
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary, #0b3d91);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.gallery-grid-zoom {
    align-self: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary, #0b3d91);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

.gallery-grid-item:hover .gallery-grid-zoom {
    transform: scale(1);
}

.gallery-grid-caption {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   AUTHENTIC GOOGLE MAPS REVIEWS & DUAL MARQUEE SLIDER
   ========================================================================== */
.google-reviews-section {
    padding: 85px 0;
    background: #f8fafc;
    color: #0f172a;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.google-rating-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.google-g-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.google-rating-info {
    text-align: left;
}

.google-rating-num {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-stars-yellow {
    color: #fbbc04;
    font-size: 14px;
    letter-spacing: 1px;
}

.google-rating-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.google-reviews-section {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
}

.marquee-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-left-to-right {
    animation: marqueeL2R 35s linear infinite;
}

.marquee-right-to-left {
    animation: marqueeR2L 35s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeL2R {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeR2L {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.google-review-card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.google-review-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.2);
    border-color: #4285f4;
}

.google-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   INTERACTIVE ADVOCATE PROFILE & SPECIALIZATIONS WIDGET
   ========================================================================== */
.advocate-bio-interactive {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.advocate-key-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #0b3d91;
    transition: all 0.25s ease;
}

.bio-badge:hover {
    background: #0b3d91;
    color: #ffffff;
    border-color: #0b3d91;
    transform: translateY(-2px);
}

.courts-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}

.court-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.court-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(11, 61, 145, 0.12);
    border-color: #d6af37;
}

.court-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #0b3d91, #d6af37);
    border-radius: 4px 0 0 4px;
}

.court-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(11, 61, 145, 0.08);
    color: #0b3d91;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 8px;
}

.court-card-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px;
}

.court-card-item p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.specs-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.spec-chip {
    padding: 7px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 25px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.spec-chip:hover, .spec-chip.active {
    background: #0b3d91;
    color: #ffffff;
    border-color: #0b3d91;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.2);
}

.spec-chip i {
    color: #d6af37;
    font-size: 12px;
}

.spec-chip:hover i, .spec-chip.active i {
    color: #ffffff;
}

.reviewer-avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #0b3d91);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    flex-shrink: 0;
}

.reviewer-avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4285f4;
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.3);
    flex-shrink: 0;
}

.reviewer-info-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.local-guide-tag {
    font-size: 11px;
    color: #e37400;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-card-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.google-card-stars {
    color: #fbbc04;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-time-ago {
    font-size: 12px;
    color: #94a3b8;
}

.google-card-text {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.google-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #4285f4;
    font-weight: 600;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

.click-expand-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0b3d91;
}

/* ==========================================================================
   GOOGLE REVIEW DETAIL LIGHTBOX MODAL
   ========================================================================== */
.google-review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.google-review-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.google-review-modal-card {
    background: #ffffff;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-review-modal-overlay.open .google-review-modal-card {
    transform: translateY(0) scale(1);
}

.modal-google-bar {
    height: 5px;
    background: linear-gradient(to right, #4285f4 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75%);
}

.modal-header-content {
    padding: 24px 28px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.modal-close-btn {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-body-content {
    padding: 24px 28px;
}

.modal-stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.modal-review-text-full {
    font-size: 15px;
    color: #1e293b;
    line-height: 1.65;
    margin-bottom: 20px;
}

.modal-footer-actions {
    padding: 16px 28px 24px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   BULLETPROOF RESPONSIVE MEDIA QUERIES FOR ALL SCREEN SIZES
   ========================================================================== */

/* Tablets & Small Laptops (max-width: 992px) */
@media (max-width: 992px) {
    .eligibility-quiz-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .quiz-field:nth-child(3) {
        grid-column: span 2;
    }
    .eligibility-quiz-form button {
        grid-column: span 2;
    }
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr !important;
    }
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    .eligibility-quiz-form {
        grid-template-columns: 1fr;
    }
    .quiz-field:nth-child(3) {
        grid-column: span 1;
    }
    .eligibility-quiz-form button {
        grid-column: span 1;
        width: 100%;
    }
    .quiz-result-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .step-key-points {
        grid-template-columns: 1fr;
    }
    .doc-tab {
        flex: 1 1 auto;
        justify-content: center;
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .eligibility-quiz-wrapper {
        padding: 20px 16px;
    }
    .quiz-header h3 {
        font-size: 18px;
    }
    .doc-item-card {
        padding: 18px 14px;
    }
    .process-step-card {
        padding: 20px 16px;
    }
    .step-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .step-card-header h3 {
        font-size: 18px;
    }
    .process-stepper-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        margin-bottom: 25px;
        gap: 10px;
    }
    .process-step-btn {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .step-num-dot {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .step-btn-label {
        font-size: 11px;
    }
}

/* ==========================================================================
   ADVANCED MOBILE & RESPONSIVE FIXES FOR ADVOCATE PROFILE & REVIEWS
   ========================================================================== */
.profile-portrait {
    object-position: top center !important;
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .profile-portrait {
        height: 380px !important;
        object-position: top center !important;
    }
}

/* Mobile-Only Interactive Single Gallery Slider */
.mobile-review-gallery-slider {
    display: none;
}

@media (max-width: 768px) {
    /* Hide marquee dual streams on mobile */
    .marquee-container {
        display: none !important;
    }

    /* Show 1-card-at-a-time Mobile Review Gallery Slider */
    .mobile-review-gallery-slider {
        display: block !important;
        width: 100%;
        margin-top: 20px;
        position: relative;
    }

    .mobile-slider-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 6px 4px 16px;
        scroll-behavior: smooth;
    }

    .mobile-review-slide-card {
        scroll-snap-align: center;
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 22px 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        position: relative;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .mobile-slider-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 14px;
        padding: 0 8px;
    }

    .mobile-slider-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #cbd5e1;
        color: #0b3d91;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-slider-btn:active {
        transform: scale(0.92);
        background: #0b3d91;
        color: #ffffff;
    }

    .mobile-slider-dots {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e1;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .mobile-slider-dot.active {
        width: 24px;
        border-radius: 10px;
        background: #4285f4;
    }
}

@media (max-width: 576px) {
    .profile-portrait {
        height: 320px !important;
        object-position: top center !important;
    }
}

/* ==========================================================================
   PREMIUM INTERACTIVE PRACTICE CARDS & RESPONSIVE MODAL ENHANCEMENTS
   ========================================================================== */
.court-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.court-card-item {
    background: #ffffff;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.court-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b3d91, #d6af37);
    opacity: 0.8;
    transition: height 0.3s ease;
}

.court-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(11, 61, 145, 0.12);
    border-color: #0b3d91;
}

.court-card-item:hover::before {
    height: 6px;
    opacity: 1;
}

.court-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.1), rgba(214, 175, 55, 0.15));
    color: #0b3d91;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 19px;
    transition: all 0.3s ease;
}

.court-card-item:hover .court-icon-box {
    background: linear-gradient(135deg, #0b3d91, #1e40af);
    color: #ffffff;
    transform: scale(1.08);
}

.court-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(11, 61, 145, 0.07);
    color: #0b3d91;
    margin-top: 10px;
    width: max-content;
}

/* Responsive Grid for Practice Cards */
@media (max-width: 640px) {
    .court-cards-container {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .court-card-item {
        padding: 18px 16px !important;
    }
}

/* Fully Responsive Google Review Detail Lightbox Modal for Mobile Phones */
@media (max-width: 576px) {
    .google-review-modal-overlay {
        padding: 12px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .google-review-modal-card {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
        margin: 0 auto !important;
    }

    .modal-header-content {
        padding: 18px 16px 12px !important;
    }

    .modal-close-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
        flex-shrink: 0 !important;
    }

    .modal-body-content {
        padding: 16px !important;
    }

    #modalReviewText {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .reviewer-avatar-circle {
        width: 42px !important;
        height: 42px !important;
        font-size: 15px !important;
    }

    .reviewer-info-text h4 {
        font-size: 15px !important;
    }
}

/* ==========================================================================
   GLOBAL MOBILE VIEWPORT SAFETY & OVERFLOW PREVENTION
   ========================================================================== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .profile-left-col, .profile-right-col, .profile-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .btn {
        white-space: normal !important;
        word-break: break-word !important;
    }

    .floating-cta-container {
        bottom: 16px !important;
        right: 14px !important;
        gap: 8px !important;
    }

    .floating-btn {
        width: 46px !important;
        height: 46px !important;
        font-size: 17px !important;
    }
}

/* ==========================================================================
   LEGAL PAGES LAYOUT (Privacy Policy, Terms, Disclaimer)
   ========================================================================== */

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-sidebar,
.content-main,
.main-content-col,
.sidebar-col {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

/* Policy cards used in new legal pages */
.policy-card,
.legal-card,
.content-card {
    background: #ffffff;
    border-left: 4px solid var(--secondary);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover,
.legal-card:hover,
.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.policy-card h2,
.legal-card h2 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-card h2 i,
.legal-card h2 i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.policy-card p,
.legal-card p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 15px;
}

.policy-card p:last-child,
.legal-card p:last-child {
    margin-bottom: 0;
}

/* Sidebar widgets */
.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget h3 i {
    color: var(--secondary);
}

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

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
    background: var(--primary-dark);
    color: #ffffff;
}

/* BCI notice block (Disclaimer page) */
.bci-notice {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 28px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary);
}

.bci-notice h2 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bci-notice h2 i {
    color: var(--secondary);
}

.bci-notice p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Credential and contact info lists */
.credential-list,
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credential-list li,
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
}

.credential-list li i,
.contact-info-list li i {
    color: var(--secondary);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Page content section wrapper */
.page-content {
    background: #f8fafc;
    padding: 70px 0;
}

/* Responsive: stack grid on tablet/mobile */
@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: 1fr !important;
    }

    .content-sidebar {
        position: static !important;
        margin-top: 0;
    }
}

/* ==========================================================================
   DOWNLOAD FORMS MODAL STYLES
   ========================================================================== */
.download-forms-dialog {
    max-width: 540px;
    width: 92%;
    margin: 20px auto;
}

.download-forms-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(4, 19, 43, 0.25), 0 0 0 1px rgba(11, 61, 145, 0.08);
    border: none;
    overflow: hidden;
}

.download-forms-header {
    background: linear-gradient(135deg, #04132b 0%, #0b3d91 100%);
    padding: 20px 24px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-forms-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-forms-header h3 i {
    color: var(--secondary, #c59b27);
    font-size: 20px;
}

.download-forms-header .modal-close {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.download-forms-header .modal-close:hover {
    color: #ffffff;
    background: rgba(239, 68, 68, 0.8);
    transform: rotate(90deg);
}

.download-forms-body {
    padding: 24px 24px 28px;
    background-color: #ffffff;
}

.download-forms-intro {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.download-forms-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.download-form-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.download-form-item:hover,
.download-form-item:focus {
    background-color: #ffffff;
    border-color: #0b3d91;
    box-shadow: 0 10px 25px -5px rgba(11, 61, 145, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
}

.df-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.25s ease;
}

.download-form-item:hover .df-icon-wrap {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.08);
}

.df-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.df-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    word-break: break-word;
}

.df-subtitle {
    font-size: 12px;
    color: #64748b;
    font-weight: 400;
}

.df-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #0b3d91;
    color: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.download-form-item:hover .df-action-btn {
    background: #c59b27;
    color: #04132b;
    box-shadow: 0 4px 12px rgba(197, 155, 39, 0.3);
}

.download-forms-footer {
    padding: 16px 24px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .download-forms-dialog {
        max-width: 100%;
        margin: 16px;
        width: calc(100% - 32px);
    }
    
    .download-forms-header {
        padding: 16px 20px;
    }
    
    .download-forms-header h3 {
        font-size: 16px;
    }

    .download-forms-body {
        padding: 18px 16px 20px;
    }

    .download-form-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .df-icon-wrap {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 18px;
    }

    .df-title {
        font-size: 13.5px;
    }

    .df-subtitle {
        font-size: 11px;
    }

    .df-action-btn {
        padding: 7px 12px;
        font-size: 12px;
        gap: 6px;
    }
}

@media (max-width: 400px) {
    .download-form-item {
        flex-wrap: wrap;
    }
    .df-action-btn {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
}



