:root {
    /* Premium Light Theme Color Palette - Lawyer Browns & Neutrals */
    --bg-dark: #FAFAF8;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F5F3EF;
    --text-primary: #3D3229;
    --text-secondary: #6B6156;
    --accent-gold: #C49B6B;
    --accent-gold-light: #C49B6B;
    --accent-gold-dark: #8B5E3C;
    --border-glass: rgba(124, 80, 46, 0.1);
    --glow-gold: rgba(139, 94, 60, 0.12);

    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Layout */
    --max-width: 1280px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================================
   ACCESSIBILITY - Reduced Motion
   ====================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .cta-section::before,
    .cta-section::after,
    .pulse,
    .wa-pulse {
        animation: none !important;
    }
}

/* ======================================
   BASE STYLES
   ====================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Section scroll offset for sticky header */
section[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    section[id] {
        scroll-margin-top: 80px;
    }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

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

/* ======================================
   UTILITIES
   ====================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* ======================================
   LAYOUT COMPONENTS
   ====================================== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold-dark);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, #6B4423 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(124, 80, 46, 0.25);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 80, 46, 0.35);
}

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

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    border-color: rgba(124, 80, 46, 0.2);
}

.btn-outline {
    border: 1.5px solid var(--accent-gold-dark);
    color: var(--accent-gold-dark);
    padding: 10px 22px;
    background: transparent;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-gold-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 80, 46, 0.2);
}

/* ======================================
   TOP BAR
   ====================================== */
.top-bar {
    background: linear-gradient(135deg, #2D2420 0%, #1A1612 100%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    padding: 8px 0;
    max-height: 50px;
    width: 100%;
    position: relative;
    z-index: 101;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(196, 155, 107, 0.1);
    overflow: hidden;
}

.top-bar-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

/* Top bar info badges */
.top-badge {
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.top-badge svg {
    color: var(--accent-gold);
    stroke: var(--accent-gold);
    flex-shrink: 0;
    opacity: 0.85;
}

/* Gold dot separator */
.top-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.4;
    flex-shrink: 0;
}

/* Contact links (email, phone) */
.top-link {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.top-link svg {
    color: var(--accent-gold);
    stroke: var(--accent-gold);
    flex-shrink: 0;
    opacity: 0.85;
}

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

.top-link:hover svg {
    opacity: 1;
}

/* Phone highlight variant */
.top-link-phone {
    color: #FFFFFF;
    font-weight: 600;
}

.top-link-phone svg {
    opacity: 1;
}

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 251, 249, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 80, 46, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.4s ease, 
                box-shadow 0.4s ease;
}

/* Hide top bar when scrolling down */
body.scrolled-down .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Keep navbar visible when scrolling */
body.scrolled-down .navbar {
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(124, 80, 46, 0.08);
    border-bottom-color: rgba(124, 80, 46, 0.15);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.logo-accent {
    color: var(--accent-gold-dark);
    font-weight: 700;
}

.logo-subtitle {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: -4px;
    margin-left: 12px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-buttons .btn-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links > a,
.dropdown-trigger {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-links > a::after,
.dropdown-trigger::after {
    content: '';
    position: absolute;
    height: 2px;
    bottom: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-links > a:hover,
.dropdown-trigger:hover {
    color: var(--accent-gold-dark);
}

.nav-links > a:hover::after,
.nav-dropdown:hover .dropdown-trigger::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger .arrow {
    font-size: 0.65em;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.nav-dropdown:hover .arrow,
.nav-dropdown.open .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    margin-top: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 250, 247, 0.98) 100%);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(124, 80, 46, 0.12);
    border-top: 3px solid var(--accent-gold-dark);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 48px rgba(124, 80, 46, 0.12),
                0 4px 16px rgba(0, 0, 0, 0.04);
    z-index: 200;
    width: max-content;
}

.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dropdown-col-head {
    display: block;
    color: var(--accent-gold-dark) !important;
    font-size: 0.7rem !important;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600 !important;
    padding: 0 0 0.3rem 0 !important;
    margin-bottom: 0.25rem;
    border-bottom: 2px solid rgba(124, 80, 46, 0.12);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dropdown-col-head:hover {
    color: var(--text-primary) !important;
    background: none !important;
    padding-left: 0 !important;
}

.dropdown-col a {
    display: block;
    padding: 3px 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    border-radius: 4px;
    line-height: 1.25;
    white-space: nowrap;
}

.dropdown-col a:hover {
    color: var(--accent-gold-dark);
    background: rgba(196, 155, 107, 0.1);
    padding-left: 12px;
}

/* Smooth hover bridge for dropdown */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    pointer-events: none;
}

.nav-dropdown:hover::after {
    pointer-events: all;
}

/* Simple About Dropdown */
.dropdown-panel-simple {
    grid-template-columns: 1fr !important;
    width: auto;
    min-width: 180px;
    padding: 0.75rem 0 !important;
    gap: 0 !important;
}

.dropdown-panel-simple a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.dropdown-panel-simple a:hover {
    color: var(--accent-gold-dark);
    background: rgba(184, 142, 94, 0.08);
    padding-left: 1.75rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: rgba(124, 80, 46, 0.06);
    border: 1px solid rgba(124, 80, 46, 0.12);
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 101;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(124, 80, 46, 0.1);
    border-color: rgba(124, 80, 46, 0.2);
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-menu-btn span:nth-child(1) { top: 14px; }
.mobile-menu-btn span:nth-child(2) { top: 21px; }
.mobile-menu-btn span:nth-child(3) { top: 28px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 21px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 21px;
}

/* ======================================
   MOBILE MENU - OFF-CANVAS DESIGN
   ====================================== */

/* Backdrop Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Mobile Menu Panel (Off-Canvas) */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #FAFAF8;
    z-index: 99;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
    border-bottom: 1px solid rgba(124, 80, 46, 0.1);
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-logo .logo-accent {
    color: var(--accent-gold-dark);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 80, 46, 0.06);
    border: 1px solid rgba(124, 80, 46, 0.12);
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.mobile-menu-close:hover {
    background: rgba(196, 155, 107, 0.15);
    border-color: var(--accent-gold-dark);
    color: var(--accent-gold-dark);
    transform: rotate(90deg);
}

/* Mobile Menu Body */
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Mobile Menu Sections */
.mobile-nav-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 80, 46, 0.08);
}

.mobile-nav-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-nav-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: rgba(196, 155, 107, 0.1);
    color: var(--accent-gold-dark);
    transform: translateX(4px);
}

.mobile-nav-link .nav-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* Sublinks (Popular Services) */
.mobile-nav-sublink {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
}

.mobile-nav-sublink:hover {
    color: var(--accent-gold-dark);
}

.mobile-nav-sublink::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold-light);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.25s ease;
}

.mobile-nav-sublink:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Contact Section */
.mobile-contact-section {
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 0.5rem;
}

.mobile-contact-section .mobile-nav-title {
    padding-left: 0;
    margin-bottom: 0.875rem;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mobile-contact-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.contact-icon {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-contact-item:hover .contact-value {
    color: var(--accent-gold-dark);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 1.25rem 1.5rem;
    background: #FFFFFF;
    border-top: 1px solid rgba(124, 80, 46, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-call-btn,
.mobile-whatsapp-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.mobile-call-btn:hover,
.mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: none;
}

.mobile-whatsapp-btn:hover {
    background: linear-gradient(135deg, #22c35e 0%, #0f7a6e 100%);
}

/* ======================================
   BREADCRUMB
   ====================================== */
.breadcrumb {
    font-size: 0.85rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold-light);
}

.breadcrumb .sep {
    margin: 0 0.45rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--accent-gold-dark);
}

/* Breadcrumb inside blog posts (left-aligned, no extra top margin) */
.blog-post .breadcrumb {
    text-align: left;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* ======================================
   HERO SECTION
   ====================================== */
.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    background: linear-gradient(180deg, #FAFAF8 0%, #F5F3EF 100%);
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 90% 10%, rgba(196, 155, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--accent-gold-dark);
    margin-bottom: 0.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold-dark);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

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

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 52ch;
    margin: 0.5rem 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, #6B4423 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.4);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(139, 94, 60, 0.3);
}

.hero-actions .btn-secondary:hover {
    background: rgba(196, 155, 107, 0.08);
    border-color: var(--accent-gold-dark);
    color: var(--accent-gold-dark);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 94, 60, 0.12);
    border-radius: 16px;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    box-shadow: 0 4px 24px rgba(139, 94, 60, 0.06),
                0 1px 3px rgba(139, 94, 60, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 94, 60, 0.12),
                0 4px 8px rgba(139, 94, 60, 0.06);
}

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent-gold-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-areas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(139, 94, 60, 0.12);
}

.hero-areas-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-right: 0.5rem;
}

.hero-areas a {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-gold-dark);
    padding: 0.5rem 1rem;
    background: rgba(196, 155, 107, 0.08);
    border-radius: 20px;
    transition: all 0.25s ease;
}

.hero-areas a:hover {
    background: var(--accent-gold-dark);
    color: #FFFFFF;
}

/* ======================================
   SERVICES SECTION
   ====================================== */
.services-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #F5F3EF 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.last-updated {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.last-updated span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 2px 8px rgba(139, 94, 60, 0.04);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: clamp(1rem, 2vw, 1.75rem);
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02),
                0 0 0 1px rgba(139, 94, 60, 0.02);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 20px 40px -10px rgba(139, 94, 60, 0.12),
                0 8px 16px -4px rgba(139, 94, 60, 0.06);
}

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

.service-icon-wrapper {
    width: clamp(52px, 4vw, 64px);
    height: clamp(52px, 4vw, 64px);
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.12) 0%, 
        rgba(139, 94, 60, 0.06) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(139, 94, 60, 0.25);
}

.service-icon-wrapper svg {
    width: clamp(24px, 2vw, 28px);
    height: clamp(24px, 2vw, 28px);
    stroke: var(--accent-gold-dark);
    transition: all 0.35s ease;
}

.service-card:hover .service-icon-wrapper svg {
    stroke: #FFFFFF;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card > p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.service-features li {
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: var(--text-secondary);
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-card:hover .service-features li {
    color: var(--text-primary);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-gold-light);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.service-card:hover .service-features li::before {
    background: var(--accent-gold-dark);
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    margin-top: auto;
    border-top: 1px solid var(--border-glass);
    gap: 0.75rem;
}

.service-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.service-link:hover {
    color: var(--text-primary);
    gap: 0.75rem;
}

.service-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.service-link:hover .service-arrow {
    transform: translateX(4px);
}

.service-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.875rem;
    background: rgba(196, 155, 107, 0.12);
    color: var(--accent-gold-dark);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-card:hover .service-tag {
    background: var(--accent-gold-dark);
    color: #FFFFFF;
}

/* ======================================
   WHY US SECTION
   ====================================== */
.why-us-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, #F5F3EF 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-us-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 94, 60, 0.12);
    box-shadow: 0 24px 48px -12px rgba(139, 94, 60, 0.1),
                0 12px 24px -6px rgba(139, 94, 60, 0.05);
}

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

.why-icon {
    width: clamp(64px, 5vw, 80px);
    height: clamp(64px, 5vw, 80px);
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.15) 0%, 
        rgba(139, 94, 60, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1.25rem, 2vw, 1.5rem);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(196, 155, 107, 0.2);
}

.why-us-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(139, 94, 60, 0.25);
    border-color: transparent;
}

.why-us-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: clamp(0.625rem, 1vw, 0.875rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.why-us-card p {
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ======================================
   PROCESS SECTION
   ====================================== */
.process-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: var(--max-width);
    margin: 0 auto;
}

.process-step {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(139, 94, 60, 0.12),
                0 8px 16px -4px rgba(139, 94, 60, 0.06);
    border-color: rgba(196, 155, 107, 0.2);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.1) 0%, rgba(139, 94, 60, 0.05) 100%);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold-dark);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(139, 94, 60, 0.2);
}

.process-step:hover .step-icon svg {
    stroke: #FFFFFF;
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.process-step p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ======================================
   DETAIL SECTIONS
   ====================================== */
.detail-section {
    padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
    background: var(--bg-card);
    position: relative;
}

.detail-section--alt {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #F5F3EF 100%);
}

.detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.detail-grid--reverse {
    grid-template-columns: 0.85fr 1fr;
}

.detail-grid--reverse .detail-content {
    order: 2;
}

.detail-grid--reverse .detail-highlight {
    order: 1;
}

.detail-content {
    max-width: 600px;
}

.detail-content h2,
.detail-content-wide h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: clamp(0.875rem, 1.5vw, 1.25rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.detail-content > p,
.detail-content-wide > p {
    color: var(--text-secondary);
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    line-height: 1.7;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.detail-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: clamp(1.5rem, 2.5vw, 2rem) 0 clamp(0.75rem, 1vw, 1rem);
}

.detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-content ul li {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.detail-content ul li:hover {
    color: var(--text-primary);
}

.detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-gold-light);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.detail-content ul li:hover::before {
    background: var(--accent-gold-dark);
    transform: translateY(-50%) scale(1.2);
}

/* Detail Section Header (centered, full-width) */
.detail-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.detail-section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.detail-section-header p {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing Cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 960px;
    margin: 0 auto clamp(3rem, 5vw, 4rem);
}

.price-card {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(139, 94, 60, 0.12),
                0 8px 16px -4px rgba(139, 94, 60, 0.06);
    border-color: rgba(196, 155, 107, 0.2);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card--featured {
    border-color: var(--accent-gold-light);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
}

.price-card--featured::before {
    opacity: 1;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.price-card-header {
    margin-bottom: 1.25rem;
}

.price-card-header svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold-dark);
    margin-bottom: 0.75rem;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.price-amount {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--accent-gold-dark);
    margin-bottom: 0.75rem;
}

.price-desc {
    display: block;
    font-size: clamp(0.8rem, 1vw, 0.875rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Cost Factors Section */
.cost-factors {
    max-width: 960px;
    margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.cost-factors-title {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.cost-factors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.cost-factor {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.cost-factor:hover {
    border-color: rgba(196, 155, 107, 0.3);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.08);
}

.cost-factor svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold-dark);
    flex-shrink: 0;
}

/* Emergency CTA Banner */
.emergency-banner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    background: linear-gradient(145deg, #2A221D, #3D3229, #4A3F35);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
}

.emergency-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.emergency-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold-light);
}

.emergency-content {
    flex: 1;
}

.emergency-content h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.emergency-content p {
    font-size: clamp(0.85rem, 1vw, 0.9375rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.emergency-btn {
    flex-shrink: 0;
    background: #FFFFFF !important;
    color: var(--accent-gold-dark) !important;
    white-space: nowrap;
}

.emergency-btn:hover {
    background: var(--accent-gold-light) !important;
    color: #FFFFFF !important;
}

/* Property Steps (reuses process-step card pattern) */
.property-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: var(--max-width);
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.property-step {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(139, 94, 60, 0.12),
                0 8px 16px -4px rgba(139, 94, 60, 0.06);
    border-color: rgba(196, 155, 107, 0.2);
}

.property-step:hover::before {
    transform: scaleX(1);
}

.property-step-num {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.1) 0%, rgba(139, 94, 60, 0.05) 100%);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.property-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.property-step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold-dark);
    transition: all 0.4s ease;
}

.property-step:hover .property-step-icon {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(139, 94, 60, 0.2);
}

.property-step:hover .property-step-icon svg {
    stroke: #FFFFFF;
}

.property-step h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.property-step p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Verification Banner */
.verification-banner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.verification-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.12) 0%, rgba(139, 94, 60, 0.06) 100%);
    border-radius: 14px;
}

.verification-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold-dark);
}

.verification-content {
    flex: 1;
    min-width: 200px;
}

.verification-content h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.verification-content p {
    font-size: clamp(0.85rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.verification-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.check-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
    border: 1px solid rgba(139, 94, 60, 0.1);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.check-chip:hover {
    border-color: rgba(196, 155, 107, 0.3);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.08);
}

.check-chip svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-gold-dark);
    flex-shrink: 0;
}

.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    box-shadow: 0 10px 30px -5px rgba(139, 94, 60, 0.08),
                0 4px 10px -2px rgba(139, 94, 60, 0.04);
}

.highlight-box--property {
    background: linear-gradient(180deg, #FDF9F3 0%, var(--bg-card) 100%);
    border-color: rgba(196, 155, 107, 0.15);
}

.highlight-box--docs {
    background: linear-gradient(180deg, #F3F9FD 0%, var(--bg-card) 100%);
    border-color: rgba(107, 155, 196, 0.15);
}

.highlight-icon {
    width: clamp(52px, 4vw, 64px);
    height: clamp(52px, 4vw, 64px);
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.12) 0%, 
        rgba(139, 94, 60, 0.06) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-box:hover .highlight-icon {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(196, 155, 107, 0.3);
}

.highlight-box h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    line-height: 1.3;
}

.highlight-box p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.highlight-box .btn {
    width: 100%;
    justify-content: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(0.875rem, 1.2vw, 1rem);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.check-list li {
    font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
    color: var(--text-secondary);
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.check-list li:hover {
    color: var(--text-primary);
}

.check-list li::before {
    content: '✓';
    color: var(--accent-gold-dark);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 0.9375rem;
}

.process-timeline {
    margin: clamp(1.25rem, 2vw, 1.75rem) 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--accent-gold-light) 0%, 
        var(--accent-gold-dark) 50%,
        transparent 100%);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.875rem, 1.5vw, 1.125rem);
    padding: clamp(0.875rem, 1.5vw, 1.125rem) 0;
    position: relative;
}

.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item .step {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.25);
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.timeline-content p {
    font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.detail-stats {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 1.25rem);
}

.stat-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
    border-color: rgba(139, 94, 60, 0.15);
}

.stat-highlight .big-stat {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--accent-gold-dark);
    margin-bottom: 0.375rem;
}

.stat-highlight .stat-text {
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Bail Section Redesign --- */
.bail-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 820px;
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.bail-stat-card {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 1.5vw, 1.25rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bail-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bail-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.1);
    border-color: rgba(139, 94, 60, 0.15);
}

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

.bail-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto clamp(0.75rem, 1.25vw, 1rem);
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08), rgba(196, 155, 107, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.bail-stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold-dark);
    transition: all 0.35s ease;
}

.bail-stat-card:hover .bail-stat-icon {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light));
}

.bail-stat-card:hover .bail-stat-icon svg {
    stroke: #FFFFFF;
}

.bail-stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--accent-gold-dark);
    margin-bottom: 0.25rem;
}

.bail-stat-label {
    font-size: clamp(0.8rem, 0.95vw, 0.875rem);
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Bail Reasons Grid */
.bail-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.bail-reason {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 1.25vw, 1rem);
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bail-reason:hover {
    transform: translateX(4px);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
}

.bail-reason-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08), rgba(196, 155, 107, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bail-reason-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold-dark);
    transition: all 0.3s ease;
}

.bail-reason:hover .bail-reason-icon {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light));
}

.bail-reason:hover .bail-reason-icon svg {
    stroke: #FFFFFF;
}

.bail-reason-content h4 {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.bail-reason-content p {
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Bail Types Section */
.bail-types-section {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.bail-types-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.bail-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.bail-type-card {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bail-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bail-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.1);
    border-color: rgba(139, 94, 60, 0.15);
}

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

.bail-type-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto clamp(1rem, 1.5vw, 1.25rem);
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08), rgba(196, 155, 107, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.bail-type-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-gold-dark);
    transition: all 0.35s ease;
}

.bail-type-card:hover .bail-type-icon {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light));
}

.bail-type-card:hover .bail-type-icon svg {
    stroke: #FFFFFF;
}

.bail-type-card h4 {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bail-type-card p {
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Bail Emergency Banner */
.bail-emergency-banner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    background: linear-gradient(145deg, #2A221D, #3D3229, #4A3F35);
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
}

.bail-emergency-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bail-emergency-icon svg {
    width: 28px;
    height: 28px;
    stroke: #FFFFFF;
}

.bail-emergency-content {
    flex: 1;
}

.bail-emergency-content h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.bail-emergency-content p {
    font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0;
}

.bail-emergency-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-light-on-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #FFFFFF !important;
    color: var(--accent-gold-dark) !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-light-on-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-on-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366 !important;
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp-on-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    background: #20bd5a !important;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 1.5vw, 1.25rem);
    margin: clamp(1.5rem, 2.5vw, 2rem) 0;
}

.selection-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: clamp(1.25rem, 1.8vw, 1.5rem);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
}

.selection-card .num {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.2vw, 2.25rem);
    font-weight: 700;
    color: rgba(196, 155, 107, 0.25);
    position: absolute;
    top: clamp(0.75rem, 1vw, 1rem);
    right: clamp(0.75rem, 1vw, 1rem);
    line-height: 1;
    transition: color 0.3s ease;
}

.selection-card:hover .num {
    color: rgba(196, 155, 107, 0.4);
}

.selection-card h4 {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    padding-right: 2rem;
    line-height: 1.3;
}

.selection-card p {
    font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.female-advantage {
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.08) 0%, 
        rgba(139, 94, 60, 0.04) 100%);
    border-left: 3px solid var(--accent-gold-dark);
    padding: clamp(1.25rem, 2vw, 1.5rem);
    border-radius: 0 14px 14px 0;
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

.female-advantage h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.female-advantage p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.625rem, 1vw, 0.75rem) clamp(0.875rem, 1.2vw, 1rem);
    background: var(--bg-dark);
    border-radius: 10px;
    border: 1px solid var(--border-glass);
    transition: all 0.2s ease;
}

.doc-item:hover {
    background: var(--bg-card);
    border-color: rgba(139, 94, 60, 0.15);
    transform: translateX(3px);
}

.doc-check {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nadra-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.nadra-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.nadra-list li::before {
    content: '•';
    color: var(--accent-gold-dark);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* --- Document Cards Grid --- */
.doc-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.doc-card {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.1);
    border-color: rgba(139, 94, 60, 0.15);
}

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

.doc-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto clamp(0.75rem, 1.25vw, 1rem);
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08), rgba(196, 155, 107, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.doc-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold-dark);
    transition: all 0.35s ease;
}

.doc-card:hover .doc-card-icon {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light));
}

.doc-card:hover .doc-card-icon svg {
    stroke: #FFFFFF;
}

.doc-card h4 {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.doc-card p {
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* NADRA Banner */
.doc-nadra-banner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.5rem, 2.5vw, 2rem);
}

.doc-nadra-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(107, 155, 196, 0.1), rgba(107, 155, 196, 0.18));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-nadra-icon svg {
    width: 26px;
    height: 26px;
    stroke: #5B8DB8;
}

.doc-nadra-content {
    flex-shrink: 0;
}

.doc-nadra-content h4 {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.doc-nadra-content p {
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    color: var(--text-secondary);
    margin: 0;
}

.doc-nadra-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ======================================
   LOCATION SECTION
   ====================================== */
.location-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #F5F3EF 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: stretch;
}

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.location-content h2 span {
    color: var(--accent-gold-dark);
}

.location-content > p {
    color: var(--text-secondary);
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    line-height: 1.7;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.location-item {
    display: flex;
    gap: clamp(0.875rem, 1.5vw, 1.125rem);
    align-items: flex-start;
    padding: clamp(1rem, 1.5vw, 1.25rem);
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-item:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 4px 20px rgba(139, 94, 60, 0.06);
}

.location-item .icon,
.location-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg,
        rgba(196, 155, 107, 0.12) 0%,
        rgba(139, 94, 60, 0.06) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-gold-dark);
    transition: all 0.3s ease;
}

.location-item:hover .icon,
.location-item:hover .location-item-icon {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    transform: scale(1.05);
}

.location-item:hover .icon {
    filter: brightness(0) invert(1);
}

.location-item:hover .location-item-icon svg {
    stroke: #FFFFFF;
}

.location-item-content strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.location-item-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.location-map {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    border: 1px solid var(--border-glass);
    height: 100%;
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 20px;
}

.map-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.map-note strong {
    color: var(--accent-gold-dark);
}

/* ======================================
   COURTS ACCESS SECTION (Location Pages)
   ====================================== */
.courts-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F3EF 100%);
}

.courts-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.courts-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.courts-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
}

.courts-intro .section-kicker {
    display: block;
    margin-bottom: 0.75rem;
}

.courts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.625rem, 1vw, 0.75rem);
}

.court-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: clamp(0.875rem, 1.2vw, 1rem) clamp(1rem, 1.5vw, 1.25rem);
    background: white;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.court-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.08);
    border-color: rgba(139, 94, 60, 0.18);
}

.court-card-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg,
        rgba(196, 155, 107, 0.12) 0%,
        rgba(139, 94, 60, 0.06) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.court-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.court-card:hover .court-card-icon {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
}

.court-card:hover .court-card-icon svg {
    stroke: #FFFFFF;
}

.court-card-info {
    min-width: 0;
}

.court-card-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.court-card-detail {
    font-size: 0.775rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
}

/* Odd last card spans full */
.courts-grid .court-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
}

@media (max-width: 968px) {
    .courts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 640px) {
    .courts-grid {
        grid-template-columns: 1fr;
    }

    .courts-grid .court-card:last-child:nth-child(odd) {
        max-width: 100%;
    }
}

/* ======================================
   FAQ SECTION - Simple Clean Design
   ====================================== */
.faq-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.faq-grid-simple {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.06);
    transition: all 0.3s ease;
}

.faq-box:hover {
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.1);
    border-color: rgba(196, 155, 107, 0.3);
}

.faq-box-question {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    padding: 1.25rem 1.5rem;
    line-height: 1.5;
}

.faq-box-answer {
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
}

.faq-box-answer p {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Features Grid (Location Pages - feature-box card layout) */
.faq-features {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
}

/* Old FAQ styles - kept for backwards compatibility */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(124, 80, 46, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(124, 80, 46, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(124, 80, 46, 0.08);
    border-color: rgba(124, 80, 46, 0.15);
}

/* Responsive FAQ */
@media (max-width: 640px) {
    .faq-box-question,
    .faq-box-answer {
        padding: 1rem 1.25rem;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 1.1rem;
    }
}

/* ======================================
   BLOG SECTION - Recent Legal Articles
   ====================================== */
.blog-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #F5F3EF 50%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.blog-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(196, 155, 107, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(139, 94, 60, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 155, 107, 0.25);
    box-shadow: 0 24px 48px -12px rgba(139, 94, 60, 0.12),
                0 12px 24px -6px rgba(139, 94, 60, 0.06);
}

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

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.15) 0%, 
        rgba(139, 94, 60, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.blog-image--1 {
    background: linear-gradient(135deg, #F5F0E8 0%, #EDE6DA 100%);
}

.blog-image--2 {
    background: linear-gradient(135deg, #F0E8F5 0%, #E6DAED 100%);
}

.blog-image--3 {
    background: linear-gradient(135deg, #E8F0F5 0%, #DAE6ED 100%);
}

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

.blog-icon {
    font-size: 3rem;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-icon {
    opacity: 1;
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    background: var(--accent-gold-dark);
    color: #FFFFFF;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.25);
    z-index: 2;
}

.blog-content {
    padding: clamp(1.5rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: clamp(0.75rem, 1vw, 1rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-content h3 a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--accent-gold-dark);
}

.blog-excerpt {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.blog-link:hover {
    color: var(--text-primary);
    gap: 0.75rem;
}

.blog-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.blog-link:hover .blog-arrow {
    transform: translateX(4px);
}

.blog-footer {
    text-align: center;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    position: relative;
    z-index: 1;
}

/* Responsive Blog Section */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-icon {
        font-size: 2.5rem;
    }
}

/* ======================================
   TESTIMONIALS SECTION
   ====================================== */
.testimonials-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(196, 155, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 94, 60, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2rem, 3.5vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.testimonials-header h2 span {
    color: var(--accent-gold-dark);
}

.testimonials-header p {
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Filter Tabs */
.testimonials-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(8px);
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.filter-tab:hover {
    color: var(--text-primary);
    background: rgba(196, 155, 107, 0.08);
}

.filter-tab.active {
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.filter-tab.active::before {
    opacity: 1;
}

.filter-tab span {
    position: relative;
    z-index: 1;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(139, 94, 60, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.filter-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-gold-dark);
    font-weight: 700;
}

/* Summary Stats */
.testimonials-summary {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 20px 40px -12px rgba(139, 94, 60, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.testimonials-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-light), var(--accent-gold-dark), var(--accent-gold-light), transparent);
    border-radius: 3px;
}

.summary-main {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0.5rem 0;
}

.summary-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.summary-stars {
    color: var(--accent-gold-light);
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin: 0.5rem 0;
}

.summary-total {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    width: 100%;
    max-width: 160px;
    margin-top: 0.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.rating-bar span:first-child {
    color: var(--text-secondary);
    min-width: 24px;
    text-align: right;
}

.rating-progress {
    flex: 1;
    height: 4px;
    background: rgba(139, 94, 60, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-count {
    min-width: 20px;
    text-align: left;
    color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.trust-badge:hover {
    background: var(--bg-card);
    border-color: rgba(196, 155, 107, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.08);
}

.trust-badge-icon {
    font-size: 1rem;
}

/* Testimonials List */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 2vw, 1.75rem);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    background: var(--bg-card);
    border-radius: 24px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border: 1px solid var(--border-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transition: height 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 155, 107, 0.2);
    box-shadow: 0 20px 48px -12px rgba(139, 94, 60, 0.15);
}

.testimonial-item:hover::before {
    height: 4px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--accent-gold-light);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.testimonial-item:hover .testimonial-quote-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tag--family {
    background: rgba(139, 94, 60, 0.08);
    color: var(--accent-gold-dark);
    border: 1px solid rgba(139, 94, 60, 0.15);
}

.tag--property {
    background: rgba(30, 142, 62, 0.08);
    color: #1E8E3E;
    border: 1px solid rgba(30, 142, 62, 0.15);
}

.tag--criminal {
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.tag--overseas {
    background: rgba(147, 51, 234, 0.08);
    color: #9333EA;
    border: 1px solid rgba(147, 51, 234, 0.15);
}

.tag--verified {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.08) 100%);
    color: #16A34A;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag--urgent {
    background: rgba(220, 53, 69, 0.08);
    color: #DC3545;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.tag--featured {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    border: none;
}

.testimonial-text {
    font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-item--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, #FDFBF9 50%, #FAF8F6 100%);
    border: 1px solid rgba(196, 155, 107, 0.25);
    padding: clamp(2rem, 4vw, 2.75rem);
}

.testimonial-item--featured::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 155, 107, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-item--featured .testimonial-text {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    line-height: 1.85;
    padding-right: 2rem;
    max-width: 95%;
}

.testimonial-item--highlight {
    background: linear-gradient(135deg, #FFFBF7 0%, var(--bg-card) 100%);
    border-left: 4px solid var(--accent-gold-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-glass);
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.2) 0%, 
        rgba(139, 94, 60, 0.1) 100%);
    flex-shrink: 0;
    border: 3px solid var(--bg-card);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(139, 94, 60, 0.15);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-location {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.author-rating {
    font-size: 0.875rem;
    color: var(--accent-gold-light);
}

.owner-response {
    margin-top: 1.25rem;
    padding: 1.125rem 1.375rem;
    background: linear-gradient(135deg, #F9F7F5 0%, var(--bg-card) 100%);
    border-radius: 16px;
    border-left: 3px solid var(--accent-gold-light);
    position: relative;
}

.owner-response::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #F9F7F5;
    transform: rotate(45deg);
    border-left: 1px solid rgba(139, 94, 60, 0.08);
    border-top: 1px solid rgba(139, 94, 60, 0.08);
}

.owner-response strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.owner-response p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.testimonials-footer {
    text-align: center;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.trust-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1.5px solid var(--accent-gold-light);
    border-radius: 14px;
    padding: 1rem 2.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(139, 94, 60, 0.25);
}

/* ======================================
   RANDOM REVIEWS (reusable across pages)
   ====================================== */
[data-random-reviews] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: 1.5rem;
}

.random-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.random-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 94, 60, 0.08);
    border-color: rgba(139, 94, 60, 0.15);
}

.random-review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.random-review-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.random-review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.random-review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.random-review-stars {
    color: #F4B400;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.random-review-google {
    flex-shrink: 0;
}

.random-review-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    [data-random-reviews] {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    [data-random-reviews] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta-section {
    padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        #2A221D 0%, 
        #3D3229 25%,
        #4A3F35 50%,
        #3D3229 75%,
        #2A221D 100%);
    background-size: 400% 400%;
    animation: ctaGradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(196, 155, 107, 0.2) 0%, 
        rgba(139, 94, 60, 0.1) 40%,
        transparent 70%);
    pointer-events: none;
    animation: ctaGlowPulse 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(196, 155, 107, 0.15) 0%, 
        transparent 60%);
    pointer-events: none;
    animation: ctaGlowPulse 8s ease-in-out infinite reverse;
}

@keyframes ctaGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(196, 155, 107, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 94, 60, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section .section-container {
    position: relative;
    z-index: 1;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.2) 0%, 
        rgba(139, 94, 60, 0.15) 100%);
    border: 1px solid rgba(196, 155, 107, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(196, 155, 107, 0.15);
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-headline .highlight {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, #E8C9A0 50%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subheadline {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 540px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-benefit-item::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-stat-value {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--accent-gold-light);
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.trust-badge-legal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(196, 155, 107, 0.25);
    border-radius: 24px;
    padding: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(196, 155, 107, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-gold-light), 
        var(--accent-gold-dark),
        var(--accent-gold-light),
        transparent);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(220, 53, 69, 0.5); }
}

.cta-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.cta-card-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, 
        var(--accent-gold-light) 0%, 
        var(--accent-gold-dark) 50%,
        #6B4423 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(139, 94, 60, 0.4),
                0 0 0 1px rgba(196, 155, 107, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 94, 60, 0.5);
    background-position: 100% 100%;
}

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

.phone-icon {
    font-size: 1.25rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(196, 155, 107, 0.6);
    color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-response {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    font-size: 0.875rem;
    color: #7FDB9A;
    margin-bottom: 1.5rem;
}

.cta-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.client-avatars {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.client-avatar:first-child {
    margin-left: 0;
}

.client-avatar:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.client-avatar:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.client-avatar:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.client-avatar:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.client-avatar-more {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%) !important;
    font-size: 0.75rem;
}

.client-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-gold-light);
    font-size: 0.875rem;
}

.cta-clients-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-clients-text strong {
    color: #FFFFFF;
}

.cta-emergency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-emergency-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-emergency-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-emergency-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(196, 155, 107, 0.5);
}

.phone-icon-small {
    animation: phoneRing 2s ease-in-out infinite;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: linear-gradient(180deg, 
        var(--bg-dark) 0%, 
        var(--bg-card) 100%);
    border-top: 1px solid var(--border-glass);
    padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.footer-info {
    max-width: 320px;
}

.footer-info .logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(139, 94, 60, 0.04);
}

.social-links a:hover {
    color: var(--accent-gold-dark);
    border-color: var(--accent-gold-light);
    background: rgba(196, 155, 107, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(139, 94, 60, 0.1);
}

.footer-contact h3,
.footer-links h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.contact-item {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    align-items: flex-start;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--accent-gold-dark);
}

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

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--accent-gold-dark);
    padding-left: 0.25rem;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ======================================
   SERVICE PAGE
   ====================================== */
.service-page-hero {
    padding: clamp(7rem, 12vw, 9rem) 2rem clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    background: linear-gradient(180deg, #F5F3EF 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 155, 107, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.service-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.service-page-hero .hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-page-hero .hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-page-hero .hero-content {
    max-width: 680px;
    margin: 0 auto;
    align-items: center;
}

.service-page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
}

.service-main p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

article.service-main > h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    margin: 3rem 0 1.25rem;
    color: var(--text-primary);
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    position: relative;
}

article.service-main > h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 2.5rem;
}

article.service-main > h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    margin-bottom: 0.75rem;
    border-radius: 2px;
}

/* Services listing page — full-width, no sidebar, centered headings */
.services-listing-page {
    grid-template-columns: 1fr;
}

.services-listing-page .service-main {
    max-width: 100%;
    margin: 0 auto;
}

.services-listing-page article.service-main > h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--accent-gold-light);
    border-top: none;
    padding-top: 0;
    margin: 0 0 1rem;
}

.services-listing-page article.service-main > h2::before {
    margin-left: auto;
    margin-right: auto;
}

.services-listing-page .service-main > p {
    text-align: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.services-listing-page .section-divider {
    border: none;
    border-top: 1px solid var(--border-glass);
    margin: 3.5rem 0 3rem;
}

.services-listing-page .services-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.services-listing-page .services-card-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.services-listing-page .services-card-grid .feature-box {
    height: 100%;
}

.services-listing-page .feature-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-listing-page .feature-box h3 .emoji {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
    border-color: rgba(196, 155, 107, 0.2);
}

.sidebar-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(196, 155, 107, 0.15);
    letter-spacing: 0.01em;
}

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

.sidebar-card li {
    margin-bottom: 0.125rem;
}

.sidebar-card a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border-bottom: none;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-card a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(196, 155, 107, 0.3);
    margin-right: 0.65rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.sidebar-card a:hover {
    color: var(--accent-gold-dark);
    background: rgba(196, 155, 107, 0.06);
    padding-left: 0.75rem;
}

.sidebar-card a:hover::before {
    background: var(--accent-gold-dark);
    transform: scale(1.4);
}

.sidebar-card a.active {
    color: var(--accent-gold-dark);
    background: rgba(196, 155, 107, 0.1);
    font-weight: 600;
    padding-left: 0.75rem;
}

.sidebar-card a.active::before {
    width: 6px;
    height: 6px;
    background: var(--accent-gold-dark);
    box-shadow: 0 0 0 3px rgba(196, 155, 107, 0.2);
}

/* ======================================
   SERVICE PAGE - FEATURE CARDS & ENHANCEMENTS
   ====================================== */

/* Override .service-features when used as a card grid inside service pages */
.service-main .service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin: 1.5rem 0 2rem;
    list-style: none;
    padding: 0;
}

/* Feature box card */
.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02),
                0 0 0 1px rgba(139, 94, 60, 0.02);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 16px 32px -8px rgba(139, 94, 60, 0.1),
                0 6px 12px -4px rgba(139, 94, 60, 0.05);
}

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

.feature-box h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.feature-box p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Service page tables */
.service-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 94, 60, 0.04);
}

.service-main thead tr {
    border-bottom: 2px solid rgba(196, 155, 107, 0.2);
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
}

.service-main th {
    padding: 14px 12px;
    color: var(--accent-gold-dark);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    letter-spacing: 0.02em;
}

.service-main td {
    padding: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-main tbody tr {
    border-bottom: 1px solid var(--border-glass);
    transition: background 0.2s ease;
}

.service-main tbody tr:last-child {
    border-bottom: none;
}

.service-main tbody tr:hover {
    background: rgba(196, 155, 107, 0.04);
}

.service-main td a {
    color: var(--accent-gold-dark);
    font-weight: 500;
}

.service-main td a:hover {
    text-decoration: underline;
}

/* Service page lists */
.service-main > ol,
.service-main > ul {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
}

.service-main > ol li strong,
.service-main > ul li strong {
    color: var(--text-primary);
}

.service-main > ul {
    list-style: none;
    padding-left: 0;
}

.service-main > ul li {
    padding-left: 1.5rem;
    position: relative;
}

.service-main > ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0.15em;
    color: var(--accent-gold-dark);
    font-weight: 700;
    font-size: 0.85em;
}

.service-main > ol {
    list-style: none;
    counter-reset: service-step;
    padding-left: 0;
}

.service-main > ol li {
    counter-increment: service-step;
    padding-left: 2.25rem;
    position: relative;
}

.service-main > ol li::before {
    content: counter(service-step) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent-gold-dark);
    font-size: 1rem;
    min-width: 1.75rem;
}

/* Bottom CTA block */
article.service-main > div.reveal {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.06);
}

article.service-main > div.reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
}

article.service-main > div.reveal h2 {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-top: none;
    padding-top: 0;
}

article.service-main > div.reveal h2::before {
    display: none;
}

article.service-main > div.reveal > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.7;
}

article.service-main > div.reveal > div {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced sidebar CTA */
.sidebar-card.sidebar-cta {
    background: linear-gradient(165deg, #2D2420 0%, #1A1612 100%);
    border-color: rgba(196, 155, 107, 0.3);
    position: relative;
    overflow: hidden;
    padding: 2rem 1.75rem;
}

.sidebar-card.sidebar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
}

.sidebar-card.sidebar-cta::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 155, 107, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.sidebar-card.sidebar-cta:hover {
    border-color: rgba(196, 155, 107, 0.5);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.15);
}

.sidebar-card.sidebar-cta h3 {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
}

.sidebar-card.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.sidebar-card.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Remove the gold dot bullet from CTA buttons */
.sidebar-card.sidebar-cta .btn::before {
    display: none;
}

.sidebar-card.sidebar-cta .btn:last-child {
    margin-bottom: 0;
}

.sidebar-card.sidebar-cta .btn-outline {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold-dark));
    border-color: transparent;
    font-weight: 600;
}

.sidebar-card.sidebar-cta .btn-outline:hover {
    background: linear-gradient(135deg, var(--accent-gold-dark), #5A3A1E);
    box-shadow: 0 4px 16px rgba(196, 155, 107, 0.4);
    color: #FFFFFF;
}

.sidebar-card.sidebar-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.sidebar-card.sidebar-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.sidebar-card.sidebar-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* ======================================
   REVIEWS PAGE - Google Widget Style
   ====================================== */
.reviews-page {
    grid-template-columns: 1fr;
}

.reviews-page .service-main {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.reviews-hero-kicker {
    display: block;
    color: var(--accent-gold-dark);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Header Bar */
.reviews-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
}

.reviews-rating-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--bg-card);
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reviews-google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.reviews-rating-score {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.reviews-rating-stars {
    color: var(--accent-gold-light);
    font-size: 1.125rem;
    letter-spacing: 0.05rem;
}

.reviews-rating-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.reviews-filters {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0;
}

.reviews-filters::-webkit-scrollbar {
    display: none;
}

.reviews-filter-pill {
    flex-shrink: 0;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-sans);
}

.reviews-filter-pill:hover {
    color: var(--accent-gold-dark);
    border-color: rgba(196, 155, 107, 0.3);
    background: rgba(196, 155, 107, 0.06);
}

.reviews-filter-pill.active {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light));
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(139, 94, 60, 0.2);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

/* Google Review Card */
.g-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.g-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
    border-color: rgba(196, 155, 107, 0.2);
}

.g-review-card.hidden {
    display: none;
}

/* Card Header */
.g-review-header {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.g-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.g-review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.g-review-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.g-review-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.g-review-stars {
    color: var(--accent-gold-light);
    font-size: 0.8125rem;
    letter-spacing: 0.05rem;
}

.g-review-stars.stars-4::after {
    content: '☆';
    opacity: 0.3;
}

.g-review-stars.stars-3::after {
    content: '☆☆';
    opacity: 0.3;
}

.g-review-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.g-review-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.4;
    margin-left: auto;
}

/* Card Body */
.g-review-body {
    position: relative;
}

.g-review-text {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Expanded state — controlled by .expanded on the CARD */
.g-review-card.expanded .g-review-text {
    -webkit-line-clamp: unset;
    display: block;
}

.g-review-readmore {
    background: none;
    border: none;
    color: var(--accent-gold-dark);
    font-weight: 500;
    font-size: 0.8125rem;
    cursor: pointer;
    padding: 0.375rem 0 0;
    font-family: var(--font-sans);
    transition: color 0.2s ease;
    display: none;
}

.g-review-readmore.visible {
    display: inline-block;
}

.g-review-readmore:hover {
    color: var(--accent-gold-light);
}

/* Owner Reply — hidden by default, revealed under "Read more" */
.g-review-reply {
    display: none;
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(196, 155, 107, 0.04);
    border-left: 3px solid var(--accent-gold-light);
    border-radius: 0 8px 8px 0;
}

.g-review-card.expanded .g-review-reply {
    display: block;
}

.g-review-reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
    gap: 0.5rem;
}

.g-review-reply-header strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.g-review-reply-date {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.g-review-reply-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Load More */
.reviews-load-more {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews-counter {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.reviews-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--accent-gold-dark);
    background: transparent;
    border: 1px solid rgba(196, 155, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.reviews-load-btn:hover {
    background: rgba(196, 155, 107, 0.06);
    border-color: var(--accent-gold-dark);
    transform: translateY(-1px);
}

/* CTA & Disclaimer */
.reviews-cta-block {
    margin-top: 3.5rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #2A221D 0%, #3D3229 50%, #4A3F35 100%);
    border: 1px solid rgba(196, 155, 107, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-cta-block::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 155, 107, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-cta-block::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 155, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(196, 155, 107, 0.15);
    border: 1px solid rgba(196, 155, 107, 0.35);
    border-radius: 50px;
    color: var(--accent-gold-light);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.reviews-cta-block h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.reviews-cta-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.reviews-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.reviews-cta-buttons .btn {
    gap: 0.5rem;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-whatsapp-cta:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.reviews-cta-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.reviews-cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.reviews-cta-trust span::before {
    content: '✓';
    color: var(--accent-gold-light);
    font-weight: 700;
}

.reviews-disclaimer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    line-height: 1.6;
}

/* ---- REVIEWS PAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-page .service-main {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .reviews-header-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-filters {
        width: 100%;
        padding: 0.25rem 0.125rem;
    }

    .service-page-content.reviews-page {
        padding: 0 1.5rem 3rem;
    }

    .reviews-hero-kicker {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .reviews-rating-score {
        font-size: 1.5rem;
    }

    .reviews-cta-block {
        padding: 2.5rem 1.5rem;
    }

    .reviews-cta-trust {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-page-content.reviews-page {
        padding: 0 1.25rem 2.5rem;
    }

    .g-review-card {
        padding: 1rem;
    }

    .g-review-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }

    .g-review-name {
        font-size: 0.875rem;
    }

    .g-review-text {
        font-size: 0.875rem;
    }

    .reviews-cta-block {
        padding: 2rem 1.25rem;
    }

    .reviews-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .reviews-cta-buttons .btn,
    .reviews-cta-buttons .btn-whatsapp-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .reviews-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .reviews-rating-badge {
        padding: 0.5rem 1rem;
    }

    .reviews-rating-score {
        font-size: 1.375rem;
    }

    .reviews-rating-stars {
        font-size: 1rem;
    }

    .reviews-rating-count {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .service-page-content.reviews-page {
        padding: 0 0.875rem 2rem;
    }

    .reviews-filter-pill {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .g-review-card {
        border-radius: 10px;
        padding: 0.875rem;
    }

    .g-review-header {
        gap: 0.625rem;
        margin-bottom: 0.625rem;
    }

    .g-review-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .g-review-text {
        font-size: 0.8125rem;
        line-height: 1.65;
    }

    .g-review-readmore {
        font-size: 0.75rem;
    }

    .g-review-reply {
        padding: 0.75rem;
    }

    .g-review-reply-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.125rem;
    }

    .g-review-reply-header strong {
        font-size: 0.75rem;
    }

    .g-review-reply-text {
        font-size: 0.75rem;
    }

    .reviews-rating-badge {
        gap: 0.375rem;
        padding: 0.4375rem 0.75rem;
        border-radius: 10px;
    }

    .reviews-rating-score {
        font-size: 1.25rem;
    }

    .reviews-rating-stars {
        font-size: 0.875rem;
    }

    .reviews-hero-kicker {
        font-size: 0.6875rem;
        letter-spacing: 1.25px;
    }

    .reviews-cta-block {
        padding: 1.75rem 1rem;
    }

    .reviews-cta-badge {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .reviews-cta-block h2 {
        font-size: 1.25rem;
    }

    .reviews-cta-block p {
        font-size: 0.8125rem;
    }

    .reviews-cta-trust span {
        font-size: 0.75rem;
    }

    .reviews-load-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .reviews-counter {
        font-size: 0.8125rem;
    }

    .reviews-disclaimer {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .reviews-rating-badge {
        flex-wrap: wrap;
        justify-content: center;
    }

    .reviews-header-bar {
        gap: 0.75rem;
    }

    .g-review-card {
        padding: 0.75rem;
    }

    .reviews-cta-buttons .btn,
    .reviews-cta-buttons .btn-whatsapp-cta {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

/* ======================================
   FAQ PAGE - Dedicated /faq/ Page
   ====================================== */
.faq-page {
    grid-template-columns: 1fr;
}

.faq-page .service-main {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.faq-page article.service-main > h2 {
    text-align: center;
    border-top: none;
    padding-top: 0;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin: 0 0 1.5rem;
    scroll-margin-top: 140px;
}

.faq-page article.service-main > h2:first-of-type {
    margin-top: 0;
}

.faq-page article.service-main > h2::before {
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Hero Overrides */
.faq-hero-kicker {
    color: var(--accent-gold-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.faq-page .hero-subtitle {
    margin: 0 auto;
    max-width: 800px;
}

.faq-hero-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* FAQ Grid - wider on dedicated page */
.faq-page .faq-grid-simple {
    max-width: 100%;
}

/* FAQ Box h3 (dedicated page uses semantic h3) */
.faq-box h3.faq-box-question {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    padding: 1.25rem 1.5rem;
    line-height: 1.5;
    margin: 0;
}

/* Sticky Category Pill Navigation */
.faq-category-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: sticky;
    top: 60px;
    z-index: 90;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-glass);
}

.faq-nav-container {
    display: flex;
    gap: 0.625rem;
    padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.faq-nav-container::-webkit-scrollbar {
    display: none;
}

.faq-nav-pill {
    flex-shrink: 0;
    padding: 0.5rem 1.125rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.faq-nav-pill:hover {
    color: var(--accent-gold-dark);
    border-color: rgba(196, 155, 107, 0.3);
    background: rgba(196, 155, 107, 0.06);
}

.faq-nav-pill.active {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light));
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(139, 94, 60, 0.2);
}

/* FAQ Answer Links */
.faq-box-answer a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(139, 94, 60, 0.2);
    transition: border-color 0.3s ease;
}

.faq-box-answer a:hover {
    border-color: var(--accent-gold-dark);
}

.faq-related {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Section Divider */
.faq-section-divider {
    border: none;
    border-top: 1px solid var(--border-glass);
    margin: 3rem 0 0;
}

/* CTA Block */
.faq-cta-block {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.9), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(196, 155, 107, 0.4);
    border-radius: var(--radius-lg);
    text-align: center;
}

.faq-cta-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-cta-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Disclaimer */
.faq-disclaimer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    line-height: 1.6;
}

/* ---- FAQ PAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
    .faq-page .service-main {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-category-nav {
        padding: 0 1rem;
        top: 56px;
    }

    .faq-nav-container {
        padding: 0.75rem 0;
        gap: 0.5rem;
    }

    .faq-nav-pill {
        padding: 0.4rem 0.875rem;
        font-size: 0.8125rem;
    }

    .faq-page article.service-main > h2 {
        scroll-margin-top: 120px;
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }

    .service-page-content.faq-page {
        padding: 0 1.5rem 3rem;
    }

    .faq-section-divider {
        margin: 2rem 0 0;
    }

    .faq-cta-block {
        padding: 2rem 1.5rem;
    }

    .faq-cta-block h2 {
        font-size: 1.3rem;
    }

    .faq-hero-kicker {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 640px) {
    .service-page-content.faq-page {
        padding: 0 1.25rem 2.5rem;
    }

    .faq-box h3.faq-box-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-box-answer {
        padding: 1rem 1.25rem;
    }

    .faq-related {
        font-size: 0.8rem;
    }

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

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

    .faq-box {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .service-page-content.faq-page {
        padding: 0 1rem 2rem;
    }

    .faq-category-nav {
        padding: 0 0.75rem;
    }

    .faq-nav-container {
        gap: 0.375rem;
        padding: 0.625rem 0;
    }

    .faq-nav-pill {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .faq-page article.service-main > h2 {
        scroll-margin-top: 110px;
        font-size: 1.2rem;
    }

    .faq-box h3.faq-box-question {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .faq-box-answer {
        padding: 0.875rem 1rem;
    }

    .faq-box-answer p {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .faq-cta-block {
        padding: 1.5rem 1.25rem;
        margin-top: 2rem;
    }

    .faq-cta-block h2 {
        font-size: 1.15rem;
    }

    .faq-cta-block p {
        font-size: 0.875rem;
    }

    .faq-disclaimer {
        font-size: 0.75rem;
        padding-top: 1rem;
        margin-top: 1.5rem;
    }

    .faq-grid-simple {
        gap: 1rem;
    }

    .faq-section-divider {
        margin: 1.5rem 0 0;
    }

    .faq-box {
        border-radius: 10px;
    }
}

/* ======================================
   ABOUT PAGE
   ====================================== */
.about-page {
    grid-template-columns: 1fr;
}

.about-page .service-main {
    max-width: 100%;
    margin: 0 auto;
}

/* Remove default h2 border/accent bars — about page uses its own section styling */
.about-page article.service-main > h2 {
    text-align: center;
    border-top: none;
    padding-top: 0;
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin: 0 0 1.25rem;
}

.about-page article.service-main > h2::before {
    margin-left: auto;
    margin-right: auto;
}

.about-page article.service-main > h2:first-of-type {
    margin-top: 0;
}

/* Profile hero card */
.about-profile-card {
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.6), rgba(15, 15, 18, 0.8));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
}

.about-profile-card .profile-name {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.about-profile-card .profile-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-profile-card .profile-bio {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Credentials grid inside profile card */
.about-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-credential {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    text-align: left;
}

.about-credential h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-credential ul {
    color: var(--text-secondary);
    padding-left: 1.2rem;
    margin: 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Stats row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
}

.about-stat .stat-number {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold-light);
    margin-bottom: 0.25rem;
}

.about-stat .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* Section divider for about page */
.about-divider {
    border: none;
    border-top: 1px solid var(--border-glass);
    margin: 3rem 0;
}

/* Section subtitle */
.about-section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
}

/* Philosophy / values cards grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.about-values-grid .feature-box h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-values-grid .feature-box h3 .emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-values-grid .feature-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Advocate tier cards */
.about-tier-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.about-tier {
    padding: 1.75rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.about-tier h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about-tier p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.about-tier--highlighted {
    border-left-color: var(--accent-gold);
    background: rgba(248, 181, 0, 0.05);
}

.about-tier--highlighted h3 {
    color: var(--accent-gold-light);
}

/* Practice areas grid */
.about-practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.about-practice-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-practice-item:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 155, 107, 0.3);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.08);
    color: var(--accent-gold-light);
}

.about-practice-item .emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* About page CTA */
.about-cta {
    margin-top: 3rem;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.9), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(196, 155, 107, 0.4);
    border-radius: var(--radius-lg);
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    margin-bottom: 1rem !important;
    color: var(--text-primary);
}

.about-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive: about page */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

    .about-tier {
        padding: 1.25rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

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

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

/* ======================================
   CONTACT PAGE (REBUILT)
   ====================================== */
.contact-page {
    grid-template-columns: 1fr;
}

.contact-page .service-main {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.contact-hero-kicker {
    color: var(--accent-gold-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
    display: block;
}

.contact-hero-sub-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Credentials Stats Row */
.cred-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cred-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cred-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
}

.cred-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
}

.cred-val {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--accent-gold-light);
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.cred-star {
    font-size: 0.75em;
    vertical-align: middle;
    margin-left: 0.1em;
}

.cred-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cred-link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-gold-dark);
    text-decoration: none;
    margin-top: 0.5rem;
    font-weight: 500;
}

.cred-link:hover {
    text-decoration: underline;
}

/* Contact Channels Section */
.contact-channels {
    margin-bottom: 3rem;
}

.contact-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.contact-section-desc {
    color: var(--text-secondary);
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    line-height: 1.7;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* 4-column contact cards */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.contact-channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.contact-channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.08);
}

.contact-channel-card:hover::before {
    opacity: 1;
}

.contact-channel-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.12) 0%, rgba(139, 94, 60, 0.06) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: var(--accent-gold-dark);
}

.contact-channel-card:hover .contact-channel-icon {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    transform: scale(1.08);
}

.contact-channel-card strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.contact-channel-value {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-channel-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* WhatsApp variant */
.contact-channel-card--whatsapp .contact-channel-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.06) 100%);
    color: #25D366;
}

.contact-channel-card--whatsapp:hover .contact-channel-icon {
    background: #25D366;
    color: #FFFFFF;
}

.contact-channel-card--whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.1);
}

/* Full-width Map */
.contact-map-full {
    margin-bottom: 3rem;
}

.contact-map-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    border: 1px solid var(--border-glass);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.contact-map-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Hours + Credentials Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-hours-table {
    width: 100%;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-hours-table td {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-glass);
}

.contact-hours-table td:last-child {
    text-align: right;
    font-weight: 500;
}

.contact-hours-table tr:last-child td {
    border-bottom: none;
}

.contact-hours-closed td {
    color: var(--accent-gold-dark);
    font-weight: 500;
}

.contact-credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-credentials-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-credentials-list li:last-child {
    border-bottom: none;
}

.contact-credentials-list li strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.contact-credentials-list li span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.contact-languages {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-languages strong {
    color: var(--text-primary);
}

/* Consultation Preparation */
.contact-preparation {
    margin-bottom: 4rem;
}

.contact-preparation h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.contact-section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
}

.contact-prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Contact CTA */
.contact-cta {
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(145deg, rgba(61, 50, 41, 0.06), rgba(139, 94, 60, 0.04));
    border: 1px solid rgba(196, 155, 107, 0.25);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-cta h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Disclaimer */
.contact-disclaimer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .cred-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

    .contact-prep-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper iframe {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .cred-row {
        gap: 0.75rem;
    }

    .cred-box {
        padding: 1.25rem 0.75rem;
    }

    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-map-wrapper iframe {
        height: 260px;
    }
}

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

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ======================================
   MEDIA QUERIES
   ====================================== */

/* Large Desktop */
@media (min-width: 1344px) {
    section,
    .hero,
    .service-page-hero,
    .service-page-content,
    .footer-grid,
    .footer-bottom {
        padding-left: calc(50% - 640px) !important;
        padding-right: calc(50% - 640px) !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .top-bar-left .top-badge:last-child,
    .top-bar-left .top-sep:last-of-type {
        display: none;
    }

    .top-bar-content {
        padding: 0 1.5rem;
    }

    .dropdown-panel {
        grid-template-columns: repeat(2, auto);
        width: max-content;
        padding: 1rem;
        gap: 0.5rem 1.25rem;
    }

    .dropdown-panel-simple {
        grid-template-columns: 1fr !important;
        width: auto !important;
        min-width: 180px;
        padding: 0.75rem 0 !important;
        gap: 0 !important;
    }

    .dropdown-col a {
        padding: 4px 8px;
        font-size: 0.82rem;
    }

    .service-main table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-description {
        max-width: 60ch;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-box {
        flex: 1 1 calc(33.333% - 1rem);
        min-width: 140px;
        max-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-steps,
    .property-steps,
    .bail-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .doc-nadra-banner {
        flex-direction: column;
        text-align: center;
    }

    .doc-nadra-chips {
        justify-content: center;
    }

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

    .bail-emergency-banner {
        flex-direction: column;
        text-align: center;
    }

    .bail-emergency-actions {
        justify-content: center;
    }

    .price-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .detail-grid,
    .detail-grid--reverse {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    
    .detail-grid--reverse .detail-content,
    .detail-grid--reverse .detail-highlight {
        order: unset;
    }
    
    .detail-content {
        max-width: 100%;
    }
    
    .highlight-box {
        position: static;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    
    .location-content {
        text-align: center;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
    
    .faq-categories {
        gap: 0.5rem;
    }
    
    .faq-category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .testimonials-list {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .testimonial-item--featured {
        grid-column: span 1;
    }
    
    .testimonial-item--featured .testimonial-text {
        padding-right: 0;
        max-width: 100%;
    }
    
    .testimonials-filter {
        gap: 0.375rem;
        padding: 0.375rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .testimonials-summary {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 700px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-benefits {
        align-items: center;
    }
    
    .cta-trust-bar {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact,
    .footer-links {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }

    /* Location pages - tablet */
    .benefits-grid,
    .issues-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .courts-content-grid {
        grid-template-columns: 1fr;
    }

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

    /* About page - tablet */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Contact page - tablet */
    .cred-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

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

@media (max-width: 880px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    .top-bar {
        display: none;
    }
    
    body.scrolled-down .navbar {
        transform: translateY(0);
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .nav-container {
        padding: 0.6rem 1.5rem;
    }
    
    /* Hide desktop dropdown on mobile */
    .dropdown-panel {
        display: none !important;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        display: none;
    }

    .nav-buttons .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .home-hero {
        padding: 8rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.9375rem 1.5rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .stat-box {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 120px;
        padding: 1.25rem 1rem;
    }
    
    .hero-areas {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 2rem;
    }
    
    .hero-areas-label {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-areas a {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }
    
    .services-section,
    .why-us-section,
    .process-section,
    .location-section,
    .detail-section,
    .faq-section,
    .testimonials-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .emergency-banner {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-section::before,
    .cta-section::after {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    .testimonial-item--featured::after {
        display: none;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 1.25rem;
    }
    
    .why-us-card {
        padding: 1.75rem;
    }
    
    .process-steps,
    .property-steps {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .doc-nadra-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .doc-nadra-chips {
        justify-content: center;
    }

    .bail-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .bail-reasons-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto clamp(2rem, 3vw, 2.5rem);
    }

    .bail-types-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .bail-emergency-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .bail-emergency-actions {
        flex-direction: column;
        width: 100%;
    }

    .bail-emergency-actions a {
        justify-content: center;
    }

    .verification-banner {
        flex-direction: column;
        text-align: center;
    }

    .verification-checks {
        justify-content: center;
    }

    .location-map {
        min-height: 350px;
    }
    
    .location-map iframe {
        min-height: 350px;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .faq-question {
        padding: 1rem 1.125rem;
        gap: 0.75rem;
    }
    
    .faq-question-content {
        gap: 0.625rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    
    .faq-answer-content {
        padding: 0 1.125rem 1.125rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.75;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .testimonials-header {
        max-width: 90%;
    }
    
    .testimonials-filter {
        gap: 0.25rem;
        padding: 0.25rem;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .testimonials-filter::-webkit-scrollbar {
        display: none;
    }
    
    .filter-tab {
        flex-shrink: 0;
        padding: 0.5rem 0.875rem;
    }
    
    .trust-badges {
        gap: 0.5rem;
    }
    
    .trust-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .testimonials-summary {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .summary-number {
        font-size: 1.75rem;
    }
    
    .rating-breakdown {
        display: none;
    }
    
    .testimonial-item {
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .testimonial-quote-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    
    .testimonial-badges {
        padding-right: 3rem;
    }
    
    .testimonial-item--featured {
        padding: 1.5rem;
    }
    
    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.875rem;
    }
    
    .owner-response {
        padding: 1rem 1.125rem;
    }
    
    .load-more-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-section {
        padding: 3rem 1.25rem;
    }
    
    .cta-container {
        gap: 2rem;
    }
    
    .cta-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1rem 1.25rem;
    }
    
    .cta-trust-bar {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.25rem;
    }
    
    .trust-divider {
        width: 60px;
        height: 1px;
    }
    
    .trust-badge-legal {
        width: 100%;
        justify-content: center;
    }
    
    .cta-emergency {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact h3,
    .footer-links h3 {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-top: 0;
    }
    
    .service-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-sidebar {
        position: static;
    }

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

    .service-page-hero {
        padding: 6rem 1.5rem 2rem;
    }

    .service-page-hero::before {
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }

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

    .feature-box {
        padding: 1.25rem;
    }

    .service-main table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    article.service-main > h2 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem;
        padding-top: 1.5rem;
    }

    article.service-main > div.reveal {
        padding: 2rem 1.5rem;
    }

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

/* Small Mobile */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-footer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .service-tag {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .feature-box {
        padding: 1.125rem;
        border-radius: 16px;
    }

    /* Location page grids - single column on mobile */
    .benefits-grid,
    .issues-grid,
    .courts-content-grid,
    .location-services-grid,
    .faq-features {
        grid-template-columns: 1fr !important;
    }

    /* Location hero */
    .location-hero-content {
        padding: 0 1rem;
    }

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

    .location-hero-cta .btn {
        text-align: center;
    }

    /* Location cards compact */
    .benefit-card,
    .issue-card {
        padding: 1.25rem;
    }

    .benefit-icon,
    .issue-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .service-main th,
    .service-main td {
        padding: 8px 6px;
        font-size: 0.85rem;
    }

    article.service-main > div.reveal {
        padding: 1.5rem 1.25rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    
    .stat-box {
        flex: 1 1 100%;
        max-width: none;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 1rem 1.25rem;
    }
    
    .stat-num {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    
    .stat-label {
        text-align: right;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .service-icon {
        font-size: 1.375rem;
    }

    .bail-stats-row {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto clamp(2rem, 3vw, 2.5rem);
    }
}

@media (max-width: 400px) {
    .testimonial-author {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .author-rating {
        width: 100%;
        margin-top: 0.25rem;
    }
    
    .testimonial-badges {
        gap: 0.375rem;
    }
    
    .tag {
        padding: 0.25rem 0.625rem;
        font-size: 0.625rem;
    }
}


/* ======================================
   TESTIMONIALS SECTION - NEW 2-COLUMN LAYOUT
   ====================================== */

/* Testimonials Grid Variation */
.detail-grid--testimonials {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

/* Left Column: Vertical Testimonials List */
.testimonials-list-vertical {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw, 1.5rem);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    transition: height 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 155, 107, 0.2);
    box-shadow: 0 16px 40px -10px rgba(139, 94, 60, 0.12);
}

.testimonial-card:hover::before {
    height: 3px;
}

/* Featured Testimonial Card */
.testimonial-card--featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, #FDFBF9 50%, #FAF8F6 100%);
    border: 1px solid rgba(196, 155, 107, 0.25);
    position: relative;
}

.testimonial-card--featured::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--accent-gold-light);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

/* Card Header */
.testimonial-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.testimonial-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.badge--featured {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
}

.badge--family {
    background: rgba(139, 94, 60, 0.08);
    color: var(--accent-gold-dark);
    border: 1px solid rgba(139, 94, 60, 0.15);
}

.badge--property {
    background: rgba(30, 142, 62, 0.08);
    color: #1E8E3E;
    border: 1px solid rgba(30, 142, 62, 0.15);
}

.badge--criminal {
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.badge--overseas {
    background: rgba(147, 51, 234, 0.08);
    color: #9333EA;
    border: 1px solid rgba(147, 51, 234, 0.15);
}

.badge--verified {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.08) 100%);
    color: #16A34A;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Star Rating in Card Header */
.testimonial-card__stars {
    color: var(--accent-gold-light);
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    flex-shrink: 0;
}

/* Testimonial Text */
.testimonial-card__text {
    font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    position: relative;
}

.testimonial-card--featured .testimonial-card__text {
    font-size: clamp(0.9375rem, 1.2vw, 1rem);
    line-height: 1.85;
}

/* Testimonial Author */
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.2) 0%, 
        rgba(139, 94, 60, 0.1) 100%);
    flex-shrink: 0;
    border: 3px solid var(--bg-card);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(139, 94, 60, 0.15);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* ======================================
   RIGHT COLUMN: RATING SUMMARY & STATS
   ====================================== */

/* Rating Summary Card */
.rating-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04),
                0 2px 4px -2px rgba(139, 94, 60, 0.02);
    position: relative;
}

.rating-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-light), var(--accent-gold-dark), var(--accent-gold-light), transparent);
    border-radius: 3px;
}

.rating-summary__main {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1.25rem;
}

.rating-summary__number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-summary__stars {
    color: var(--accent-gold-light);
    font-size: 1.125rem;
    letter-spacing: 0.1rem;
    margin: 0.5rem 0;
}

.rating-summary__total {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

/* Rating Breakdown */
.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
}

.rating-bar__label {
    color: var(--text-secondary);
    min-width: 28px;
    text-align: right;
    font-weight: 600;
}

.rating-bar__progress {
    flex: 1;
    height: 6px;
    background: rgba(139, 94, 60, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-bar__count {
    min-width: 24px;
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* ======================================
   TRUST BADGES VERTICAL
   ====================================== */

.trust-badges-vertical {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04);
}

.trust-badges__title {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

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

.trust-badge-item:first-child {
    padding-top: 0;
}

.trust-badge-item:hover {
    transform: translateX(4px);
}

.trust-badge-item__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.12) 0%, 
        rgba(139, 94, 60, 0.06) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-badge-item:hover .trust-badge-item__icon {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    transform: scale(1.05);
}

.trust-badge-item__text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trust-badge-item__text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-badge-item__text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ======================================
   TESTIMONIALS STATS
   ====================================== */

.testimonials-stats {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04);
}

.testimonials-stats__title {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stats-row:last-child {
    margin-bottom: 0;
}

.stats-mini-card {
    background: linear-gradient(135deg, 
        rgba(196, 155, 107, 0.08) 0%, 
        rgba(139, 94, 60, 0.04) 100%);
    border: 1px solid rgba(139, 94, 60, 0.1);
    border-radius: 14px;
    padding: clamp(0.875rem, 1.5vw, 1rem);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 94, 60, 0.15);
    box-shadow: 0 8px 20px rgba(139, 94, 60, 0.08);
}

.stats-mini-card__num {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: var(--accent-gold-dark);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stats-mini-card__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Testimonials CTA Button */
.testimonials-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ======================================
   RESPONSIVE STYLES FOR NEW TESTIMONIALS
   ====================================== */

@media (max-width: 1024px) {
    .detail-grid--testimonials {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    
    .testimonials-list-vertical {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .detail-highlight {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .rating-summary-card {
        margin-bottom: 0;
    }
    
    .trust-badges-vertical {
        margin-bottom: 0;
    }
    
    .testimonials-stats {
        margin-bottom: 0;
    }
    
    .testimonials-cta {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .detail-highlight {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .rating-summary-card,
    .trust-badges-vertical,
    .testimonials-stats {
        margin-bottom: 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-card--featured::after {
        font-size: 3rem;
        top: 0.75rem;
        right: 1rem;
    }
    
    .testimonial-card__header {
        flex-direction: column;
        gap: 0.625rem;
    }
    
    .testimonial-card__stars {
        order: -1;
    }
    
    .stats-row {
        gap: 0.625rem;
    }
    
    .stats-mini-card {
        padding: 0.875rem 0.5rem;
    }
    
    .stats-mini-card__num {
        font-size: 1.125rem;
    }
    
    .stats-mini-card__label {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.125rem;
        border-radius: 16px;
    }
    
    .testimonial-card__author {
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 0.875rem;
    }
    
    .author-name {
        font-size: 0.875rem;
    }
    
    .author-location {
        font-size: 0.75rem;
    }
    
    .badge {
        padding: 0.25rem 0.625rem;
        font-size: 0.625rem;
    }
    
    .rating-summary__number {
        font-size: 2.25rem;
    }
    
    .trust-badge-item__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .trust-badge-item__text strong {
        font-size: 0.8125rem;
    }
    
    .trust-badge-item__text span {
        font-size: 0.6875rem;
    }
}


/* ======================================
   BLOG PAGE STYLES
   ====================================== */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: 10rem 2rem 4rem;
    background: linear-gradient(180deg, #FAFAF8 0%, #F5F3EF 100%);
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 90% 10%, rgba(196, 155, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}


.blog-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.blog-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #F5F3EF 100%);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: start;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

/* Blog Archive Card (scoped to .blog-grid to avoid homepage conflicts) */
.blog-grid .blog-card {
    border-top: 3px solid var(--accent-gold-dark);
    border-radius: 16px;
}

.blog-grid .blog-card::before {
    display: none;
}

.blog-grid .blog-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--accent-gold-light);
}

.blog-grid .blog-category {
    position: static;
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
}

.blog-card-content {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--accent-gold-dark);
}

.blog-card-content p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-grid .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-grid .blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.blog-grid .blog-author .author-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.blog-grid .blog-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.blog-grid .blog-details svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 0.2rem;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2;
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-numbers a,
.pagination-numbers span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-numbers a {
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    text-decoration: none;
}

.pagination-numbers a:hover {
    background: var(--accent-gold-dark);
    color: #FFFFFF;
    border-color: var(--accent-gold-dark);
}

.pagination-numbers span.current {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    color: #FFFFFF;
    font-weight: 600;
}

.pagination-numbers span:not(.current) {
    color: var(--text-secondary);
}

.blog-pagination .btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.04);
}

.widget-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-glass);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-dark));
}

/* Search Form */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1rem;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    font-size: 0.9375rem;
    background: var(--bg-dark);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-gold-light);
    box-shadow: 0 0 0 3px rgba(196, 155, 107, 0.1);
}

.search-form button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-gold-dark);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.search-form button:hover {
    color: var(--text-primary);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-list li a:hover {
    background: var(--bg-card);
    color: var(--accent-gold-dark);
    border-color: var(--border-glass);
    transform: translateX(4px);
}

.category-list .count {
    background: rgba(196, 155, 107, 0.15);
    color: var(--accent-gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recent-post:hover {
    background: var(--bg-dark);
}

.recent-post-thumb {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.15) 0%, rgba(139, 94, 60, 0.08) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.recent-post-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post:hover .recent-post-title {
    color: var(--accent-gold-dark);
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--accent-gold-dark);
    color: #FFFFFF;
    border-color: var(--accent-gold-dark);
    transform: translateY(-2px);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    color: #FFFFFF;
    text-align: center;
}

.sidebar-cta .widget-title {
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta .widget-title::after {
    background: #FFFFFF;
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sidebar-cta h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.sidebar-cta .btn {
    width: 100%;
    background: #FFFFFF;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.sidebar-cta .btn:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Newsletter Section */
.blog-newsletter {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
    background: linear-gradient(180deg, #F5F3EF 0%, var(--bg-dark) 100%);
}

.newsletter-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px -10px rgba(139, 94, 60, 0.1);
}

.newsletter-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.newsletter-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    font-size: 0.9375rem;
    background: var(--bg-dark);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold-light);
    box-shadow: 0 0 0 3px rgba(196, 155, 107, 0.1);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* ======================================
   BLOG PAGE RESPONSIVE STYLES
   ====================================== */

@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sidebar-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 8rem 1.5rem 3rem;
    }

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

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

    .blog-pagination {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

/* ======================================
   BLOG SINGLE POST STYLES
   ====================================== */

/* Post Article Layout */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(7rem, 12vw, 9rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-header .blog-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
    border-top: none;
}

.blog-header .blog-category {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(139, 94, 60, 0.2);
}

.blog-header .blog-date,
.blog-header .blog-read-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-header .blog-date::before,
.blog-header .blog-read-time::before {
    content: none;
}

.blog-header .blog-date {
    position: relative;
    padding-left: 0;
}

.blog-header .blog-read-time {
    position: relative;
    padding-left: 1rem;
}

.blog-header .blog-read-time::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent-gold-dark);
    font-weight: 700;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.blog-excerpt {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-header .blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-glass);
}

.blog-header .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.blog-header .author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.blog-header .author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.blog-header .author-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Blog Post Content Typography */
.blog-post .blog-content {
    display: block;
    padding: 0;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-post .blog-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: inherit;
    line-height: inherit;
}

.blog-post .blog-content p.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 0;
    background: none;
    border-left: none;
    border-radius: 0;
    margin-bottom: 2rem;
}

.blog-post .blog-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-glass);
    line-height: 1.3;
    scroll-margin-top: 120px;
}

.blog-post .blog-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 0.875rem;
    line-height: 1.35;
    scroll-margin-top: 120px;
}

.blog-post .blog-content h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.blog-post .blog-content ul,
.blog-post .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post .blog-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog-post .blog-content ul li::marker {
    color: var(--accent-gold-dark);
}

.blog-post .blog-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post .blog-content a {
    color: var(--accent-gold-dark);
    text-decoration: underline;
    text-decoration-color: rgba(196, 155, 107, 0.4);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.blog-post .blog-content a:hover {
    color: var(--text-primary);
    text-decoration-color: var(--text-primary);
}

/* Blog Post Highlight Box */
.blog-post .highlight-box {
    position: static;
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
    border: 1px solid rgba(196, 155, 107, 0.2);
    border-left: 4px solid var(--accent-gold-dark);
    border-radius: 0 12px 12px 0;
}

.blog-post .highlight-box h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.blog-post .highlight-box p {
    margin: 0;
    font-size: 0.95rem;
}

.blog-post .highlight-box.urgent {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.06) 0%, rgba(220, 53, 69, 0.02) 100%);
    border-left-color: #dc3545;
    border-color: rgba(220, 53, 69, 0.15);
}

/* Blog Post Tables */
.blog-post .blog-content table,
.blog-post .timeline-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.06);
}

.blog-post .blog-content th,
.blog-post .timeline-table th {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
}

.blog-post .blog-content td,
.blog-post .timeline-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.blog-post .blog-content tr:last-child td,
.blog-post .timeline-table tr:last-child td {
    border-bottom: none;
}

.blog-post .blog-content tr:nth-child(even),
.blog-post .timeline-table tr:nth-child(even) {
    background: rgba(139, 94, 60, 0.02);
}

/* Document Checklist */
.doc-checklist {
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.doc-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.doc-item:hover {
    border-color: rgba(196, 155, 107, 0.2);
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.06);
}

.doc-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.doc-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9375rem;
    margin-bottom: 0.2rem;
}

.doc-item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Cost Breakdown */
.cost-breakdown {
    margin: 1.5rem 0 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border-glass);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item.total {
    background: linear-gradient(135deg, rgba(196, 155, 107, 0.08) 0%, rgba(139, 94, 60, 0.04) 100%);
}

.cost-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.cost-value {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Blog CTA Box */
.cta-box {
    margin: 2.5rem 0;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(145deg, #2A221D, #3D3229, #4A3F35);
    border: 1px solid rgba(196, 155, 107, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-box h3,
.blog-post .blog-content .cta-box h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
}

.blog-post .blog-content .cta-box p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-box p a {
    color: var(--accent-gold-light);
}

.cta-box .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn-primary {
    background: #FFFFFF;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.cta-box .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-box .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.cta-box .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

/* FAQ Section in Posts — reset homepage faq-section styles */
.blog-post .faq-section {
    margin: 1.5rem 0 2rem;
    padding: 0;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post .faq-section::before {
    display: none;
}

.blog-post .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.06);
    transition: all 0.3s ease;
    padding: 0;
}

.blog-post .faq-item:hover {
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.1);
    border-color: rgba(196, 155, 107, 0.3);
}

.blog-post .faq-item:last-child {
    border-bottom: 1px solid var(--border-glass);
}

.blog-post .faq-item h4 {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
    padding: 1.125rem 1.5rem;
    margin: 0;
    line-height: 1.5;
}

.blog-post .faq-item p {
    margin: 0;
    padding: 1.125rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--bg-card);
}

/* Note text */
.blog-post .note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    padding: 0.75rem 1rem;
    background: rgba(139, 94, 60, 0.03);
    border-radius: 8px;
    margin: 1rem 0 2rem;
}

/* Author Bio */
.author-bio {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(139, 94, 60, 0.06);
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-details h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
    font-weight: 500;
    border: none;
    padding: 0;
}

.author-details h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.author-details h4 span {
    font-size: 0.85rem;
    color: var(--accent-gold-dark);
    font-weight: 500;
    font-family: var(--font-sans);
    margin-left: 0.5rem;
}

.author-details p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.author-credentials span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
}

/* Related Posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.related-posts h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.related-card {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(139, 94, 60, 0.1);
    border-color: rgba(196, 155, 107, 0.2);
}

.related-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold-dark);
    background: rgba(196, 155, 107, 0.1);
    padding: 0.3rem 0.625rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.related-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.related-card:hover h4 {
    color: var(--accent-gold-dark);
}

.related-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Blog Post Responsive */
@media (max-width: 768px) {
    .blog-post {
        padding: 6rem 1rem 3rem;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-credentials {
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .blog-header .blog-meta {
        gap: 0.5rem;
    }

    .doc-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* ======================================
   ACCESSIBILITY FIXES - Touch Targets
   ====================================== */

/* Ensure minimum 44px touch targets for all interactive elements */
.filter-tab,
.reviews-filter-pill,
.faq-nav-pill,
.faq-category-btn,
.pagination-numbers a,
.tag-link,
.category-list li a,
.dropdown-col a,
.check-chip,
.hero-areas a,
.social-links a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Adjust padding to maintain visual balance with min-height */
.filter-tab,
.reviews-filter-pill,
.faq-nav-pill {
    padding: 0.625rem 1.25rem;
}

/* Mobile menu button - ensure proper touch target */
.mobile-menu-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Logo link touch target */
.logo {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Navigation links */
.nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Footer links */
.footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Quick reply buttons in WhatsApp widget */
.wa-quick-btn {
    min-height: 44px;
}

/* ======================================
   ACCESSIBILITY FIXES - Font Sizes
   ====================================== */

/* Ensure minimum 12px font size for all text on mobile */
@media (max-width: 768px) {
    .logo-subtitle,
    .service-tag,
    .price-badge,
    .tag,
    .badge,
    .stats-mini-card__label,
    .blog-category,
    .author-location {
        font-size: 12px !important;
    }
    
    /* Improve readability for small text */
    .section-kicker,
    .top-bar,
    .dropdown-col h4,
    .trust-stat-label {
        font-size: 14px !important;
    }
}

/* ======================================
   MOBILE SCROLL FIXES
   ====================================== */

/* Ensure tables are scrollable on all screen sizes */
table,
.service-main table,
.blog-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix for iOS momentum scrolling */
    .mobile-menu-panel {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
}

/* ======================================
   FOCUS STATES FOR ACCESSIBILITY
   ====================================== */

/* Ensure visible focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent-gold-light);
    outline-offset: 2px;
}

/* Remove default focus outline but keep accessible alternative */
:focus:not(:focus-visible) {
    outline: none;
}

/* ======================================
   WHATSAPP WIDGET STYLES - Simple
   ====================================== */

/* Main widget container */
.wa-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Floating button */
.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Popup */
.wa-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.wa-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Header */
.wa-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #075E54;
    flex-shrink: 0;
}

.wa-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
}

.wa-info {
    flex: 1;
    color: white;
}

.wa-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}

.wa-title {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.3;
}

.wa-status {
    font-size: 11px;
    color: #25D366;
    margin-top: 2px;
}

.wa-close {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}

.wa-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Body - Simple */
.wa-body-simple {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
}

.wa-greeting {
    font-size: 14px;
    color: #262626;
    line-height: 1.5;
    margin-bottom: 16px;
}

.wa-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #075E54;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 12px;
}

.wa-phone svg {
    color: #25D366;
}

.wa-hours {
    font-size: 12px;
    color: #666;
}

/* Footer - Simple */
.wa-footer-simple {
    padding: 16px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.wa-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
    width: 100%;
    border: none;
    cursor: pointer;
}

.wa-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(37, 211, 102, 0.45);
}

.wa-chat-btn svg {
    width: 22px;
    height: 22px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .wa-widget {
        bottom: 15px;
        left: 15px;
    }

    .wa-popup {
        width: min(calc(100% - 30px), 320px);
        left: 0;
    }
    
    .wa-float-btn {
        width: 56px;
        height: 56px;
    }
    
    .wa-float-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .wa-body-simple {
        padding: 16px;
    }
    
    .wa-greeting {
        font-size: 13px;
    }
    
    .wa-phone {
        font-size: 15px;
        padding: 8px 16px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .wa-pulse {
        animation: none;
    }
    
    .wa-popup,
    .wa-chat-btn,
    .wa-float-btn {
        transition: none;
    }
}


/* ======================================
   MEGA MENU IMPROVEMENTS
   ====================================== */

/* Ensure dropdown columns don't overflow */
.dropdown-col {
    min-width: 0;
}

/* Hover animation for dropdown appearance */
.nav-dropdown .dropdown-panel {
    transform: translateX(-50%) translateY(15px) scale(0.98);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Active state for dropdown items */
.dropdown-col a:active {
    transform: translateX(2px);
    background: rgba(196, 155, 107, 0.15);
}

/* Focus state for accessibility */
.dropdown-col a:focus-visible {
    outline: 2px solid var(--accent-gold-light);
    outline-offset: -2px;
}

/* Ensure menu items are block */
.dropdown-col a:not(.dropdown-col-head) {
    display: block;
    box-sizing: border-box;
}

/* Smooth transition for all nav items */
.nav-links > a,
.nav-dropdown > .dropdown-trigger {
    position: relative;
    transition: color 0.3s ease;
}
