/* LaravelOps Premium Theme - Mission 4 */
:root {
    --primary: #ca1212; /* Deep Red from logo */
    --primary-hover: #b91c1c;
    --secondary: #4b5563; /* Medium Grey */
    --dark: #0a0a0a; /* Neutral Dark */
    --dark-lighter: #171717; /* Slate-900 equivalent */
    --text-light: #f5f5f5;
    --text-muted: #a3a3a3;
    --accent: #f59e0b; /* Amber for glows */
    --glass: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --banner-gradient: linear-gradient(135deg, rgba(202, 18, 18, 0.15) 0%, transparent 50%, rgba(202, 18, 18, 0.05) 100%);
}

.banner-effect {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.banner-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(202, 18, 18, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(202, 18, 18, 0.1) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(202, 18, 18, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
}

/* Main Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.7); /* Slightly more opaque for stability */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Tiny hint of a line to avoid jump */
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* very subtle fixed color line */
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px !important; /* Force branding height */
    width: auto;
    filter: drop-shadow(0 0 15px rgba(202, 18, 18, 0.4));
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo img { height: 45px !important; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 1.1rem; /* Slightly larger for professionalism */
    font-weight: 500;
}

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

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.1), transparent);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-lighter);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .pc-only { display: none !important; }
    .mobile-only { display: block !important; cursor: pointer; font-size: 1.5rem; margin-right: -0.5rem; }
    .hero-visual { display: flex !important; width: 100%; }
}

.mobile-only { display: none; }
.pc-only { display: block; }

/* Advanced Agency Components */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }
    .hero-subtitle { margin: 0 auto 3.5rem; }
    .btn-group { justify-content: center; }
}
.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-fan-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(202, 18, 18, 0.3));
    animation: floating 6s ease-in-out infinite;
}

@media (max-width: 992px) {
    .app-fan-image { max-width: 80%; margin-top: 3rem; }
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.badge-1 { top: 10%; right: -5%; animation: floating 5s ease-in-out infinite; }
.badge-2 { bottom: 20%; left: -5%; animation: floating 7s ease-in-out infinite 1s; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .floating-badge { display: none; } /* Hide badges on mobile to avoid overlap */
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.badge-text div:first-child {
    font-weight: 700;
    font-size: 1.1rem;
}

.badge-text div:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Service Grid v2 */
.service-card-v2 {
    text-align: center;
    padding: 4rem 2rem;
}

.service-card-v2 .icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.service-card-v2 .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(202, 18, 18, 0.4));
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Process Section (Home Page) */
.home-process-step {
    position: relative;
    padding-left: 7rem; /* Increased padding to clear the large number */
    margin-bottom: 4rem;
    min-height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .home-process-step { padding-left: 5.5rem; margin-bottom: 3rem; }
    .step-number { font-size: 3.5rem; }
}
@media (max-width: 480px) {
    .home-process-step { padding-left: 0; padding-top: 4rem; text-align: center; align-items: center; }
    .step-number { top: 0; transform: none; left: 50%; transform: translateX(-50%); font-size: 3rem; }
}

.step-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem; /* Large impact number */
    font-weight: 900;
    color: rgba(202, 18, 18, 0.15); /* Subtler, watermark style to avoid overlap visual clutter */
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    user-select: none;
    pointer-events: none;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Page Components */
.section-padding {
    padding: 5rem 0; /* Reduced from 8rem */
}

.section-padding-large {
    padding: 8rem 0 4rem; /* Reduced from 10rem */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.page-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: #fff;
    color: var(--primary) !important;
    border: none;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none !important;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--text-light) !important;
    border: none;
    font-weight: 700;
}

.btn-primary-nav {
    background: var(--primary);
    color: var(--text-light) !important;
    border-color: var(--primary);
}

.btn-primary-nav:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 1rem auto 0;
}

/* ============================================================
   SERVICE LIFECYCLE TIMELINE (Services/Details Pages)
============================================================ */
.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3.5rem;
}
@media (max-width: 900px) {
    .lifecycle-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 480px) {
    .lifecycle-grid { grid-template-columns: 1fr; }
}

/* Horizontal connector line between steps */
.lifecycle-grid::before {
    content: '';
    position: absolute;
    top: 3.5rem;       /* aligns with centre of number bubble */
    left: calc(12.5% + 1rem);
    width: calc(75% - 2rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(202,18,18,0.2) 100%);
    z-index: 0;
}

.lifecycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

.lifecycle-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(202,18,18,0.25);
}

.lifecycle-step:hover .lifecycle-num {
    background: var(--primary);
    color: #fff;
    transition: all 0.3s;
}

.home-process-step-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(202,18,18,0.3));
}

.home-process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.home-process-step-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 200px;
}

/* ============================================================
   CONTACT CARDS
============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.contact-card-icon--red {
    background: linear-gradient(135deg, rgba(202,18,18,0.2), rgba(202,18,18,0.05));
    border: 1px solid rgba(202,18,18,0.3);
    color: var(--primary);
}
.contact-card-icon--green {
    background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.04));
    border: 1px solid rgba(37,211,102,0.25);
    color: #25d366;
}

.contact-card-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.contact-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}
.contact-card-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Contact form panel */
.contact-form-panel {
    padding: 4rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
}

/* Responsive */
@media (max-width: 900px) {
    .lifecycle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lifecycle-grid::before { display: none; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}
@media (max-width: 600px) {
    .lifecycle-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .section-padding { padding: 3.5rem 0; }
    .section-padding-large { padding: 6rem 0 3rem; }
}

/* ── Blog Posts Grid (replaces hardcoded 3-col inline styles) ── */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
@media (max-width: 992px) {
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-posts-grid { grid-template-columns: 1fr; }
}

/* ── Page-Hero Grid (two-col: text | image, used in service detail banners) ── */
@media (max-width: 900px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .page-hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .page-hero-image { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ── Contact form panel mobile padding ── */
@media (max-width: 768px) {
    .contact-form-panel { padding: 2rem 1.5rem; }
    .contact-card { gap: 1.2rem; padding: 1.5rem; }
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 0.62rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Stats Counter */
.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* FAQ Accordion */
.accordion-item {
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 0.75rem;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    text-align: left;
    line-height: 1.5;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.4s ease;
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    background: rgba(255,255,255,0.02);
    position: relative;
    z-index: 1;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--primary);
    border-top: 1px solid var(--glass-border);
}

.accordion-item.active .accordion-header {
    border-bottom: none;
    border-radius: 0.75rem 0.75rem 0 0;
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* --- Blog Styles --- */
.blog-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    align-items: start;
}
@media (max-width: 992px) {
    .blog-sidebar-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Article body typography */
.glass-card h2, .glass-card h3, .glass-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.glass-card p { color: var(--text-muted); line-height: 1.8; }
.glass-card ul, .glass-card ol {
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.9;
}
.glass-card a:not([class]) { color: var(--primary); }
.glass-card blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 2rem 0;
}
.glass-card pre, .glass-card code {
    background: rgba(255,255,255,0.04);
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}
.glass-card pre { padding: 1.5rem; display: block; overflow-x: auto; }

/* Card hover lift */
.glass-card:hover { transform: translateY(-4px); }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem; /* Refined spacing */
    flex-wrap: wrap; /* Fix for mobile overflow */
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep {
    font-size: 0.65rem;
    color: var(--primary);
}
.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   PAGE BANNER HERO
============================================================ */
.page-banner {
    padding: 8.5rem 0 5rem; /* Increased padding-top for header clearance */
    position: relative;
}

/* Two-col hero layout: left text / right image */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Badge / label above hero title */
.page-badge {
    display: inline-block;
    padding: 0.45rem 1.4rem;
    background: rgba(202, 18, 18, 0.1);
    border: 1px solid rgba(202, 18, 18, 0.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Hero copy block */
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}
.page-hero-subtitle {
    color: var(--text-muted);
    margin-top: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 520px;
}

/* Hero CTA row */
.hero-cta-row {
    margin-top: 3.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.btn-ghost:hover { color: #fff; }

/* Hero image wrapper */
.page-hero-image {
    position: relative;
}
.page-hero-image .glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(202, 18, 18, 0.18) 0%, transparent 65%);
    filter: blur(60px);
    z-index: 0;
}
.page-hero-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 2rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

/* ============================================================
   PREMIUM STATS / COUNT SECTION
============================================================ */
@keyframes statsFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 0.8; transform: scale(1.15); }
}

.premium-stats-section {
    padding: 5rem 0;
    background: var(--dark-lighter);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.premium-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(202,18,18,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-stat-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    opacity: 0;
    animation: statsFadeUp 0.6s ease forwards;
}
.premium-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(202,18,18,0.35);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.6),
                0 0 0 1px rgba(202,18,18,0.15) inset;
}

/* Animated nth-child delays */
.premium-stat-card:nth-child(1) { animation-delay: 0.05s; }
.premium-stat-card:nth-child(2) { animation-delay: 0.15s; }
.premium-stat-card:nth-child(3) { animation-delay: 0.25s; }
.premium-stat-card:nth-child(4) { animation-delay: 0.35s; }

/* Glow orb behind card */
.premium-stat-glow {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(202,18,18,0.15);
    filter: blur(20px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}
.premium-stat-card:nth-child(2) .premium-stat-glow { background: rgba(59,130,246,0.15); animation-delay: 1s; }
.premium-stat-card:nth-child(3) .premium-stat-glow { background: rgba(16,185,129,0.15); animation-delay: 2s; }
.premium-stat-card:nth-child(4) .premium-stat-glow { background: rgba(245,158,11,0.15); animation-delay: 3s; }

/* Icon wrapper */
.premium-stat-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}
.premium-stat-icon--red   { background: rgba(202,18,18,0.15);   border: 1px solid rgba(202,18,18,0.3);   color: #f87171; }
.premium-stat-icon--blue  { background: rgba(59,130,246,0.15);  border: 1px solid rgba(59,130,246,0.3);  color: #60a5fa; }
.premium-stat-icon--green { background: rgba(16,185,129,0.15);  border: 1px solid rgba(16,185,129,0.3);  color: #34d399; }
.premium-stat-icon--amber { background: rgba(245,158,11,0.15);  border: 1px solid rgba(245,158,11,0.3);  color: #fbbf24; }

/* Stat body */
.premium-stat-body { position: relative; z-index: 1; }
.premium-stat-number {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.premium-stat-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}
.premium-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .premium-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .premium-stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .premium-stat-card  { padding: 1.5rem; gap: 1rem; }
    .premium-stat-number { font-size: 2.2rem; }
}

/* Legacy aliases — keep old selectors working if any stray reference exists */
.stats-bar { display: none; } /* hidden in favour of premium-stats-section */

/* ============================================================
   TWO-COL IMAGE / CONTENT SECTIONS
============================================================ */
.img-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}
@media (max-width: 900px) {
    .img-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .img-content-grid .img-wrapper {
        max-width: 520px;
        margin: 0 auto;
    }
    .img-content-grid .img-wrapper::before { display: none; }
}

/* ── Blog Sidebar Layout (blog-details page) ── */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    align-items: start;
}
@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    aside { position: static !important; margin-top: 4rem; }
}

.blog-content-card {
    padding: 4rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}
@media (max-width: 768px) {
    .blog-content-card {
        padding: 2.5rem 1.5rem;
        font-size: 1rem;
    }
}

.blog-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}
@media (max-width: 600px) {
    .blog-footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Blog Sidebar (sticky on desktop, static on mobile) ── */
.blog-sidebar {
    position: sticky;
    top: 120px;
}
@media (max-width: 992px) {
    .blog-sidebar {
        position: static;
        top: auto;
        margin-top: 3rem;
    }
}

/* ── Blog Featured Image ── */
.blog-featured-img {
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.blog-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .blog-featured-img {
        border-radius: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* ── Blog Hero Meta Row (date + read time) ── */
.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.blog-hero-meta-item {
    color: var(--text-muted);
    font-size: 0.875rem;
}
@media (max-width: 480px) {
    .blog-hero-meta {
        gap: 1.2rem;
        flex-direction: column;
    }
}

/* Decorative image wrapper */
.img-wrapper {
    position: relative;
}
.img-wrapper::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 80%;
    height: 80%;
    background: rgba(202, 18, 18, 0.06);
    border-radius: 2rem;
    z-index: 0;
}
@media (max-width: 768px) {
    .img-wrapper::before { bottom: -1rem; left: -1rem; }
}
.img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}
.img-wrapper-right::before {
    bottom: auto;
    left: auto;
    top: -2rem;
    right: -2rem;
}

/* Section heading label */
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Feature list (icon + content) */
.feature-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: rgba(202, 18, 18, 0.1);
    border: 1px solid rgba(202, 18, 18, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}
.feature-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   SERVICE CARDS V3
============================================================ */
.service-card-v3 {
    padding: 3rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(202, 18, 18, 0.1);
    border: 1px solid rgba(202, 18, 18, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.8rem;
}
.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #fff;
}
.service-card-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.service-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.service-feature-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.service-feature-list li i {
    color: var(--primary);
    font-size: 0.85rem;
}
.service-deep-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    font-size: 0.95rem;
}
.service-deep-link:hover { border-color: var(--primary); }

/* ============================================================
   CHECK LIST (Why Us section)
============================================================ */
.check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.975rem;
}
.check-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================
   PILLAR CARDS
============================================================ */
.pillar-card {
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}
.pillar-card--featured {
    background: linear-gradient(180deg, rgba(202, 18, 18, 0.05) 0%, transparent 100%);
    border-top: 2px solid var(--primary);
}
.pillar-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(202, 18, 18, 0.4));
}
.pillar-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
}
.pillar-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   SECTION BG VARIANTS
============================================================ */
.bg-dark      { background: var(--dark); }
.bg-dark-alt  { background: var(--dark-lighter); }
.bg-gradient-fade {
    background: linear-gradient(to bottom, var(--dark), var(--dark-lighter));
}

/* ============================================================
   RESPONSIVE — COLLAPSE GRIDS
============================================================ */
@media (max-width: 900px) {
    .page-hero-grid,
    .img-content-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-bar-grid   { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-item + .stats-bar-item { border-left: none; padding-left: 0; }
}
@media (max-width: 600px) {
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* ============================================================
   SITE FOOTER (Mission 4 Redesign)
============================================================ */
.site-footer {
    background: var(--dark-lighter);
    margin-top: 5rem;
    position: relative;
    z-index: 10;
}

.footer-lead-gen {
    background: linear-gradient(rgba(202, 18, 18, 0.92), rgba(128, 14, 14, 0.95)),
                url('../image/footer_bg.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    border-radius: 4rem 4rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
}

.footer-lead-gen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 80% 70%, #fff 1px, transparent 1px);
    background-size: 60px 60px;
}

.footer-lead-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-lead-text {
    color: rgba(255,255,255,0.85);
    margin: 0 auto 3rem;
    max-width: 650px;
    font-size: 1.15rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    padding: 6rem 0 4rem;
}

.footer-col-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(202,18,18,0.3);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-lead-gen {
        padding: 4rem 1.5rem;
        border-radius: 2.5rem 2.5rem 0 0;
    }
}

/* ============================================================
   UTILITIES
============================================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center; }

/* About page helpers */
.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.section-subtitle {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 500px;
}
.about-body-text {
    color: var(--text-muted);
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}
.text-light-strong { color: var(--text-light); }
.about-feature-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.about-feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.btn-cta-lg {
    padding: 1.1rem 3rem;
    font-weight: 800;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}
.btn-link-muted {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 1.1rem 2rem;
    transition: color 0.3s;
}
.btn-link-muted:hover { color: var(--text-light); }
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.section-border-y {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
    display: flex;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin-top: 4rem;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(202, 18, 18, 0.4);
}

.pagination .page-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   SIDEBAR FORM
============================================================ */
.sidebar-form-card {
    background: linear-gradient(135deg, rgba(202, 18, 18, 0.12) 0%, transparent 100%);
    border: 1px solid rgba(202, 18, 18, 0.25);
}

.sidebar-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.sidebar-form .form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.sidebar-form .form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}

.sidebar-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}

.sidebar-form .btn-submit {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* ============================================================
   RESPONSIVE OVERRIDES
============================================================ */
@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    aside {
        position: static !important;
        margin-top: 4rem;
    }
}

/* Custom Captcha Styles */
.captcha-container {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.captcha-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.captcha-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.btn-refresh-captcha {
    background: rgba(202, 18, 18, 0.1);
    border: 1px solid rgba(202, 18, 18, 0.2);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh-captcha:hover {
    background: var(--primary);
    color: #fff;
}

.captcha-instruction {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.captcha-instruction span {
    color: var(--primary);
    font-weight: 800;
}

.captcha-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.captcha-option {
    background: var(--dark-lighter);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    color: #fff;
}

.captcha-option:hover {
    border-color: var(--primary);
    background: rgba(202, 18, 18, 0.05);
}

.captcha-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(202, 18, 18, 0.4);
}


/* Validation Styles */
.error {
    color: #ff4d4d !important;
    font-size: 0.8rem !important;
    margin-top: 0.4rem;
    display: block;
    font-weight: 600;
}

input.error, textarea.error {
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.05) !important;
}


/* Required Field Indicator */
.required-star {
    color: var(--primary);
    margin-left: 2px;
    font-weight: 800;
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE GRIDS
============================================================ */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.about-stats-item + .about-stats-item {
    border-left: 1px solid var(--glass-border);
    padding-left: 2rem;
}
.about-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.about-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-story-image {
    position: relative;
}
.about-story-image-bg {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 80%;
    height: 80%;
    background: rgba(202,18,18,0.06);
    border-radius: 2rem;
    z-index: 0;
}
.about-story-image img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}
.about-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: rgba(202,18,18,0.1);
    border: 1px solid rgba(202,18,18,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-why-image {
    position: relative;
}
.about-why-image-bg {
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 75%;
    height: 75%;
    background: rgba(202,18,18,0.06);
    border-radius: 2rem;
    z-index: 0;
}
.about-why-image img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats-item + .about-stats-item {
        border-left: none;
        padding-left: 0;
    }
    .about-stats-item:nth-child(odd) {
        border-right: 1px solid var(--glass-border);
        padding-right: 1rem;
    }
    .about-story-grid,
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-story-image-bg,
    .about-why-image-bg {
        display: none;
    }
}

@media (max-width: 600px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .about-stats-item:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }
    .about-stat-number {
        font-size: 2rem;
    }
}

/* ==========================================================
   COMPACT TWO-COLUMN FORM LAYOUT (MISSION 4 IMPROVISATION)
   ========================================================== */
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row-grid .captcha-container {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
}

.form-row-grid .captcha-options {
    gap: 0.5rem !important;
}

.form-row-grid .captcha-option {
    padding: 0.5rem 0.8rem !important;
    font-size: 1rem !important;
}

.form-row-grid .captcha-instruction {
    padding: 0.65rem !important;
    margin-bottom: 0.5rem !important;
}

/* Home contact form specific overrides for compact view */
.home-contact-form .form-row-grid .captcha-container {
    padding: 1rem !important;
}

@media (max-width: 640px) {
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================
   PREMIUM CONTACT SECTION IMPROVISATIONS & REDESIGN
   ========================================================== */
.contact-grid .section-label {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    background: rgba(202, 18, 18, 0.05) !important;
    border: 1px solid rgba(202, 18, 18, 0.25) !important;
    color: var(--primary) !important;
    padding: 0.4rem 1rem !important;
    border-radius: 100px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem !important;
    box-sizing: border-box !important;
}

/* Redesigned Contact Cards on the Left */
.contact-card-list {
    margin-top: 2.0rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.0rem !important;
}

.contact-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 1.2rem 1.5rem !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
}

.contact-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(202, 18, 18, 0.25) !important;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05) !important;
}

.contact-card-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    margin-bottom: 0 !important; /* Removed vertical spacing for horizontal layout */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.contact-card-icon--red {
    background: rgba(202, 18, 18, 0.08) !important;
    color: #ca1212 !important;
    border: 1px solid rgba(202, 18, 18, 0.15) !important;
}

.contact-card-icon--green {
    background: rgba(34, 197, 94, 0.08) !important;
    color: #16a34a !important;
    border: 1px solid rgba(34, 197, 94, 0.15) !important;
}

.contact-card-icon--blue {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #2563eb !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
}

.contact-card-icon--amber {
    background: rgba(245, 158, 11, 0.08) !important;
    color: #d97706 !important;
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) !important;
}

.contact-card-eyebrow {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 0.4rem !important;
}

.contact-card-title {
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
}

.contact-card-sub {
    font-size: 0.85rem !important;
    color: #64748b !important;
    margin-top: 0.4rem !important;
}

/* Captcha Styling Optimizations */
.captcha-container {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 0.9rem 1.1rem !important;
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

.captcha-label-row {
    margin-bottom: 0.6rem !important;
}

.captcha-label {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.btn-refresh-captcha {
    background: rgba(202, 18, 18, 0.05) !important;
    border: 1px solid rgba(202, 18, 18, 0.15) !important;
    color: var(--primary) !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 6px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
}

.captcha-instruction {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.45rem 0.75rem !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    color: #334155 !important;
    margin-bottom: 0.8rem !important;
    text-align: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01) !important;
}

.captcha-options {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.6rem !important;
}

.captcha-option {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 0.45rem 0.75rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: #475569 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.captcha-option:hover {
    border-color: rgba(202, 18, 18, 0.4) !important;
    color: var(--primary) !important;
    background: rgba(202, 18, 18, 0.02) !important;
}

.captcha-option.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(202, 18, 18, 0.2) !important;
}

@media (max-width: 768px) {
    .contact-card-list {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
}

/* ============================================================
   SERVICES HUB — listing grid with images
============================================================ */
.svc-hub-section { position: relative; }
.svc-hub-header { margin-bottom: 2.5rem; }
.svc-hub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.svc-hub-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.svc-hub-filter:hover,
.svc-hub-filter.is-active {
    border-color: var(--primary);
    color: #fff;
    background: rgba(202, 18, 18, 0.15);
}
.svc-hub-count {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.svc-hub-count strong { color: #fff; }
.svc-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.svc-hub-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(202, 18, 18, 0.35);
}
.svc-hub-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.svc-hub-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.svc-hub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.svc-hub-card:hover .svc-hub-card__media img {
    transform: scale(1.06);
}
.svc-hub-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 15, 0.92) 100%);
}
.svc-hub-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(10, 10, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}
.svc-hub-card__badge--red    { color: #f87171; }
.svc-hub-card__badge--amber  { color: #fbbf24; }
.svc-hub-card__badge--blue   { color: #60a5fa; }
.svc-hub-card__badge--green  { color: #4ade80; }
.svc-hub-card__badge--purple { color: #c084fc; }
.svc-hub-card__badge--cyan   { color: #22d3ee; }
.svc-hub-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}
.svc-hub-card__cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 700;
}
.svc-hub-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}
.svc-hub-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.svc-hub-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}
.svc-hub-card__cta i { transition: transform 0.25s ease; }
.svc-hub-card:hover .svc-hub-card__cta i { transform: translateX(4px); }
.svc-hub-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}
.svc-hub-empty i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
@media (max-width: 1100px) {
    .svc-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .svc-hub-grid { grid-template-columns: 1fr; }
    .svc-hub-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
}


/* ============================================================
   GLOBAL UNIFICATION: RED & CREAM BRANDING OVERRIDES
   ============================================================ */

/* 1. Global Red and Cream Badges */
html body .svc-hero-badge,
html body .page-badge,
html body .section-label,
html body .about-eyebrow,
html body .svc-eyebrow,
html body .hd-section-tag,
html body .hd-why-eyebrow,
html body .admin-section-header .page-badge {
    background: #fff5f5 !important;
    color: #ca1212 !important;
    border: 1px solid #fecaca !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.4rem 1.1rem !important;
    border-radius: 50px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.2 !important;
    width: fit-content !important;
}

/* 2. Global Red and Cream Icon Badges */
html body .svc-stat-icon,
html body .maint-card-icon,
html body .admin-feature-icon-wrapper,
html body .svc-why-icon,
html body .svc-bullet-icon,
html body .svc-feature-icon,
html body .svc-detail-process-icon,
html body .hd-build-icon,
html body .hd-why-point-icon,
html body .hd-dev-avail.yes,
html body .hd-dev-avail.soon,
html body .hd-detail-skill,
html body .maint-eco-card i,
html body .maint-pain-icon,
html body .services-page-card__icon {
    background: #fff5f5 !important;
    color: #ca1212 !important;
    border: 1px solid #fee2e2 !important;
}

/* 3. Stat Icon Color Helper Classes Override */
html body .svc-stat-icon--red,
html body .svc-stat-icon--blue,
html body .svc-stat-icon--green,
html body .svc-stat-icon--cyan,
html body .svc-stat-icon--purple,
html body .svc-stat-icon--amber,
html body .svc-why-icon--red,
html body .svc-why-icon--blue,
html body .svc-why-icon--green,
html body .svc-why-icon--purple,
html body .services-page-card__icon--red,
html body .services-page-card__icon--blue,
html body .services-page-card__icon--green,
html body .services-page-card__icon--cyan,
html body .services-page-card__icon--purple,
html body .services-page-card__icon--amber {
    background: #fff5f5 !important;
    color: #ca1212 !important;
    border: 1px solid #fee2e2 !important;
}

/* 4. Unified Card Hover Glows to Crimson Red */
html body .services-page-card:hover,
html body .service-card:hover,
html body .admin-feature-card:hover,
html body .maint-card:hover,
html body .maint-pain-card:hover,
html body .maint-eco-card:hover,
html body .svc-why-card:hover,
html body .svc-process-card:hover,
html body .svc-bullet-item:hover,
html body .hd-dev-card:hover,
html body .hd-why-point:hover,
html body .admin-faq-accordion .accordion-item:hover {
    border-color: rgba(202, 18, 18, 0.3) !important;
    box-shadow: 0 20px 40px rgba(202, 18, 18, 0.06), 0 5px 15px rgba(15, 23, 42, 0.03) !important;
}

/* 5. Timeline Step Badges & Process Numbers */
html body .svc-process-num,
html body .admin-process-num,
html body .maint-process-number,
html body .svc-next-step-badge,
html body .svc-detail-process-num {
    background: #fff5f5 !important;
    border-color: #ca1212 !important;
    color: #ca1212 !important;
    box-shadow: 0 4px 10px rgba(202, 18, 18, 0.1) !important;
}

/* 6. Unified Background Hero Glows & Bubbles */
html body .svc-glow-1,
html body .services-hero-glow,
html body .hero-glow-1,
html body .maint-hero::before {
    background: radial-gradient(circle, rgba(202, 18, 18, 0.06) 0%, transparent 70%) !important;
}
html body .svc-glow-2,
html body .hero-glow-2 {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, transparent 70%) !important;
}
html body .svc-bubble,
html body .hero-bubble {
    background: rgba(202, 18, 18, 0.05) !important;
}

/* 7. PREMIUM LIGHT CREAM FORM DESIGN OVERRIDES (NOT DARK) */
html body .svc-form-card,
html body .contact-page-form-panel,
html body .contact-form-panel,
html body .svc-inquiry-form-panel,
html body .about-hero-media-frame.services-hero-media-frame,
html body .svc-inquiry-testimonial {
    background: #fdfbf7 !important; /* Premium warm cream */
    border: 1px solid #f2eade !important;
    color: #1e293b !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(202, 18, 18, 0.04) !important;
}

/* Specific light details for the form header, labels, inputs */
html body .svc-form-card-title,
html body .contact-page-title,
html body .svc-form-service-tag,
html body .contact-page-sub,
html body .svc-form-footnote,
html body .form-footnote,
html body .svc-form-footnote i,
html body .form-footnote i,
html body .svc-inquiry-testimonial-text,
html body .svc-inquiry-testimonial-author {
    color: #334155 !important;
}

html body .svc-form-label,
html body .form-label {
    color: #1e293b !important;
    font-weight: 700 !important;
}

html body .svc-form-input,
html body .form-control {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02) !important;
    border-radius: 10px !important;
}

html body .svc-form-input::placeholder,
html body .form-control::placeholder {
    color: #94a3b8 !important;
}

html body .svc-form-input:focus,
html body .form-control:focus {
    border-color: #ca1212 !important;
    box-shadow: 0 0 0 3px rgba(202, 18, 18, 0.12) !important;
    outline: none !important;
}

html body .svc-form-submit,
html body .form-submit-btn,
html body .about-btn-primary {
    background: #ca1212 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(202, 18, 18, 0.2) !important;
    transition: all 0.3s ease !important;
}

html body .svc-form-submit:hover,
html body .form-submit-btn:hover,
html body .about-btn-primary:hover {
    background: #b91c1c !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(202, 18, 18, 0.3) !important;
}




/* Force hero section gradients to warm Red & Cream brand colors */
html body [class$="-hero"],
html body [class*="-hero-grid"],
html body .svc-hero,
html body .services-hero-section,
html body .blog-hero-section,
html body .pricing-hero-section,
html body .about-hero-section,
html body .portfolio-hero-section,
html body .contact-hero-section,
html body .maint-hero,
html body .admin-hero,
html body .upg-hero,
html body .bug-hero,
html body .em-hero,
html body .resc-hero,
html body .mig-hero,
html body .hd-hero,
html body .rv-hero,
html body .sec-hero,
html body .api-hero,
html body .crm-hero,
html body .dev-hero,
html body .saas-hero,
html body .ecom-hero,
html body .perf-hero,
html body .scal-hero,
html body .db-hero,
html body .deploy-hero {
    background: linear-gradient(145deg, #fff5f5 0%, #fffbfb 50%, #ffffff 100%) !important;
}

/* Force hero badge styling to Red & Cream */
html body [class*="-hero-badge"],
html body [class$="-hero-badge"],
html body .upg-hero-badge,
html body .hd-section-tag,
html body .page-badge,
html body .about-eyebrow {
    background: #fff5f5 !important;
    color: #ca1212 !important;
    border: 1px solid #fecaca !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.4rem 1.1rem !important;
    border-radius: 50px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.2 !important;
}

/* Force text gradient headlines to brand primary red */
html body .upg-hero-h1 span,
html body .hd-hero-h1 span,
html body [class$="-hero-title"] span,
html body [class*="-hero-title"] span,
html body .text-gradient {
    background: linear-gradient(120deg, #ca1212, #6b1212) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Force call-to-action buttons to brand primary red */
html body [class*="-btn-primary"],
html body [class*="--btn-primary"],
html body [class$="-btn-primary"],
html body .about-btn-primary,
html body .upg-btn-primary,
html body .hd-btn-primary,
html body .bug-btn-primary,
html body .em-btn-primary,
html body .resc-btn-primary,
html body .mig-btn-primary,
html body .rv-btn-primary,
html body .sec-btn-primary {
    background: #ca1212 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(202, 18, 18, 0.25) !important;
    transition: all 0.3s ease !important;
}

html body [class*="-btn-primary"]:hover,
html body [class*="--btn-primary"]:hover,
html body [class$="-btn-primary"]:hover,
html body .upg-btn-primary:hover,
html body .hd-btn-primary:hover,
html body .bug-btn-primary:hover,
html body .em-btn-primary:hover,
html body .resc-btn-primary:hover,
html body .mig-btn-primary:hover,
html body .rv-btn-primary:hover,
html body .sec-btn-primary:hover {
    background: #b91c1c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(202, 18, 18, 0.35) !important;
}

html body [class*="-btn-ghost"],
html body [class*="--btn-ghost"],
html body [class$="-btn-ghost"],
html body .upg-btn-ghost,
html body .hd-btn-ghost,
html body .bug-btn-ghost,
html body .em-btn-ghost,
html body .resc-btn-ghost,
html body .mig-btn-ghost,
html body .rv-btn-ghost,
html body .sec-btn-ghost,
html body .about-btn-secondary {
    background: transparent !important;
    color: #ca1212 !important;
    border: 1px solid rgba(202, 18, 18, 0.3) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

html body [class*="-btn-ghost"]:hover,
html body [class*="--btn-ghost"]:hover,
html body [class$="-btn-ghost"]:hover,
html body .upg-btn-ghost:hover,
html body .hd-btn-ghost:hover,
html body .bug-btn-ghost:hover,
html body .em-btn-ghost:hover,
html body .resc-btn-ghost:hover,
html body .mig-btn-ghost:hover,
html body .rv-btn-ghost:hover,
html body .sec-btn-ghost:hover {
    background: #fff5f5 !important;
    border-color: #ca1212 !important;
    color: #ca1212 !important;
}



