/* ============================================ */
/* PROPSHOP IMMERSIVE EXHIBITION SOLUTIONS CSS */
/* ============================================ */

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #cb2024 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #cb2024;
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subhead {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight {
    color: #cb2024;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #cb2024, #ff4444);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(203,32,36,0.3);
    gap: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #cb2024;
    background: rgba(203,32,36,0.1);
    gap: 16px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cb2024;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-link:hover {
    gap: 15px;
}

/* ============================================ */
/* SECTION 1: HERO - Responsive Background */
/* ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(203,32,36,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #cb2024;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-badge span {
    font-size: 13px;
    color: #e0e0e0;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    font-size: 18px;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.hero-stats-card {
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(203,32,36,0.3);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #cb2024;
}

.hero-stat-label {
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: #cb2024;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.hero-scroll span {
    font-size: 12px;
    color: #a0a0a0;
    letter-spacing: 2px;
}

/* ============================================
   WHY IMMERSIVE DISPLAYS SECTION 
   ============================================ */

.why-immersive {
    position: relative;
    background: linear-gradient(165deg, #07070c 0%, #0c0c14 50%, #050508 100%);
    padding: 110px 0 130px;
    overflow: hidden;
}

/* Ambient background glow */
.why-immersive::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-immersive::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Header - Clean, no tag */
.section-header1 {
    text-align: center;
    margin-bottom: 70px;
}

.section-header1 h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(120deg, #cb2024, #ff6b5c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-description1 {
    max-width: 800px;
    margin: 0 auto 24px;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #b8b8d0;
    font-weight: 400;
}

.insight-badge1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.insight-badge1 span {
    background: rgba(203, 32, 36, 0.1);
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ff8a7a;
    letter-spacing: 0.3px;
    border: 1px solid rgba(203, 32, 36, 0.2);
}

/* 4 Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.reason-card {
    background: rgba(14, 14, 22, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cb2024, #ff6b5c, #cb2024);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reason-card:hover {
    transform: translateY(-6px);
    border-color: rgba(203, 32, 36, 0.3);
    background: rgba(20, 20, 30, 0.8);
}

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

.card-number {
    font-size: 14px;
    font-weight: 600;
    color: #cb2024;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(203, 32, 36, 0.15), rgba(203, 32, 36, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(203, 32, 36, 0.25);
    transition: all 0.3s ease;
}

.reason-card:hover .card-icon {
    transform: scale(1.05);
    border-color: #cb2024;
    background: rgba(203, 32, 36, 0.2);
}

.card-icon i {
    font-size: 28px;
    color: #cb2024;
}

.reason-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.3;
}

.reason-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0c8;
    margin-bottom: 24px;
}

.card-metric {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(203, 32, 36, 0.08);
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(203, 32, 36, 0.15);
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff6b5c;
    letter-spacing: 0.3px;
}

.metric-label {
    font-size: 0.8rem;
    color: #9090aa;
}

/* Responsive */
@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .section-header1 h2 {
        font-size: 42px;
    }
    
    .reason-card {
        padding: 30px 28px;
    }
}

@media (max-width: 768px) {
    .why-immersive {
        padding: 80px 0 100px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .section-header1 h2 {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .reason-card h3 {
        font-size: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-header1 h2 {
        font-size: 26px;
    }
    
    .reason-card {
        padding: 24px 20px;
    }
    
    .card-metric {
        padding: 6px 14px;
    }
}

/* ============================================
   TRUSTED EXHIBITION BOOTHS SECTION
   Dark Theme | Moving Marquee | Premium Design
   ============================================ */

.trusted-section {
    position: relative;
    background: linear-gradient(135deg, #08080c 0%, #0f0f1a 50%, #0a0a0f 100%);
    padding: 100px 0 120px;
    overflow: hidden;
    border-top: 1px solid rgba(203, 32, 36, 0.15);
    border-bottom: 1px solid rgba(203, 32, 36, 0.15);
}

/* Background Glow Effects */
.trusted-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: subtlePulse 8s ease-in-out infinite;
}

.trusted-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 100%, rgba(203, 32, 36, 0.05), transparent 60%);
    pointer-events: none;
}

@keyframes subtlePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.trusted-header {
    text-align: center;
    margin-bottom: 60px;
}

.trusted-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(203, 32, 36, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff5a5f;
    border: 1px solid rgba(203, 32, 36, 0.25);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.trusted-tag i {
    font-size: 12px;
}

.trusted-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.trusted-gradient {
    background: linear-gradient(120deg, #cb2024, #ff6b5c, #cb2024);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.trusted-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b8b8d0;
    font-weight: 400;
}

/* Moving Marquee / Strip */
.marquee-wrapper {
    margin: 70px 0 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 80px;
    padding: 8px 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(203, 32, 36, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 8, 12, 0.95), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8, 8, 12, 0.95), transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

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

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(203, 32, 36, 0.15), rgba(203, 32, 36, 0.05));
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(203, 32, 36, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.marquee-item i {
    color: #cb2024;
    font-size: 12px;
}

.marquee-item:hover {
    background: rgba(203, 32, 36, 0.25);
    border-color: rgba(203, 32, 36, 0.5);
    transform: scale(1.05);
    color: #ffffff;
}

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

/* Stats Section */
.trusted-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #cb2024);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #a0a0b5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(203, 32, 36, 0.5), transparent);
}

/* Responsive Design */
@media (max-width: 992px) {
    .trusted-title {
        font-size: 40px;
    }
    
    .marquee-item {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .marquee-track {
        gap: 25px;
    }
    
    .trusted-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 70px 0 90px;
    }
    
    .trusted-container {
        padding: 0 20px;
    }
    
    .trusted-title {
        font-size: 32px;
    }
    
    .trusted-description {
        font-size: 1rem;
    }
    
    .marquee-wrapper {
        margin: 50px 0 40px;
        border-radius: 50px;
    }
    
    .marquee-item {
        padding: 6px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .marquee-track {
        gap: 15px;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }
    
    .trusted-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(203, 32, 36, 0.5), transparent);
    }
    
    .stat-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .trusted-title {
        font-size: 26px;
    }
    
    .trusted-tag {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .marquee-item {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}


/* OPTION C: ASYMMETRIC SPLIT WITH SIDE STATS */
.games-asymmetric {
    padding: 100px 0;
    background: #08080c;
    position: relative;
}

.asymmetric-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.asymmetric-header {
    margin-bottom: 32px;
}

.asymmetric-number {
    font-size: 100px;
    font-weight: 900;
    line-height: 0.8;
    background: linear-gradient(135deg, rgba(203, 32, 36, 0.4), rgba(203, 32, 36, 0.1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.asymmetric-pre-title {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cb2024;
    display: block;
    margin-bottom: 15px;
}

.asymmetric-header h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.asymmetric-description {
    font-size: 16px;
    line-height: 1.7;
    color: #c8c8e0;
    margin-bottom: 45px;
}

.asymmetric-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-title i {
    font-size: 22px;
    color: #cb2024;
}

.feature-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #b0b0c8;
    margin-bottom: 14px;
    line-height: 1.5;
}

.list-marker {
    width: 6px;
    height: 6px;
    background: #cb2024;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.asymmetric-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(203, 32, 36, 0.15);
    border: 1px solid rgba(203, 32, 36, 0.4);
    padding: 14px 34px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asymmetric-cta:hover {
    background: #cb2024;
    gap: 18px;
    border-color: #cb2024;
}

/* Image Side */
.asymmetric-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: #cb2024;
    border-style: solid;
    border-width: 0;
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.corner-tr {
    top: 20px;
    right: 20px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.corner-bl {
    bottom: 20px;
    left: 20px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.image-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #1a1a2a, #12121e);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(203, 32, 36, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #cb2024;
}

.stat-name {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(203, 32, 36, 0.3);
}

@media (max-width: 1100px) {
    .asymmetric-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .image-stats-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 30px;
        justify-content: center;
    }
    .asymmetric-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .asymmetric-container {
        padding: 0 24px;
    }
    .asymmetric-number {
        font-size: 70px;
    }
    .asymmetric-header h2 {
        font-size: 28px;
    }
    .asymmetric-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .image-stats-card {
        flex-direction: column;
        gap: 15px;
    }
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    .asymmetric-cta {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
    SOLUTIONS SHOWCASE SECTION
   ============================================ */

.solutions-showcase {
    position: relative;
    background: radial-gradient(circle at 20% 30%, #0b0b0f, #010101);
    padding: 120px 0 100px;
    overflow: hidden;
}

.solutions-showcase::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.solutions-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 80, 40, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: rgba(203, 32, 36, 0.18);
    backdrop-filter: blur(4px);
    padding: 8px 22px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff5a5f;
    border: 1px solid rgba(203, 32, 36, 0.3);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 30%, #cb2024 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text {
    background: linear-gradient(120deg, #cb2024, #ff7a5c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-subhead {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #b0b0c0;
    font-weight: 400;
}

.solution-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5%;
    margin-bottom: 140px;
    position: relative;
    transition: all 0.2s;
}

.solution-block.reverse {
    flex-direction: row-reverse;
}

.solution-media {
    flex: 1.1;
    min-width: 280px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 45px -20px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.4s;
}

.solution-media:hover {
    transform: scale(1.01) translateY(-6px);
    box-shadow: 0 40px 55px -18px rgba(203, 32, 36, 0.25);
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #0a0a0e;
    aspect-ratio: 16 / 9;
    border-radius: 32px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.solution-media:hover video {
    transform: scale(1.02);
}

.solution-content {
    flex: 0.9;
    min-width: 300px;
    backdrop-filter: blur(0px);
    background: rgba(12, 12, 18, 0.4);
    padding: 32px 36px;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.solution-content:hover {
    background: rgba(18, 18, 26, 0.6);
    border-color: rgba(203, 32, 36, 0.2);
}

.solution-number {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #cb2024;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(203, 32, 36, 0.15);
    padding: 4px 12px;
    border-radius: 60px;
}

.solution-content h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #fff;
}

.solution-content h3 .highlight {
    color: #cb2024;
    background: linear-gradient(145deg, #fff, #cb2024);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.solution-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cdcddf;
    margin-bottom: 32px;
    border-left: 3px solid #cb2024;
    padding-left: 20px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.feature-block {
    flex: 1;
    min-width: 170px;
}

.feature-block h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cb2024;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-block ul {
    list-style: none;
}

.feature-block li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: #c0c0dd;
}

.feature-block li i {
    color: #cb2024;
    font-size: 14px;
    width: 18px;
    transition: transform 0.2s;
}

.feature-block li:hover i {
    transform: scale(1.15);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(95deg, #cb2024, #e0533a);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.btn-link i {
    transition: transform 0.2s;
}

.btn-link:hover {
    background: linear-gradient(95deg, #b0181c, #cb2024);
    box-shadow: 0 8px 20px rgba(203, 32, 36, 0.4);
    gap: 16px;
}

.btn-link:hover i {
    transform: translateX(5px);
}

.solution-block:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 32, 36, 0.3), rgba(255, 255, 255, 0.1), rgba(203, 32, 36, 0.3), transparent);
}

@media (max-width: 1100px) {
    .solution-block,
    .solution-block.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .solution-media,
    .solution-content {
        width: 100%;
        flex: auto;
    }
    
    .solution-content {
        padding: 28px 24px;
    }
    
    .section-header h2 {
        font-size: 44px;
    }
    
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 650px) {
    .features-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .solution-content h3 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .btn-link {
        padding: 10px 20px;
    }
}




/* ============================================ */
/* SECTION 4: BENEFITS */
/* ============================================ */
.benefits-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #cb2024;
}

.benefit-icon i {
    font-size: 48px;
    color: #cb2024;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE PROPSHOP 
   ============================================ */

.why-propshop {
    padding: 100px 0;
    background: radial-gradient(ellipse at 30% 20%, #0a0a12, #020205);
    position: relative;
    overflow: hidden;
}

/* Ambient glow effects */
.why-propshop::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.08), transparent 70%);
    pointer-events: none;
}

.why-propshop::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.05), transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Header Section - CENTERED */
.why-top {
    margin-bottom: 60px;
    text-align: center;
}

.why-top-left {
    max-width: 900px;
    margin: 0 auto;
}

.why-top-left h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 30%, #cb2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text {
    background: linear-gradient(120deg, #cb2024, #ff6b5c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(203, 32, 36, 0.12);
    padding: 6px 18px;
    border-radius: 40px;
    border: 1px solid rgba(203, 32, 36, 0.25);
}

.why-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cb2024;
    animation: pulse 2s ease-in-out infinite;
}

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

.why-badge-txt {
    font-size: 11px;
    font-weight: 700;
    color: #ff5a5f;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b8b8d0;
    max-width: 780px;
    margin: 0 auto;
}

/* U Shape Container */
.u-shape-wrap {
    position: relative;
    margin: 70px 0;
}

/* ROWS */
.u-top-row,
.u-bottom-row {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.u-bottom-row {
    flex-direction: row-reverse;
    align-items: flex-start;
}

/* NODE */
.u-node {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.u-node-last .u-connector {
    display: none;
}

/* DOT ROW */
.u-dot-row {
    display: flex;
    align-items: center;
    height: 48px;
    position: relative;
}

.u-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #cb2024;
    border: 3px solid #0a0a12;
    outline: 2px solid rgba(203, 32, 36, 0.5);
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.u-node:hover .u-dot {
    transform: scale(1.3);
    outline-color: #cb2024;
    box-shadow: 0 0 12px rgba(203, 32, 36, 0.6);
}

.u-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(203, 32, 36, 0.6), rgba(203, 32, 36, 0.15));
}

/* CONTENT STYLES */
.u-content {
    padding: 0 16px;
    transition: all 0.3s ease;
}

.u-above {
    padding-bottom: 24px;
    text-align: center;
}

.u-below {
    padding-top: 24px;
    text-align: center;
}

.u-node:hover .u-content {
    transform: translateY(-3px);
}

.u-num {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: rgba(203, 32, 36, 0.45);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.u-tag-line {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #ff6b5c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(203, 32, 36, 0.3);
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.u-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.u-content p {
    font-size: 13px;
    color: #b0b0c8;
    line-height: 1.65;
}

/* CURVE SECTION */
.u-curve-row {
    display: flex;
    align-items: flex-end;
    height: 80px;
}

.u-curve-line-left,
.u-curve-line-right {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(203, 32, 36, 0.6), rgba(203, 32, 36, 0.15));
    align-self: flex-end;
}

.u-curve-line-left {
    background: linear-gradient(90deg, rgba(203, 32, 36, 0.15), rgba(203, 32, 36, 0.6));
}

.u-curve-arc {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(203, 32, 36, 0.4);
    border-top: none;
    border-radius: 0 0 60px 60px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(203, 32, 36, 0.1);
}

/* Stats Ticker */
.why-ticker {
    display: flex;
    border-top: 1px solid rgba(203, 32, 36, 0.2);
    border-bottom: 1px solid rgba(203, 32, 36, 0.2);
    background: rgba(8, 8, 14, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    margin-top: 40px;
    overflow: hidden;
}

.why-tick {
    flex: 1;
    padding: 28px 0;
    text-align: center;
    border-right: 1px solid rgba(203, 32, 36, 0.15);
    transition: all 0.3s ease;
}

.why-tick:last-child {
    border-right: none;
}

.why-tick:hover {
    background: rgba(203, 32, 36, 0.05);
    transform: translateY(-2px);
}

.why-tick .stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #cb2024);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    line-height: 1;
}

.tick-suffix {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #cb2024);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.tick-label {
    font-size: 11px;
    color: #9090b0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .why-top-left h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .why-propshop {
        padding: 70px 0;
    }
    
    .why-top-left h2 {
        font-size: 32px;
    }
    
    .why-lead {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .u-top-row,
    .u-bottom-row {
        flex-direction: column;
    }
    
    .u-bottom-row {
        flex-direction: column;
    }
    
    .u-curve-row {
        display: none;
    }
    
    .u-above,
    .u-below {
        text-align: left;
        padding: 16px 0;
    }
    
    .u-dot-row {
        margin-bottom: 8px;
        justify-content: flex-start;
    }
    
    .u-connector {
        display: none;
    }
    
    .u-dot {
        width: 14px;
        height: 14px;
    }
    
    .u-content h3 {
        font-size: 16px;
    }
    
    .u-content p {
        font-size: 12px;
    }
    
    .why-ticker {
        flex-wrap: wrap;
        border-radius: 30px;
    }
    
    .why-tick {
        flex: 1 1 50%;
        padding: 20px 0;
    }
    
    .why-tick:nth-child(2) {
        border-right: none;
    }
    
    .why-tick .stat-number {
        font-size: 28px;
    }
    
    .tick-suffix {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .why-top-left h2 {
        font-size: 26px;
    }
    
    .why-ticker {
        flex-direction: column;
        border-radius: 24px;
    }
    
    .why-tick {
        border-right: none;
        border-bottom: 1px solid rgba(203, 32, 36, 0.15);
        padding: 18px 0;
    }
    
    .why-tick:last-child {
        border-bottom: none;
    }
}


/* ============================================ */
/* SECTION 7: PROCESS */
/* ============================================ */
.process-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #cb2024, #ff4444);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0a0a0a;
    border: 2px solid #cb2024;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #cb2024;
    flex-shrink: 0;
    z-index: 2;
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, #cb2024, #ff4444);
    color: white;
}

.step-content {
    flex: 1;
    padding-bottom: 20px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-content p {
    color: #c0c0c0;
    line-height: 1.7;
}

/* ============================================ */
/* SECTION 8: CLOSING CTA */
/* ============================================ */
.closing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f, #0a0a0a);
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(203,32,36,0.1), rgba(255,68,68,0.05));
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(203,32,36,0.3);
}

.cta-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* SECTION 9: FAQ */
/* ============================================ */
.faq-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(203,32,36,0.05);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-question i {
    color: #cb2024;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-card.reverse {
        direction: ltr;
    }
    
    .propshop-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-stats-card {
        padding: 20px;
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-subhead {
        font-size: 15px;
    }
    
    .solution-details h3 {
        font-size: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .propshop-features {
        grid-template-columns: 1fr;
    }
    
    .propshop-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-circle-large .stat-number {
        font-size: 32px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .cta-wrapper {
        padding: 40px 20px;
    }
    
    .cta-wrapper h2 {
        font-size: 28px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        text-align: center;
        justify-content: center;
    }
}

/* ============================================ */
/* LAZY LOADING & ANIMATIONS */
/* ============================================ */
.lazy-image {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.lazy-image.loaded {
    filter: blur(0);
}

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

.scroll-reveal {
    animation: fadeInUp 0.8s ease forwards;
}
