/* ============================================
   RCC Landing Page — Dynamic Sections
   ============================================ */
.rcc-section { padding: 80px 0; }
.rcc-section:nth-child(even) { background: #111111; }



/* --- Gallery --- */
.gallery-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.gallery-tab {
    padding: 8px 20px; border: 2px solid rgba(255,255,255,0.08); border-radius: 20px;
    background: #161616; cursor: pointer; font-weight: 600; font-size: 0.85rem;
    transition: all 0.2s; font-family: inherit; color: #999;
    text-transform: capitalize;
}
.gallery-tab:hover, .gallery-tab.active { border-color: #e63946; color: #e63946; background: rgba(230,57,70,0.04); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
    border-radius: 14px; overflow: hidden; position: relative; cursor: pointer;
    background: #1a1a1a; aspect-ratio: 1;
}
.gallery-item.reel { aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { width: 48px; height: 48px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #f0f0f0; }
.gallery-item[style*="display: none"] { display: none !important; }

/* Lightbox */
.rcc-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    cursor: pointer; animation: lbFadeIn 0.3s;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.rcc-lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; cursor: default; }
.rcc-lightbox-close {
    position: absolute; top: 20px; right: 20px; width: 44px; height: 44px;
    background: rgba(255,255,255,0.15); border-radius: 50%; color: #fff;
    font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none;
}

/* --- Before & After --- */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.ba-card { border-radius: 16px; overflow: hidden; background: #161616; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.ba-slider {
    position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden;
    cursor: col-resize; user-select: none; touch-action: none;
}
.ba-after, .ba-before {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.ba-after img, .ba-before img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    pointer-events: none; -webkit-user-drag: none;
}
.ba-after { z-index: 0; }
.ba-before { z-index: 1; clip-path: inset(0 50% 0 0); }
/* Handle line */
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    z-index: 3; display: flex; flex-direction: column; align-items: center;
    pointer-events: none; will-change: left;
}
.ba-handle-line {
    flex: 1; width: 3px; background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.ba-handle-circle {
    width: 44px; height: 44px; background: #e63946; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(230,57,70,0.4);
    pointer-events: auto; cursor: col-resize;
    transition: transform 0.15s;
}
.ba-handle-circle:hover { transform: scale(1.15); }
/* Labels */
.ba-label-before, .ba-label-after {
    position: absolute; top: 12px; z-index: 4;
    background: rgba(0,0,0,0.6); color: #fff;
    padding: 4px 12px; border-radius: 6px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    pointer-events: none;
}
.ba-label-before { right: 12px; }
.ba-label-after { left: 12px; }
.ba-title { padding: 14px 20px; font-weight: 600; text-align: center; font-size: 0.9rem; color: #aaa; }

/* --- Videos (Reel style) --- */
.videos-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.video-card {
    border-radius: 16px; overflow: hidden; background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}
.video-wrap { position: relative; aspect-ratio: 9/16; cursor: pointer; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
    position: absolute; inset: 0; display: flex; align-items: center;
    justify-content: center; background: rgba(0,0,0,0.25); transition: all 0.3s;
}
.video-play-btn i {
    width: 60px; height: 60px; background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff; transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}
.video-wrap:hover .video-play-btn { background: rgba(230,57,70,0.2); }
.video-wrap:hover .video-play-btn i { background: #e63946; border-color: #e63946; transform: scale(1.1); }
.video-wrap.playing .video-play-btn { display: none; }
.video-title {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 16px 14px; color: #fff; font-weight: 600; font-size: 0.88rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    margin: 0; z-index: 2;
}

/* Videos mobile carousel */
.videos-carousel-wrap { display: none; }

@media (max-width: 768px) {
    .videos-grid { display: none; }
    .videos-carousel-wrap {
        display: block; position: relative; overflow: hidden;
        padding-bottom: 48px;
    }
    .videos-track {
        display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
        -ms-overflow-style: none; scrollbar-width: none; padding: 0 16px;
    }
    .videos-track::-webkit-scrollbar { display: none; }
    .videos-track .video-card {
        min-width: 75vw; max-width: 75vw; flex-shrink: 0; scroll-snap-align: center;
    }
    .videos-nav {
        display: flex; justify-content: center; gap: 12px; margin-top: 16px;
    }
    .videos-nav-btn {
        width: 40px; height: 40px; border-radius: 50%; border: 2px solid #ddd;
        background: #161616; cursor: pointer; display: flex; align-items: center;
        justify-content: center; font-size: 1rem; color: #333; transition: all 0.2s;
    }
    .videos-nav-btn:hover { border-color: #e63946; color: #e63946; }
    .videos-dots {
        display: flex; justify-content: center; gap: 6px; margin-top: 12px;
    }
    .videos-dot {
        width: 8px; height: 8px; border-radius: 50%; background: #ddd;
        border: none; cursor: pointer; transition: all 0.3s;
    }
    .videos-dot.active { background: #e63946; width: 24px; border-radius: 4px; }
}

/* --- Features (Stats + Benefits — Dark premium) --- */
.rcc-features-section {
    background: #0e0e0e !important; color: #fff;
    position: relative; overflow: hidden; padding: 90px 0 !important;
}
.features-bg { position: absolute; inset: 0; z-index: 0; }
.features-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: saturate(1.2); }
.features-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(14,14,14,0.75) 0%, rgba(14,14,14,0.45) 50%, rgba(14,14,14,0.8) 100%);
}
.rcc-features-section .section-title { color: #fff; font-size: 2.2rem; }
.rcc-features-section .section-subtitle { color: rgba(255,255,255,0.5); }
.rcc-features-section .section-header { margin-bottom: 48px; }

/* Stats row — minimal, no cards */
.features-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-bottom: 48px; padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feature-stat-card {
    text-align: center; padding: 12px 16px;
    position: relative;
}
.feature-stat-card:not(:last-child)::after {
    content: ''; position: absolute; left: 0; top: 10%; height: 80%;
    width: 1px; background: rgba(255,255,255,0.08);
}
.feature-stat-number {
    font-size: 3.2rem; font-weight: 900; color: #e63946;
    line-height: 1; margin-bottom: 8px; direction: ltr; display: inline-block;
    text-shadow: 0 0 30px rgba(230,57,70,0.25);
}
.feature-stat-icon { font-size: 1.1rem; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
.feature-stat-card h3 { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.55); margin: 0; letter-spacing: 0.3px; }

/* Benefits row */
.features-benefits-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feature-benefit-card {
    text-align: center; padding: 30px 18px;
    border-radius: 18px; transition: all 0.35s;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.feature-benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(230,57,70,0.08);
    border-color: rgba(230,57,70,0.2);
    box-shadow: 0 12px 32px rgba(230,57,70,0.1);
}
.feature-benefit-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: rgba(230,57,70,0.1); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #e63946; transition: all 0.35s;
}
.feature-benefit-card:hover .feature-benefit-icon {
    background: #e63946; color: #fff;
    box-shadow: 0 6px 24px rgba(230,57,70,0.4);
    transform: scale(1.08);
}
.feature-benefit-card h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.feature-benefit-card p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }

/* --- Testimonials Carousel --- */
.testimonials-carousel-wrap { position: relative; padding: 0 0 60px; }
.testimonials-track {
    display: flex; gap: 20px;
    overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
    padding-bottom: 4px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    min-width: 320px; max-width: 320px; flex-shrink: 0;
    scroll-snap-align: start;
    background: #161616; border: 1px solid rgba(255,255,255,0.06); border-radius: 20px;
    padding: 32px 28px; position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 16px; right: 20px;
    font-size: 4rem; color: rgba(230,57,70,0.08); font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.95rem; color: #aaa; line-height: 1.9; margin-bottom: 20px;
    min-height: 80px; position: relative; z-index: 1;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; background: linear-gradient(135deg, #e63946, #c1121f);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.testimonial-info { flex: 1; }
.testimonial-author { font-weight: 700; font-size: 0.95rem; color: #f0f0f0; margin: 0; }
.testimonial-service { font-size: 0.8rem; color: #e63946; font-weight: 600; margin-top: 2px; }

/* Carousel Navigation */
.carousel-nav {
    display: flex; justify-content: center; gap: 12px;
    margin-top: 24px;
}
.carousel-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid #e0e0e0;
    background: #161616; cursor: pointer; display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; color: #333;
    transition: all 0.2s;
}
.carousel-btn:hover { border-color: #e63946; color: #e63946; background: rgba(230,57,70,0.04); }

/* Carousel Dots */
.carousel-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.carousel-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #ddd;
    cursor: pointer; transition: all 0.3s; border: none;
}
.carousel-dot.active { background: #e63946; width: 28px; border-radius: 5px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .rcc-section { padding: 48px 16px; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ba-grid { grid-template-columns: 1fr; }
    .videos-grid { display: none; }
    .videos-carousel-wrap { display: block; }
    .features-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .features-benefits-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature-stat-number { font-size: 2rem; }
    .feature-benefit-card { padding: 20px 14px; }
    .testimonial-card { min-width: 280px; max-width: 280px; padding: 24px 20px; }
    .feature-card { padding: 24px 16px; }
    .section-title { font-size: 1.6rem !important; }
}
@media (max-width: 480px) {
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-stats-row { grid-template-columns: repeat(2, 1fr); }
    .features-benefits-row { grid-template-columns: repeat(2, 1fr); }
}
/* --- Services Showcase (Photo cards - Dark) --- */
.services-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-showcase-card {
    background: #161616; border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px; text-decoration: none; color: #f0f0f0;
    transition: all 0.35s cubic-bezier(0.22,0.61,0.36,1);
    overflow: hidden; display: flex; flex-direction: column;
    position: relative;
}
.service-showcase-card:hover {
    border-color: rgba(230,57,70,0.3); transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(230,57,70,0.12); color: #f0f0f0;
}
.service-card-img {
    width: 100%; height: 180px; overflow: hidden;
    position: relative;
}
.service-card-img::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(transparent, #161616);
}
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s; filter: brightness(0.85);
}
.service-showcase-card:hover .service-card-img img {
    transform: scale(1.08); filter: brightness(1);
}
.service-card-body {
    padding: 20px 22px 22px; flex: 1;
    display: flex; flex-direction: column;
}
.service-card-body h3 {
    font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; color: #fff;
}
.service-showcase-desc {
    font-size: 0.82rem; color: #888; line-height: 1.7; margin: 0 0 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; flex: 1;
}
.service-showcase-price {
    font-size: 0.85rem; color: #e63946; font-weight: 700; margin-top: auto;
}
.service-card-arrow {
    width: 36px; height: 36px; background: rgba(230,57,70,0.1);
    border-radius: 50%; display: inline-flex; align-items: center;
    justify-content: center; color: #e63946; font-size: 0.9rem;
    transition: all 0.3s; margin-top: 14px; flex-shrink: 0;
}
.service-showcase-card:hover .service-card-arrow {
    background: #e63946; color: #fff;
    box-shadow: 0 4px 12px rgba(230,57,70,0.4);
}

@media (max-width: 900px) {
    .services-showcase { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .service-card-img { height: 140px; }
}
@media (max-width: 480px) {
    .services-showcase { grid-template-columns: 1fr 1fr; gap: 10px; }
    .service-card-img { height: 110px; }
    .service-card-body { padding: 14px 14px 16px; }
    .service-card-body h3 { font-size: 0.92rem; }
    .service-showcase-desc { font-size: 0.72rem; }
    .service-card-arrow { width: 30px; height: 30px; }
}
