/* Google Fonts Import for premium feel */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Palette */
    --burgundy: #7E1E30;
    --burgundy-dark: #24040B;
    --burgundy-light: #A02840;
    --burgundy-glow: rgba(160, 40, 64, 0.3);
    
    --gold: #C5A059;
    --gold-bright: #E4C07D;
    --gold-dark: #917032;
    --gold-glow: rgba(228, 192, 125, 0.3);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --bg-light: #1E0409;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-glass: rgba(197, 160, 89, 0.2);
}

/* VivaCall Stylesheet Baseline */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #1E0409;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Gradients & Glow Effects */
.bg-glow-burgundy {
    position: absolute;
    width: 600px;
    height: 600px;
    left: -150px;
    top: -150px;
    background: radial-gradient(circle, rgba(126, 30, 48, 0.35) 0%, rgba(30, 4, 9, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-gold {
    position: absolute;
    width: 800px;
    height: 800px;
    right: -200px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(228, 192, 125, 0.2) 0%, rgba(30, 4, 9, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* Design Guidelines (Vertical dotted lines matching reference) */
.design-guides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    z-index: 1;
}

.design-guide-line {
    width: 1px;
    height: 100%;
    border-left: 1px dashed rgba(197, 160, 89, 0.12);
}

/* Header & Navigation */
header {
    width: 100%;
    padding: 24px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 38px;
    height: 38px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2.5px solid var(--gold-bright);
    border-radius: 50%;
}

.logo-inner {
    width: 16px;
    height: 16px;
    background-color: var(--gold-bright);
    border-radius: 50%;
    animation: pulseGlow 3s infinite ease-in-out;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #FFFFFF;
}

.btn-outline:hover {
    border-color: var(--gold-bright);
    background-color: rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #C5A059 0%, #917032 100%);
    color: #1E0409;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(228, 192, 125, 0.45);
    background: linear-gradient(135deg, #E4C07D 0%, #C5A059 100%);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

/* App Main Container */
#app {
    position: relative;
    z-index: 5;
    min-height: calc(100vh - 86px);
}

/* Hero Section */
.hero-section {
    padding: 30px 6% 36px 6%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 5;
}

/* Badge styled tag */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 160, 89, 0.14);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-bright);
    border-radius: 50%;
}

.badge-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.12;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-heading span {
    background: linear-gradient(135deg, #E4C07D 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-subheading {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Trust/Feature Badges row */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 32px;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-bright);
}

.trust-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Hero Visual / Right Column */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
}

/* Glowing Sphere elements */
.sphere-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.sphere-glow-layer {
    position: absolute;
    width: 115%;
    height: 115%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, rgba(90, 12, 27, 0) 70%);
    filter: blur(25px);
    animation: pulseSphere 4s infinite ease-in-out;
}

.sphere-core {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #5A0C1B 0%, #20040A 60%, #0A0103 100%);
    box-shadow: 
        inset -20px -20px 50px rgba(0, 0, 0, 0.9),
        inset 10px 10px 30px rgba(228, 192, 125, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* Orbiting Rings matching reference screenshot */
.orbit-ring {
    position: absolute;
    width: 135%;
    height: 135%;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.25);
    pointer-events: none;
    z-index: 1;
}

.ring-1 {
    transform: rotateX(70deg) rotateY(-20deg);
    border-color: rgba(197, 160, 89, 0.35);
}

.ring-2 {
    transform: rotateX(60deg) rotateY(40deg);
    border-color: rgba(90, 12, 27, 0.4);
}

.ring-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
    animation: breatheHalo 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

/* Floating rotating matrix lines inside the sphere */
.sphere-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    background-image: 
        radial-gradient(circle, rgba(197, 160, 89, 0.7) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px, 12px 12px;
    background-position: 0 0, 6px 6px;
    opacity: 0.8;
    transform: perspective(600px) rotateX(45deg) rotateY(15deg);
    animation: rotateSphereGrid 25s infinite linear;
    mask-image: radial-gradient(circle, black 30%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 60%);
}

.sphere-halo {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
    animation: breatheHalo 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

/* Floating overlay cards */
.floater-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(43, 5, 13, 0.92) 0%, rgba(20, 3, 6, 0.92) 100%);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
    z-index: 4;
    transition: var(--transition-smooth);
    max-width: 240px;
}

.floater-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(228, 192, 125, 0.6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 160, 89, 0.2);
}

.floater-1 {
    top: 15%;
    left: -40px;
    animation: floatCard1 8s infinite ease-in-out;
}

.floater-2 {
    bottom: 22%;
    right: -40px;
    animation: floatCard2 9s infinite ease-in-out;
}

.floater-3 {
    bottom: -15px;
    left: 20px;
    animation: floatCard3 7s infinite ease-in-out;
}

.floater-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-bright);
}

.floater-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.2);
    color: var(--gold-bright);
}

.floater-icon svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.floater-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.floater-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.floater-unit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.floater-badge {
    display: inline-flex;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--gold-bright);
    padding: 2px 6px;
    border-radius: 4px;
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.floater-desc {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Modal Lead Calculator Drawer */
.lead-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 4, 14, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

.lead-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 480px;
    height: 100%;
    background: linear-gradient(180deg, #1C0A10 0%, #0F0508 100%);
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    color: #FFFFFF;
}

.lead-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
}

.drawer-close {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.drawer-close:hover {
    background-color: rgba(197, 160, 89, 0.2);
    color: var(--gold-bright);
    border-color: rgba(197, 160, 89, 0.4);
    transform: rotate(90deg);
}

.drawer-close svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gold-bright);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    font-family: var(--font-body);
    font-size: 14px;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-select option {
    background-color: #1C0A10;
    color: #FFFFFF;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25);
}

.form-textarea {
    resize: none;
    height: 80px;
}

.form-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
}

/* Success Card */
.success-card {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    animation: zoomIn 0.5s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.success-message {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.success-details {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px dashed rgba(197, 160, 89, 0.3);
    margin-bottom: 32px;
    text-align: left;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.success-detail-row:last-child {
    margin-bottom: 0;
}

.success-detail-label {
    color: rgba(255, 255, 255, 0.7);
}

.success-detail-val {
    font-weight: 600;
    color: var(--gold-bright);
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 12px 4px rgba(197, 160, 89, 0.6);
    }
}

@keyframes rotateSphereGrid {
    0% {
        transform: perspective(600px) rotateX(45deg) rotateY(15deg) rotateZ(0deg);
    }
    100% {
        transform: perspective(600px) rotateX(45deg) rotateY(15deg) rotateZ(360deg);
    }
}

@keyframes breatheHalo {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
        border-color: rgba(90, 12, 27, 0.4);
    }
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 40px;
    }
    .hero-content {
        align-items: center;
    }
    .hero-subheading {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .trust-row {
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-visual {
        height: 480px;
        margin-top: 20px;
    }
    .sphere-wrapper {
        width: 320px;
        height: 320px;
    }
    .floater-1 { left: -10px; }
    .floater-2 { right: -10px; }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 16px;
        padding: 16px 4%;
    }
    nav {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    .hero-heading {
        font-size: 40px;
    }
    .trust-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .lead-drawer {
        width: 100%;
        right: -100%;
    }
}

/* ==========================================================================
   Services Section - Compact Grid Layout
   ========================================================================== */
.services-section {
    padding: 48px 6%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: rgba(197, 160, 89, 0.14);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
}

.services-section .section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.services-section .section-desc.centered {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-compact-card {
    background: linear-gradient(145deg, #2D060F 0%, #160206 100%);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 24px;
    padding: 26px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.service-compact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 192, 125, 0.6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.15);
}

.service-compact-card:hover .service-compact-arrow {
    transform: translateX(4px);
    background: var(--gold);
    color: #1E0409;
}

.service-compact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-compact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-compact-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.service-price-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-bright);
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

.service-compact-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 10px;
}

.service-compact-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 18px;
}

.service-compact-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px dashed rgba(197, 160, 89, 0.15);
}

.service-compact-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.service-compact-feature svg {
    width: 15px;
    height: 15px;
    fill: var(--gold-bright);
    flex-shrink: 0;
}

.service-compact-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.service-compact-action {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-bright);
}

.service-compact-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-compact-arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 1100px) {
    .services-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 32px 4%;
    }
    .section-title {
        font-size: 32px;
    }
    .services-carousel {
        gap: 16px;
    }
    .service-card {
        flex: 0 0 320px;
        min-height: 580px;
        padding: 24px 20px;
    }
}

/* Standards and Quality Section - Bento Grid Layout */
.standards-section {
    padding: 48px 6%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    border-top: 1px dashed rgba(197, 160, 89, 0.15);
}

.standards-section .section-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.standards-section .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(197, 160, 89, 0.14);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
}

.standards-section .section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.standards-section .section-desc.centered {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-left: auto;
    margin-right: auto;
}

/* Bento Grid Container */
.standards-bento-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.bento-left-col {
    display: grid;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Bento Card Defaults */
.bento-card {
    border-radius: 28px;
    padding: 38px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* 1. Bento Card Wide (Dark Burgundy Glass) */
.bento-card-wide {
    background: linear-gradient(145deg, #2D060F 0%, #160206 100%);
    min-height: 320px;
}

.bento-card-wide:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border-color: rgba(228, 192, 125, 0.5);
}

.bento-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1.5px solid currentColor;
    margin-bottom: 24px;
}

.bento-card-wide .bento-badge {
    color: var(--gold-bright);
    background-color: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.3);
}

.bento-card-wide .bento-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

/* Timeline/Steps representation inside wide card */
.bento-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    border-top: 1.5px solid rgba(197, 160, 89, 0.2);
    padding-top: 24px;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: uppercase;
}

.step-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #FFFFFF;
}

.step-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* Bento Arrow Button styling like screenshot */
.bento-arrow-btn {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.bento-card:hover .bento-arrow-btn {
    background-color: var(--gold);
    color: #1E0409;
    border-color: var(--gold);
    transform: scale(1.05);
}

.bento-arrow-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform var(--transition-smooth);
}

.bento-card:hover .bento-arrow-btn svg {
    transform: rotate(-45deg);
}

/* 2. Bento Card Gold (KPIs) */
.bento-card-gold {
    background-color: var(--gold); /* Deep gold block */
    color: var(--burgundy-dark);
    min-height: 300px;
    border-color: transparent;
}

.bento-card-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    filter: brightness(1.03);
}

.bento-card-gold .bento-badge {
    color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    background-color: rgba(90, 12, 27, 0.08);
}

.bento-card-gold .bento-arrow-btn {
    background-color: rgba(90, 12, 27, 0.05);
    border-color: rgba(90, 12, 27, 0.12);
    color: var(--burgundy-dark);
    right: 28px;
    top: 28px;
}

.bento-card-gold:hover .bento-arrow-btn {
    background-color: var(--burgundy-dark);
    color: var(--gold);
    border-color: var(--burgundy-dark);
}

/* Wave chart representation inside Gold card */
.bento-chart-container {
    height: 90px;
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    opacity: 0.75;
}

.bento-chart-wave {
    flex-grow: 1;
    height: 100%;
    opacity: 0.15;
    background-image: repeating-linear-gradient(90deg, var(--burgundy-dark), var(--burgundy-dark) 1px, transparent 1px, transparent 4px);
    mask-image: radial-gradient(circle at center, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

.bento-card-gold .bento-metric-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-top: auto;
    margin-bottom: 8px;
}

.bento-card-gold .bento-metric-desc {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.85;
}

/* 3. Bento Card Accent (Business Results) */
.bento-card-accent {
    background-color: var(--burgundy); /* Dark Burgundy Block */
    color: #ffffff;
    min-height: 300px;
    border-color: transparent;
}

.bento-card-accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(90, 12, 27, 0.25);
    background-color: var(--burgundy-dark);
}

.bento-card-accent .bento-badge {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    background-color: rgba(228, 192, 125, 0.1);
}

.bento-card-accent .bento-arrow-btn {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    right: 28px;
    top: 28px;
}

.bento-card-accent:hover .bento-arrow-btn {
    background-color: var(--gold);
    color: var(--burgundy-dark);
    border-color: var(--gold);
}

/* Bar chart representation like screenshot */
.bento-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 70px;
    margin-bottom: 16px;
    opacity: 0.85;
}

.bento-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bar-val {
    font-size: 9px;
    font-weight: 700;
    opacity: 0.8;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, rgba(228, 192, 125, 0.2), var(--gold));
    border-radius: 4px;
    transition: height 1s ease-out;
}

.bento-card-accent .bento-metric-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--gold-bright);
    margin-top: auto;
    margin-bottom: 8px;
}

.bento-card-accent .bento-metric-desc {
    font-size: 12.5px;
    line-height: 1.4;
    opacity: 0.85;
}

/* 4. Bento Card Tall (Right Side - Operations Model) */
.bento-card-tall {
    background-color: #160408; /* Ultra-dark slate burgundy like screenshot black theme */
    color: #ffffff;
    min-height: 664px; /* Stretches to fill vertical space */
    border-color: rgba(255, 255, 255, 0.05);
}

.bento-card-tall:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(197, 160, 89, 0.2);
}

.bento-card-tall .bento-badge {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    background-color: rgba(197, 160, 89, 0.1);
    margin-bottom: 0; /* Keep neat space in header row */
}

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

/* Abstract 3D-like geometric visual container like screenshot */
.bento-visual-mesh {
    width: 100%;
    height: 180px;
    background: radial-gradient(circle at 50% 50%, rgba(90, 12, 27, 0.4), transparent 70%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.bento-visual-orb {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, var(--gold), var(--burgundy) 80%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.3), inset -10px -10px 20px rgba(0, 0, 0, 0.8);
    animation: floatingOrb 6s ease-in-out infinite;
}

.bento-card-tall .bento-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.bento-card-tall .bento-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Bullet list inside tall card */
.bento-tall-list {
    list-style: none;
    margin-bottom: 24px;
}

.bento-tall-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.4;
}

.bento-tall-item svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tags pill row */
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.bento-tag {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Action button at bottom */
.bento-action-btn {
    width: 100%;
    background-color: var(--burgundy);
    color: #ffffff;
    border: 1.5px solid var(--burgundy);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.bento-action-btn:hover {
    background-color: var(--gold);
    color: var(--burgundy-dark);
    border-color: var(--gold);
}

.bento-action-btn .btn-arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.bento-action-btn:hover .btn-arrow-circle {
    background-color: var(--burgundy-dark);
    color: var(--gold);
}

.bento-action-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Animations */
@keyframes floatingOrb {
    0%, 100% { transform: translate(-50%, -52%) scale(1); }
    50% { transform: translate(-50%, -48%) scale(1.03); }
}

/* Responsive Bento Grid */
@media (max-width: 1200px) {
    .standards-bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bento-card-tall {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .standards-section {
        padding: 32px 4%;
    }
    .standards-section .section-title {
        font-size: 32px;
    }
    .bento-card-wide .bento-title {
        font-size: 28px;
    }
    .bento-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bento-row-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bento-card {
        padding: 28px 24px;
    }
}

/* Cases Section (Кейсы и Опыт - Screenshot Bento Grid Layout) */
.cases-section {
    padding: 48px 6%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.cases-section .section-header {
    text-align: center;
    margin-bottom: 28px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cases-section .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: rgba(197, 160, 89, 0.14);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
}

.cases-section .section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cases-section .section-desc.centered {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dark Bento Grid Container */
.cases-bento-container {
    background-color: #140306;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cases-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 230px 210px 210px;
    gap: 16px;
}

.cases-bento-grid.filtered-mode {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
}

.cases-bento-grid.filtered-mode .bento-cell {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 220px;
}

/* Base Bento Cell Style (Matching Screenshot) */
.bento-cell {
    border-radius: 24px;
    padding: 28px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.bento-cell:hover .bento-cell-arrow {
    transform: translateX(4px);
}

/* Card 1: Top Left - Pure Light White Card with Soundwave pattern */
.cases-bento-grid .bento-cell:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1;
    background: #F4F4F6 !important;
    color: #111113 !important;
}

.bento-wave-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 240px;
    height: 100%;
    background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.06) 2px, transparent 2px, transparent 10px);
    mask-image: linear-gradient(to left, rgba(0,0,0,0.9), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9), transparent);
    pointer-events: none;
}

/* Card 2: Top Right - Visual Dark Burgundy Card with Red Sticker Graphic */
.cases-bento-grid .bento-cell:nth-child(2) {
    grid-column: 4 / span 3;
    grid-row: 1;
    background: linear-gradient(135deg, #4A0B17 0%, #260309 100%) !important;
    color: #FFFFFF !important;
}

.bento-sticker-badge {
    position: absolute;
    right: 28px;
    top: 24px;
    background: #E63946;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    transform: rotate(3deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Card 3: Tall Left - Deep Dark Visual Card with Glowing Orb Accent */
.cases-bento-grid .bento-cell:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 2 / span 2;
    background: linear-gradient(180deg, #18080B 0%, #350811 100%) !important;
    color: #FFFFFF !important;
}

.bento-glow-orb {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.35) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

/* Card 4: Middle Top - Warm Light Beige Card */
.cases-bento-grid .bento-cell:nth-child(4) {
    grid-column: 3 / span 2;
    grid-row: 2;
    background: #EBE5DB !important;
    color: #1A1714 !important;
}

/* Card 5: Middle Bottom - Dark Charcoal Card */
.cases-bento-grid .bento-cell:nth-child(5) {
    grid-column: 3 / span 2;
    grid-row: 3;
    background: #1C1D24 !important;
    color: #FFFFFF !important;
}

/* Card 6: Tall Right - Visual Photo Dark Card */
.cases-bento-grid .bento-cell:nth-child(6) {
    grid-column: 5 / span 2;
    grid-row: 2 / span 2;
    background: linear-gradient(180deg, #241418 0%, #100609 100%) !important;
    color: #FFFFFF !important;
}

/* Typography & Layout inside bento-cell */
.bento-cell-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.bento-cell-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

.bento-cell-category {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.bento-cell-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.bento-cell-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Cases Grid */
@media (max-width: 1100px) {
    .cases-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }

    .cases-bento-grid .bento-cell {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 220px;
    }
}

@media (max-width: 700px) {
    .cases-section {
        padding: 32px 4%;
    }
    .cases-bento-container {
        padding: 14px;
        border-radius: 24px;
    }
    .cases-bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .bento-cell {
        padding: 22px 18px 18px 18px;
        min-height: 190px;
    }
    .bento-cell-title {
        font-size: 20px;
    }
}

/* ==========================================================================
   Client Review Modal Styles
   ========================================================================== */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 8, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.review-modal {
    background: linear-gradient(145deg, #1C0A10 0%, #0F0508 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 28px;
    max-width: 640px;
    width: 100%;
    padding: 36px 36px 32px 36px;
    color: #FFFFFF;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

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

.review-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.review-modal-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-right: 40px;
}

.review-modal-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-bright);
    background: rgba(197, 160, 89, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.review-stars {
    color: #E4C07D;
    font-size: 16px;
    letter-spacing: 3px;
}

.review-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Company & Author Profile */
.review-company-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 22px;
}

.review-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--gold-dark) 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(197, 160, 89, 0.4);
}

.review-company-name {
    font-weight: 700;
    font-size: 15px;
    color: #FFFFFF;
}

.review-author-role {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Metrics Grid in Modal */
.review-metrics-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.review-metric-pill {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-bright);
}

/* Quote Box */
.review-quote-box {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--gold);
    border-radius: 0 16px 16px 0;
    padding: 20px 22px 20px 24px;
    margin-bottom: 28px;
}

.review-quote-icon {
    position: absolute;
    top: 6px;
    right: 18px;
    font-size: 48px;
    font-family: Georgia, serif;
    color: rgba(197, 160, 89, 0.15);
    line-height: 1;
    pointer-events: none;
}

.review-quote-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.review-modal-footer {
    display: flex;
    justify-content: flex-end;
}

.review-modal-cta {
    width: 100%;
    padding: 14px 28px;
}

@media (max-width: 600px) {
    .review-modal {
        padding: 24px 20px 20px 20px;
        border-radius: 20px;
    }
    .review-modal-title {
        font-size: 20px;
    }
}

html {
    background-color: #080305;
}

/* ==========================================================================
   Footer Styles (VivaCall Compact B2B Footer)
   ========================================================================== */
.site-footer {
    background-color: #0C0507;
    color: #FFFFFF;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    overflow: hidden;
    margin-bottom: 0;
}

/* Main Footer Columns */
.footer-main {
    padding: 48px 6% 36px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-accent {
    color: var(--gold-bright);
}

.footer-about-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 320px;
}

.footer-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item:hover {
    color: var(--gold-bright);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-bright);
    flex-shrink: 0;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

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

.footer-link {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-hours-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold-bright);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 12.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--burgundy);
    border-color: var(--gold);
    color: #FFFFFF;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 6%;
    background-color: #080305;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-link:hover {
    color: var(--gold-bright);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        padding: 36px 4% 24px 4%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================================================
   Personal Account Auth Modal Stub Styles
   ========================================================================== */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 8, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: linear-gradient(145deg, #1C0A10 0%, #0F0508 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 28px;
    max-width: 480px;
    width: 100%;
    padding: 36px 32px 32px 32px;
    color: #FFFFFF;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
    position: relative;
    text-align: center;
    transform: scale(0.92) translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.auth-modal-close svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.auth-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
}

.auth-modal-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.auth-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.auth-modal-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin-bottom: 20px;
}

.auth-modal-notice {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-bottom: 24px;
}

.auth-notice-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-notice-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.auth-modal-notice strong {
    color: var(--gold-bright);
}

.auth-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-modal-contact-btn {
    width: 100%;
    padding: 12px;
}

/* ==========================================================================
   Cookie Banner & Form Checkbox Styles
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    width: calc(100% - 48px);
    background: rgba(22, 9, 14, 0.92);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cookie-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.cookie-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.cookie-desc a {
    color: var(--gold-bright);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

/* Form Checkbox Consent Styles */
.form-checkbox-group {
    margin-top: 12px;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    cursor: pointer;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.45;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 4px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--gold-bright);
    background-color: rgba(197, 160, 89, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--burgundy);
    border-color: var(--gold-bright);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid var(--gold-bright);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label-text a {
    color: var(--gold-bright);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 16px;
        right: 16px;
        width: calc(100% - 32px);
        padding: 16px;
    }
}

/* ==========================================================================
   Legal Document Pages Styles
   ========================================================================== */
.legal-page-body {
    background-color: #080305;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-container {
    flex: 1;
    max-width: 1000px;
    width: 100%;
    margin: 120px auto 60px auto;
    padding: 0 24px;
    z-index: 5;
    position: relative;
}

.legal-card {
    background: rgba(22, 9, 14, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.legal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 28px;
    margin-bottom: 32px;
}

.legal-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 5px 14px;
    border-radius: 50px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.25;
}

.legal-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-section li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
}

.legal-section a {
    color: var(--gold-bright);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .legal-container {
        margin-top: 100px;
        padding: 0 16px;
    }
    .legal-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
    .legal-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   VivaCall Admin Dashboard Styles
   ========================================================================== */
.admin-body {
    background-color: #120306;
    color: #FFFFFF;
    font-family: var(--font-body);
    min-height: 100vh;
}

/* Admin Login Modal */
.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 2, 5, 0.92);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: linear-gradient(145deg, #240810 0%, #120307 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 160, 89, 0.15);
    text-align: center;
}

.admin-login-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.admin-login-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.admin-login-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ff8a80;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
}

/* Admin Layout */
.admin-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px 60px 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.admin-badge-pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-bright);
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 3px 10px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 8px;
}

.admin-header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.btn-logout {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-logout:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.4);
    color: #ff8a80;
}

/* Stat Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.admin-stat-card {
    background: rgba(30, 8, 14, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-stat-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.admin-stat-icon.gold {
    background: rgba(197, 160, 89, 0.18);
    color: var(--gold-bright);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.admin-stat-icon.burgundy {
    background: rgba(126, 30, 48, 0.25);
    color: #ff80ab;
    border: 1px solid rgba(160, 40, 64, 0.4);
}

.admin-stat-icon.green {
    background: rgba(76, 175, 80, 0.18);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.admin-stat-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 4px;
}

.admin-stat-val {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

/* Controls Box */
.admin-controls-card {
    background: rgba(30, 8, 14, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 18px;
    padding: 18px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.admin-search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.admin-search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.4);
}

.admin-search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.admin-search-box input:focus {
    outline: none;
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.1);
}

.admin-filter-box {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-filter-box select {
    width: auto;
    padding: 11px 16px;
}

/* Table */
.admin-table-container {
    background: rgba(22, 6, 11, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 20px;
    overflow-x: auto;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13.5px;
}

.admin-table th {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    white-space: nowrap;
}

.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

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

.lead-code-badge {
    font-family: monospace;
    font-weight: 700;
    color: var(--gold-bright);
    background: rgba(197, 160, 89, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.service-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.comment-cell {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.85;
}

.admin-link {
    color: var(--gold-bright);
    text-decoration: underline;
}

.status-select {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.status-select.badge-new {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid rgba(33, 150, 243, 0.4);
    color: #90caf9;
}

.status-select.badge-in-progress {
    background: rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.4);
    color: #ffcc80;
}

.status-select.badge-completed {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #a5d6a7;
}

.admin-actions-flex {
    display: flex;
    gap: 8px;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    background: rgba(197, 160, 89, 0.25);
    border-color: var(--gold-bright);
}

.admin-table-loading, .admin-table-empty, .admin-table-error {
    text-align: center;
    padding: 40px !important;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.detail-item strong {
    color: var(--gold-bright);
}



