/* 
    Premium Luxury Design for IQTechway Digital Marketing Page
    Colors used from index.css:
    --c1: #d8374a (Brand Red) - High End Modern Luxury Style
*/

:root {
    --brand-red: #d8374a;
    --brand-gold: #f0c543;
    --luxury-white: #fdfdfd;
    --luxury-dark: #0a0a0a;
    --glass-opacity: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --charcoal: #1a1a1a;
    --section-padding: 100px;
}

/* Base Body Improvements */
body {
    background-color: var(--luxury-white);
    color: var(--charcoal);
    font-family: 'Assistant-Regular', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'jost-regular', sans-serif;
    letter-spacing: -0.02em;
}

/* Luxury Hero Section */
.lux-hero {
    position: relative;
    padding: 50px 0 100px 0;
    /* Reduced top padding further */
    min-height: auto;
    /* Changed from 80vh for more compactness */
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lux-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 55, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(216, 55, 74, 0.05);
    border: 1px solid rgba(216, 55, 74, 0.1);
    border-radius: 50px;
    color: var(--brand-red);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.lux-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.luxury-gradient-text {
    background: linear-gradient(135deg, var(--brand-red) 0%, #7e1724 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Luxury Buttons */
.btn-lux {
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    background: var(--brand-red);
    color: #fff !important;
    border-radius: 12px;
    /* Slightly softer for luxury modern look */
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(216, 55, 74, 0.2);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-lux:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(216, 55, 74, 0.25);
    background: #b52536;
}

.btn-lux i {
    margin-left: 12px;
    font-size: 1.2rem;
}

/* Luxury Cards */
.lux-card {
    background: #fff;
    border-radius: 0;
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.lux-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(216, 55, 74, 0.1);
}

.lux-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(216, 55, 74, 0.06);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lux-card:hover .lux-icon-box {
    background: var(--brand-red);
    color: #fff;
    transform: scale(1.1);
}

/* Problem Section Highlight */
.broken-stat {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: rgba(216, 55, 74, 0.03);
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 0;
    user-select: none;
}

/* Section Spacing - Responsive */
.py-lux {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

/* Responsive Padding Overrides */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
}

/* Gradient Background Section */
.bg-subtle-gradient {
    background: radial-gradient(circle at 10% 20%, rgba(216, 55, 74, 0.02) 0%, transparent 100%),
        radial-gradient(circle at 90% 80%, rgba(240, 197, 67, 0.02) 0%, transparent 100%);
}

.audit-container {
    background: var(--charcoal);
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.audit-form-bg {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem);
    color: var(--charcoal);
}

.lux-input {
    border: 1.5px solid #ececec;
    border-radius: 12px;
    /* Smoother curve */
    padding: 18px 24px;
    background: #fbfbfb;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.95rem;
    color: var(--charcoal);
}

.lux-input::placeholder {
    color: #bbb !important;
    font-weight: 400;
}

.lux-input:focus {
    box-shadow: 0 15px 35px rgba(216, 55, 74, 0.08);
    border-color: var(--brand-red);
    background: #fff;
    outline: none;
    transform: translateY(-2px);
}

.audit-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.audit-trust-badge i {
    color: var(--brand-red);
    font-size: 1.1rem;
}

/* Image Wrappers */
.lux-visual-wrapper {
    position: relative;
    z-index: 5;
}

.lux-img-wrapper {
    position: relative;
    padding: 10px;
    z-index: 2;
}

.lux-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(216, 55, 74, 0.1);
    z-index: -1;
    transform: translate(20px, 20px);
}

.lux-badge-overlay {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 15;
    border-left: 4px solid var(--brand-red);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}


/* Scrolling Track - Responsive */
.scrolling-text-container {
    overflow: hidden;
    white-space: nowrap;
    padding: clamp(15px, 3vw, 25px) 0;
    background: #fdfdfd;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.scrolling-text {
    display: inline-block;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    animation: scroll 40s linear infinite;
    user-select: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Luxury Service Cards */
.lux-service-card {
    background: #fff;
    padding: 60px 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.lux-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--brand-red);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0.02;
}

.lux-service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.07);
    border-color: rgba(216, 55, 74, 0.1);
}

.lux-service-card:hover::after {
    height: 100%;
}

.ser-num {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    transition: all 0.5s ease;
}

.lux-service-card:hover .ser-num {
    color: rgba(216, 55, 74, 0.05);
    transform: translateY(-10px);
}

.ser-icon {
    width: 70px;
    height: 70px;
    background: #fcfcfc;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
}

.lux-service-card:hover .ser-icon {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 15px 40px rgba(216, 55, 74, 0.2);
}

.ser-title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.ser-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.ser-link {
    font-weight: 700;
    color: var(--brand-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ser-link i {
    transition: transform 0.3s ease;
}

.ser-link:hover i {
    transform: translateX(8px);
}

/* Animations Base Fixes - Removed pointer-events: none to prevent interaction bugs */
[data-aos] {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 
   Advanced Mobile & Tablet Responsiveness 
--------------------------------------------- */

@media (max-width: 1200px) {
    .lux-badge-overlay {
        left: 0;
        bottom: 5%;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .lux-hero {
        padding: 40px 0 80px 0;
        min-height: auto;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .lux-visual-wrapper {
        margin-top: 40px;
        overflow: visible;
    }

    .lux-badge-overlay {
        position: relative;
        left: 0;
        bottom: 0;
        margin: -20px auto 0;
        display: inline-block;
        text-align: left;
        z-index: 15;
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }

    .lux-img-wrapper::before {
        transform: translate(15px, 15px);
    }

    .lux-hero::before {
        width: 300px;
        height: 300px;
    }

    .audit-container {
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 767px) {
    .lux-hero {
        padding: 60px 0;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .lux-card {
        padding: 35px 25px;
    }

    .btn-lux {
        padding: 15px 30px;
        width: 100%;
    }

    .audit-form-bg {
        padding: 40px 25px;
    }

    .factor-card {
        padding: 30px 20px;
    }

    .broken-stat {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .lux-title {
        font-size: 2.2rem;
    }

    .scrolling-text {
        font-size: 2.5rem;
    }

    .lux-icon-box {
        margin-bottom: 20px;
    }

    .lux-badge-overlay {
        width: 100%;
        border-radius: 0;
    }

    .footer-lux {
        text-align: center !important;
    }
}

/* Typography Consistency */
.ls-1 {
    letter-spacing: 0.05em;
}

.ls-2 {
    letter-spacing: 0.1em;
}

.ls-3 {
    letter-spacing: 0.2em;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(216, 55, 74, 0.06);
    color: var(--brand-red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* Contact/Footer Consistency */
.contact-info a:hover {
    color: var(--brand-red) !important;
}

.whatsapp-fixed {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-fixed:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4) !important;
}

/* Luxury Problem Cards */
.lux-problem-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lux-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--brand-red);
    transition: all 0.5s ease;
}

.lux-problem-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
    border-color: rgba(216, 55, 74, 0.1);
}

.lux-problem-card:hover::before {
    height: 100%;
}

.lux-problem-card i {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: #fbfbfb;
    color: #d8374a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.6rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 5px;
    font-family: 'remixicon' !important;
    font-style: normal;
    position: relative;
    z-index: 5;
}

.lux-problem-card:hover i {
    background: #d8374a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(216, 55, 74, 0.2);
}

.lux-problem-title {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

.lux-problem-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Strategic Image Transforms */
.rotated-right {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rotated-right:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.lux-visual-wrapper {
    position: relative;
    z-index: 5;
    padding: 20px;
}

.scale-hover img {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scale-hover:hover img {
    transform: scale(1.03);
}

/* Luxury Connective Path */
.connective-row {
    position: relative;
}

.connective-path {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(216, 55, 74, 0.1), transparent);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .connective-path {
        display: block;
    }
}

.bg-light-section {
    background: #fcfcfc;
    position: relative;
}

.bg-light-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(216, 55, 74, 0.01) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.lux-step-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    z-index: 1;
}


.lux-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-color: rgba(216, 55, 74, 0.1);
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(216, 55, 74, 0.08);
    /* Sophisticated subtle red */
    position: absolute;
    top: 30px;
    right: 40px;
    transition: all 0.5s ease;
}

.lux-step-card:hover .step-num {
    color: var(--brand-red);
    transform: translateY(-5px) scale(1.1);
    opacity: 0.15;
}

.step-title {
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    position: relative;
    z-index: 2;
}

.step-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.step-indicator {
    width: 30px;
    height: 3px;
    background: var(--brand-red);
    margin-bottom: 25px;
    transition: width 0.5s ease;
}

.lux-step-card:hover .step-indicator {
    width: 60px;
}




/* Premium Hero Design inspired by Image */
.lux-hero.premium-hero {
    background: linear-gradient(135deg, #063d60 0%, #0c727a 60%, #178f5a 100%);
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.lux-hero.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    /* Subtle texture */
    opacity: 0.1;
    pointer-events: none;
}

.premium-hero .hero-tag {
    background: transparent;
    border: none;
    color: #4fc3f7;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 20px;
    padding: 0;
}

.premium-hero .lux-title {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 850;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.premium-hero .luxury-gradient-text {
    background: none;
    color: #fff;
}

.premium-hero .hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 50px;
}

.premium-hero .hero-sub a {
    color: #fff;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

/* New Buttons */
.btn-green-lux {
    background: #8bc34a;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(139, 195, 74, 0.3);
}

.btn-green-lux:hover {
    background: #7cb342;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 195, 74, 0.4);
    color: #fff;
}

.btn-blue-lux {
    background: #4fc3f7;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.3);
}

.btn-blue-lux:hover {
    background: #29b6f6;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.4);
    color: #fff;
}

/* Trust Section */
.trust-row {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
}

.trust-item:last-child {
    border-right: none;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-val {
    font-size: 1rem;
    font-weight: 800;
}

.google-trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

/* Right Side Image Glow */
.visual-glow-wrapper {
    position: relative;
}

.visual-glow-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 143, 90, 0.4) 0%, transparent 70%);
    z-index: 1;
}

.visual-glow-wrapper img {
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
}

@media (max-width: 991px) {
    .lux-hero.premium-hero {
        text-align: center;
        padding: 80px 0;
    }

    .hero-sub {
        margin: 0 auto 40px;
    }

    .trust-row {
        justify-content: center;
    }
}/* Pure CSS Premium Hero (No Images, RGB Colors) */
.lux-hero.premium-rgb {
    background: linear-gradient(135deg, rgb(15, 15, 15) 0%, rgb(35, 10, 12) 50%, rgb(55, 15, 18) 100%);
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255);
}

/* Decorative abstract shapes instead of background image */
.premium-rgb::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216, 55, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.premium-rgb .hero-tag {
    background: rgba(216, 55, 74, 0.1);
    border: 1px solid rgba(216, 55, 74, 0.2);
    color: rgb(216, 55, 74);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}

.premium-rgb .lux-title {
    color: rgb(255, 255, 255);
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 850;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.premium-rgb .hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 50px;
}

/* RGB Buttons */
.btn-primary-rgb {
    background: rgb(216, 55, 74);
    color: rgb(255, 255, 255);
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(216, 55, 74, 0.3);
}

.btn-primary-rgb:hover {
    background: rgb(180, 45, 60);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(216, 55, 74, 0.4);
    color: rgb(255, 255, 255);
}

.btn-secondary-rgb {
    background: rgba(255, 255, 255, 0.05);
    color: rgb(255, 255, 255);
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-rgb:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgb(255, 255, 255);
    transform: translateY(-3px);
    color: rgb(255, 255, 255);
}

/* Trust Indicator Grid */
.trust-indicators-rgb {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trust-card-rgb {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-card-rgb .label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-card-rgb .value {
    font-size: 1rem;
    font-weight: 700;
}

.trust-card-rgb .stars-rgb {
    color: rgb(255, 193, 7);
}

/* Visual Placeholder (Pure CSS instead of image) */
.visual-css-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, rgb(216, 55, 74), rgb(15, 15, 15));
    border-radius: 50%;
    filter: blur(2px);
    box-shadow: 0 0 100px rgba(216, 55, 74, 0.2);
    animation: pulse-rgb 6s ease-in-out infinite;
}

@keyframes pulse-rgb {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.floating-stats-rgb {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}
/* Exact Hero Implementation inspired by Reference Image */
.hero-exact-wrap {
    position: relative;
    background: #0a0a0a;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 100px 0;
    isolation: isolate; /* Contain internal z-index stack — prevents fighting the navbar */
}

.hero-exact-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.hero-exact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    opacity: 0.85;
}

/* Subtle glow matching the image bottom right */
.hero-exact-bg::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(216, 55, 74, 0.25) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-exact-content {
    position: relative;
    z-index: 10;
}

.exact-tag {
    color: var(--brand-red);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exact-title {
    font-size: clamp(2.4rem, 5.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.exact-sub {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 50px;
}

/* Buttons from Image */
.exact-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 70px;
}

.btn-red-exact {
    background: #d8374a;
    color: #fff;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: none;
    font-size: 1.15rem;
    border: none;
    box-shadow: 0 10px 30px rgba(216, 55, 74, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-red-exact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(216, 55, 74, 0.4);
    background: #c2293b;
    color: #fff;
}

.btn-blue-exact {
    background: #4fc3f7;
    color: #fff;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: none;
    font-size: 1.15rem;
    border: none;
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.btn-blue-exact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(79, 195, 247, 0.4);
    background: #29b6f6;
    color: #fff;
}

/* Awards Section exactly like image */
.exact-awards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 0;
}

.award-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.award-icon {
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.9;
}

.award-caption {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.award-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.google-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.google-label {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.stars-row {
    color: #ffc107;
    font-size: 0.9rem;
}

.reviews-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-exact-bg {
        width: 100%;
        opacity: 0.4;
    }
    .hero-exact-bg img {
        mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, transparent 100%);
    }
    .exact-title {
        font-size: 3rem;
        text-align: center;
    }
    .exact-sub {
        text-align: center;
        margin: 0 auto 40px;
    }
    .exact-btn-group {
        justify-content: center;
    }
    .exact-awards-row {
        justify-items: center;
        text-align: center;
    }
    .award-item {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .btn-red-exact, .btn-blue-exact {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .exact-title {
        font-size: 2.4rem;
    }
    .hero-exact-wrap {
        padding: 60px 0;
    }
}
/* Missing Animations */
.animate-pulse {
    animation: pulsate 2s infinite ease-in-out;
}

@keyframes pulsate {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(1); }
}

/* Ensure danger text on dark is readable */
.text-danger {
    color: #ff5252 !important; /* Brighter red for accessibility on dark */
}
/* Brand Highlights */
.brand-red-text {
    color: var(--brand-red) !important;
}
/* Problem Diagnostic Section from Image */
.diagnostic-wrap {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.diagnostic-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.diagnostic-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.problem-row-2 {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.problem-row-2 .lux-problem-card {
    width: calc(50% - 12.5px);
}

.lux-problem-card.v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative; /* Anchor for absolute visual */
    overflow: hidden; /* Contain the image */
}

.lux-problem-card.v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.problem-icon-x {
    width: 38px;
    height: 38px;
    background: #d8374a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.2rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 5;
}

.problem-title-v2 {
    font-size: 1.5rem;
    font-weight: 850;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 5;
    letter-spacing: -0.5px;
}

.problem-text-v2 {
    font-size: 1rem;
    color: #444; 
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
    max-width: 85%; /* Keep text away from the absolute illustration */
}

.problem-visual {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 155px;
    height: 135px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65; /* Increased base visibility as requested */
    filter: saturate(1.2) brightness(1.1); /* Pop colors and brightness */
    mask-image: radial-gradient(circle at bottom right, black 50%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at bottom right, black 50%, transparent 100%);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.problem-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: translate(15px, 15px); 
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lux-problem-card.v2:hover .problem-visual {
    opacity: 0.95;
    filter: saturate(1.3) brightness(1.2);
}

.lux-problem-card.v2:hover .problem-img {
    transform: translate(0, 0) scale(1.08);
}

.section-tag-red {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(216, 55, 74, 0.08);
    color: var(--brand-red);
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.systems-flow-wrapper {
    max-width: 1000px;
    margin: 60px auto;
}

.flow-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.flow-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #1a1a1a !important; /* Force dark text for links */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1;
    min-width: 0;
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(216, 55, 74, 0.08);
    border-color: rgba(216, 55, 74, 0.1);
}

.flow-card span {
    white-space: nowrap;
    font-size: 0.95rem;
}

.card-icon-red {
    color: var(--brand-red);
    font-size: 1.4rem;
}

.flow-arrow-right {
    color: var(--brand-red);
    font-size: 1.2rem;
    opacity: 0.5;
}

.flow-connector-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--brand-red);
    margin: 30px 0;
}

.connector-line-v {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(216, 55, 74, 0.1), rgba(216, 55, 74, 1));
}

.flow-connector-down i {
    font-size: 1.8rem;
    margin-top: -5px;
}

.flow-row-center {
    display: flex;
    justify-content: center;
}

.wide-card {
    padding: 30px 60px;
    max-width: 400px;
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(216, 55, 74, 0.1);
}

.funnel-icon-red {
    color: var(--brand-red);
}

.flow-row-bottom {
    display: flex;
    justify-content: center;
}

.revenue-pill {
    padding: 15px 100px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(216, 55, 74, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments for Flow */
@media (max-width: 991px) {
    .flow-row-top {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .flow-card {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .revenue-pill {
        padding: 15px 60px;
        font-size: 1.2rem;
    }
}

/* Restoring Diagnostic Footer Styles */
.diagnostic-footer {
    margin-top: 60px;
    font-size: 1.15rem;
    color: #555;
    font-weight: 600;
}

.system-link {
    color: #d8374a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.system-link:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .problem-row-2 { flex-direction: column; }
    .problem-row-2 .lux-problem-card { width: 100%; }
}

@media (max-width: 768px) {
    .problem-grid { grid-template-columns: 1fr; }
    .diagnostic-title { font-size: 1.8rem; }
}

/* Services Mastery Redesign Styles */
.service-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px 45px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-header-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon-v2 {
    width: 65px;
    height: 65px;
    border: 2px solid var(--brand-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-red);
    flex-shrink: 0;
}

.service-title-v2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.25;
}

.service-description-v2 {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
}

.btn-service-learn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--brand-red);
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(216, 55, 74, 0.2);
}

.btn-service-learn:hover {
    background: #b52536;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(216, 55, 74, 0.3);
}

@media (max-width: 576px) {
    .service-card-v2 {
        padding: 35px 25px;
    }
    .service-title-v2 {
        font-size: 1.3rem;
    }
    .service-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Proven System Redesign Styles */
.proven-system-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 5;
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    background: #d8374a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(216, 55, 74, 0.3);
    transition: all 0.4s ease;
}

.system-step:hover .step-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(216, 55, 74, 0.4);
}

.step-num-v3 {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #d8374a;
    margin-bottom: 5px;
}

.step-title-v3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-text-v3 {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -30px;
    width: 60px;
    z-index: 1;
}

.dotted-arrow {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #d8374a 40%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 8px 2px;
    background-repeat: repeat-x;
    position: relative;
}

.dotted-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #d8374a;
    border-right: 2px solid #d8374a;
    transform: rotate(45deg);
}

/* Sphere Backgrounds */
.sphere-bg {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(0,0,0,0.05));
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.05), 5px 5px 20px rgba(0,0,0,0.02);
    z-index: 0;
}

.sphere-bg.s1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -150px;
    opacity: 0.4;
}

.sphere-bg.s2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 10%;
    opacity: 0.3;
}

.why-choose-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(216, 55, 74, 0.2);
    color: var(--brand-red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.difference-grid-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.diff-flank {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flank-left {
    align-items: flex-end;
    text-align: right;
}

.flank-right {
    align-items: flex-start;
    text-align: left;
}

.diff-card-v4 {
    background: #fff;
    padding: 15px 25px;
    border-radius: 60px; /* Pill shape */
    box-shadow: 0 10px 35px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    max-width: 380px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.flank-left .diff-card-v4 {
    flex-direction: row;
}

.flank-right .diff-card-v4 {
    flex-direction: row;
}

.diff-card-v4:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(216, 55, 74, 0.1);
}

.diff-icon-v4 {
    width: 60px;
    height: 60px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.diff-content-v4 h6 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 3px;
    color: #1a1a1a;
}

.diff-content-v4 p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.diff-center-anchor {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anchor-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.anchor-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(216, 55, 74, 0.1) 0%, rgba(216, 55, 74, 0) 70%);
    z-index: 1;
}

/* Strategic Revenue Audit Redesign Styles */
.bg-subtle-light {
    background-color: #fcfcfc;
}

.discovery-list-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.01);
}

.trust-markers-grid .small {
    font-size: 0.95rem;
    line-height: 1.2;
}

.audit-card-v5 {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.form-floating-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.form-floating-custom i {
    position: absolute;
    left: 20px;
    color: #999;
    font-size: 1.2rem;
}

.form-control-v5 {
    width: 100%;
    padding: 15px 15px 15px 55px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control-v5:focus {
    background: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(216, 55, 74, 0.05);
    outline: none;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-2px) scale(1.02);
}

/* FAQ Redesign Styles */
.faq-card-main {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search-box i {
    position: absolute;
    left: 20px;
    color: #999;
}

.form-control-v6 {
    padding: 18px 20px 18px 55px;
    border: 1px dashed #ddd;
    border-radius: 15px;
    font-size: 1rem;
    color: #555;
    background: #fafafa;
}

.chat-interaction-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.chat-anchor-red {
    width: 90px;
    height: 90px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 20px 45px rgba(216, 55, 74, 0.35);
    transition: all 0.4s ease;
}

.chat-anchor-red:hover {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
    box-shadow: 0 25px 55px rgba(216, 55, 74, 0.45);
}

/* Performance Difference Redesign */
.diff-pill-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
}

.diff-pill-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(216, 55, 74, 0.08);
    border-color: rgba(216, 55, 74, 0.1);
}

.dp-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 20px rgba(216, 55, 74, 0.2);
}

.diff-visual-anchor {
    position: relative;
    padding: 40px;
}

.diff-visual-anchor img {
    border-radius: 50%;
    max-width: 320px;
    border: 8px solid #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.outer-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    border: 1px dashed rgba(216, 55, 74, 0.2);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
}

.inner-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(216, 55, 74, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Connectors Logic */
.dp-connector-left, .dp-connector-left-alt, .dp-connector-right, .dp-connector-right-alt {
    position: absolute;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(216, 55, 74, 0.2) 0, rgba(216, 55, 74, 0.2) 3px, transparent 3px, transparent 6px);
    z-index: -1;
}

/* Specific Angles to match Mockup */
.diff-stack-left .diff-pill-card:nth-child(1) .dp-connector-left { width: 120px; right: -100px; top: 60%; transform: rotate(15deg); }
.diff-stack-left .diff-pill-card:nth-child(2) .dp-connector-left-alt { width: 90px; right: -70px; top: 50%; height: 1px; background: rgba(216, 55, 74, 0.2); position: absolute; z-index: -1; }
.diff-stack-left .diff-pill-card:nth-child(3) .dp-connector-left { width: 120px; right: -100px; top: 40%; transform: rotate(-15deg); }

.diff-stack-right .diff-pill-card:nth-child(1) .dp-connector-right { width: 120px; left: -100px; top: 60%; transform: rotate(-15deg); }
.diff-stack-right .diff-pill-card:nth-child(2) .dp-connector-right-alt { width: 90px; left: -70px; top: 50%; height: 1px; background: rgba(216, 55, 74, 0.2); position: absolute; z-index: -1; }
.diff-stack-right .diff-pill-card:nth-child(3) .dp-connector-right { width: 120px; left: -100px; top: 40%; transform: rotate(15deg); }

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS (FIX ALL)
============================================= */

@media (max-width: 1200px) {
    .outer-glow-ring { width: 340px; height: 340px; }
    .inner-glow-ring { width: 300px; height: 300px; }
    [class*="dp-connector-"] { display: none !important; }
}

@media (max-width: 991px) {
    /* Hero Section */
    .hero-exact-wrap { padding: 80px 0; min-height: auto; text-align: center; }
    .exact-title { font-size: 2.8rem; text-align: center; }
    .exact-sub { margin: 0 auto 40px; text-align: center; }
    .exact-btn-group { justify-content: center; }
    .hero-exact-bg { opacity: 0.3; }

    /* Systems Flow */
    .systems-flow-wrap { flex-direction: column; gap: 30px; }
    .flow-connector-v4 { display: none; }
    .flow-item-v4 { max-width: 100%; border: 1px solid rgba(0,0,0,0.05); }

    /* Services Style */
    .services-grid-redesign { grid-template-columns: 1fr; gap: 20px; }

    /* Proven System */
    .proven-steps-wrap { flex-direction: column; gap: 40px; padding: 20px 0; }
    .step-connector-v5 { display: none; }
    .step-item-v5 { max-width: 100%; text-align: left; padding: 30px; border: 1px solid rgba(0,0,0,0.05); }

    /* Performance Difference */
    .diff-stack-left, .diff-stack-right { display: flex; flex-direction: column; gap: 20px; margin: 20px 0; }
    .diff-pill-card { flex-direction: column; padding: 25px; text-align: center; border-radius: 25px; min-width: auto; }
    .dp-content { text-align: center !important; padding: 0 !important; margin-top: 15px; order: 2; }
    .dp-icon { order: 1; }
    .diff-visual-anchor { margin: 40px auto; padding: 20px; }
    .diff-visual-anchor img { max-width: 200px; }
    .outer-glow-ring, .inner-glow-ring { display: none !important; }

    /* Audit Form */
    .audit-card-v5 { padding: 30px 20px; border-radius: 20px; margin-top: 40px; }
    
    /* FAQ Section */
    .chat-interaction-wrapper { margin-bottom: 40px; width: 100%; justify-content: center; }
    .floating-faq-item { display: none !important; }
    .faq-card-main { padding: 25px 20px; border-radius: 20px; }
    .faq-search-box .form-control-v6 { padding: 15px 15px 15px 45px; }

    /* Final CTA */
    .cta-banner-v3 { padding: 40px 20px; border-radius: 20px; }
    .display-3 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .exact-title { font-size: 2.2rem; padding: 0 10px; }
    .exact-tag { font-size: 0.9rem; }
    .exact-awards-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 15px; padding: 0 15px; }
    .exact-awards-row .award-item:last-child { grid-column: span 2; justify-self: center; max-width: 220px; }
    .award-item { align-items: center; text-align: center; }
    
    .py-lux { padding-top: 50px; padding-bottom: 50px; }
    
    .btn-red-exact { width: 100%; justify-content: center; padding: 15px 25px; font-size: 1rem; }
    
    .display-4, .display-3 { font-size: 2rem !important; }
    
    .flow-item-v4, .step-item-v5 { border-radius: 15px; }
}

@media (max-width: 480px) {
    .exact-awards-row { grid-template-columns: repeat(2, 1fr); }
    .hero-exact-wrap { padding-top: 40px; }
    .step-item-v5 { padding: 20px; }
    .why-choose-tag { font-size: 0.7rem; }
}










/* ======================================================
   Luxury Footer v2 — Premium IQTechway Design
   ====================================================== */

.lux-footer-v2 {
    position: relative;
    background: #f7f8fc;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.lux-footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.lux-footer-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(216,55,74,0.04) 0%, transparent 70%);
    bottom: -150px; right: -100px;
}
.lux-footer-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(216,55,74,0.025) 0%, transparent 70%);
    top: 30px; left: -80px;
}
.lux-footer-brand-bar {
    position: relative; z-index: 2;
    padding: 48px 0 32px;
}
.lux-footer-brand-inner {
    display: flex;
    justify-content: flex-start;
}
.lux-footer-logo-wrap {
    display: flex; align-items: center;
    gap: 24px; flex-wrap: wrap;
}
.lux-footer-logo-img {
    height: 64px; width: auto; object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(216,55,74,0.12));
}
.lux-footer-divider {
    width: 1.5px; height: 52px;
    background: linear-gradient(180deg, transparent, rgba(216,55,74,0.35), transparent);
    flex-shrink: 0;
}
.lux-footer-tagline-wrap {
    display: flex; flex-direction: column; gap: 4px;
}
.lux-footer-tagline-main {
    font-size: 1.15rem; font-weight: 700;
    color: #1a1a1a; letter-spacing: -0.02em; line-height: 1.3;
}
.lux-footer-tagline-sub {
    font-size: 0.85rem; color: #888;
    font-weight: 500; letter-spacing: 0.02em;
}
.lux-footer-cards-wrap {
    position: relative; z-index: 2; padding: 0 0 36px;
}
.lux-footer-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lux-footer-card {
    display: flex; align-items: center; gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px; padding: 22px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #1a1a1a; cursor: default;
}
.lux-footer-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #d8374a, #f06270);
    border-radius: 16px 16px 0 0; opacity: 0.85;
}
a.lux-footer-card { cursor: pointer; }
a.lux-footer-card:hover, .lux-footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(216,55,74,0.1);
    border-color: rgba(216,55,74,0.18);
}
.lux-fc-icon-wrap {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(216,55,74,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.35s ease;
}
.lux-fc-icon-wrap i { font-size: 1.25rem; color: #d8374a; }
a.lux-footer-card:hover .lux-fc-icon-wrap { background: #d8374a; }
a.lux-footer-card:hover .lux-fc-icon-wrap i { color: #fff; }
.lux-fc-content { display: flex; flex-direction: column; gap: 2px; }
.lux-fc-label {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px; color: #aaa;
}
.lux-fc-value { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; line-height: 1.4; }
.lux-footer-social-row { position: relative; z-index: 2; padding: 4px 0 8px; }
.lux-footer-socials {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 18px;
}
.lux-social-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: #d8374a; color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(216,55,74,0.22);
}
.lux-social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 14px 32px rgba(216,55,74,0.35);
    background: #b52536;
}
.lux-footer-trust-text { font-size: 0.85rem; color: #aaa; margin: 0; letter-spacing: 0.01em; }
.lux-footer-bottom {
    position: relative; z-index: 2;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 20px 0; margin-top: 16px;
}
.lux-footer-bottom-inner {
    display: flex; align-items: center;
    justify-content: center; gap: 12px; flex-wrap: wrap;
}
.lux-footer-copy { font-size: 0.85rem; color: #888; font-weight: 500; }
.lux-footer-sep { color: #ccc; font-size: 0.85rem; }
.lux-footer-link {
    font-size: 0.85rem; color: #888; text-decoration: none;
    font-weight: 500; transition: color 0.2s ease;
}
.lux-footer-link:hover { color: #d8374a; }
.lux-footer-link-red { color: #d8374a !important; }
.lux-footer-link-red:hover { color: #b52536 !important; }

@media (max-width: 768px) {
    .lux-footer-cards-grid { grid-template-columns: 1fr; gap: 12px; max-width: 420px; margin: 0 auto; }
    .lux-footer-logo-wrap { flex-direction: column; align-items: center; gap: 16px; }
    .lux-footer-divider { width: 50px; height: 1.5px; }
    .lux-footer-brand-inner { justify-content: center; }
    .lux-footer-tagline-wrap { align-items: center; text-align: center; }
}
@media (max-width: 576px) {
    .lux-footer-tagline-main { font-size: 1rem; }
    .lux-footer-logo-img { height: 50px; }
    .lux-social-btn { width: 42px; height: 42px; font-size: 1rem; }
}
