/* ============================================
   RCC — Dark Premium Theme
   Clean White + Red Accent
   ============================================ */

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #161616;
    --color-bg-input: #1a1a1a;
    --color-text: #f0f0f0;
    --color-text-light: #aaaaaa;
    --color-text-muted: #666666;
    --color-red: #e63946;
    --color-red-dark: #c1121f;
    --color-red-glow: rgba(230, 57, 70, 0.2);
    --color-red-light: rgba(230,57,70,0.12);
    --color-border: rgba(255,255,255,0.08);
    --color-border-light: rgba(255,255,255,0.05);
    --color-shadow: rgba(0,0,0,0.3);
    --color-shadow-lg: rgba(0,0,0,0.5);
    --header-bg: rgba(10,10,10,0.92);
    --header-blur: 20px;
    --font-primary: "IBM Plex Sans Arabic", "Cairo", "IBM Plex Sans", sans-serif;
    --font-arabic: "IBM Plex Sans Arabic", "Cairo", sans-serif;
    --transition: 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
html { overflow-x: hidden; }
#main-content { overflow-x: hidden; }

a { color: var(--color-text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-red); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.text-red { color: var(--color-red); }

/* --- Buttons --- */
.btn {
    display: inline-block; padding: 14px 36px; font-size: 1rem; font-weight: 600;
    font-family: var(--font-primary); border-radius: var(--radius-sm);
    cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn-primary { background: var(--color-red); color: #fff; border: 2px solid var(--color-red); }
.btn-primary:hover { background: var(--color-red-dark); border-color: var(--color-red-dark); color: #fff; box-shadow: 0 4px 20px var(--color-red-glow); }
.btn-outline { background: transparent; color: var(--color-text); border: 2px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-red); color: var(--color-red); }

/* --- Section Shared --- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; color: var(--color-text); }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-muted); }

/* ============================================
   HEADER — Nav + Hamburger
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
    background: var(--header-bg); border-bottom: 1px solid var(--color-border-light);
    backdrop-filter: blur(var(--header-blur)); -webkit-backdrop-filter: blur(var(--header-blur));
    box-shadow: 0 1px 8px var(--color-shadow);
}
/* Only homepage starts transparent */
.home .site-header:not(.scrolled) {
    background: transparent; border-bottom-color: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none;
}
.site-header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(var(--header-blur)); -webkit-backdrop-filter: blur(var(--header-blur));
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: 0 2px 20px var(--color-shadow);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; position: relative; }
.site-logo img { height: 52px; width: auto; }

/* Nav Links */
.header-nav {
    display: flex; align-items: center; gap: 6px;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
    padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
    color: var(--color-text); border-radius: 8px; transition: all var(--transition);
    text-decoration: none; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 6px;
}
.nav-link i { display: none; }
.nav-link:hover { color: var(--color-red); background: rgba(230,57,70,0.1); }
.nav-cta {
    background: var(--color-red) !important; color: #fff !important;
    padding: 10px 22px; border-radius: 10px; margin-right: 4px;
}
.nav-cta:hover { background: var(--color-red-dark) !important; box-shadow: 0 4px 16px var(--color-red-glow); }
.nav-social { display: flex; align-items: center; gap: 8px; margin-right: 8px; }

/* Header on dark hero — ONLY on homepage */
.site-header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.site-header:not(.scrolled) .nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.home .site-header:not(.scrolled) .nav-cta { color: #fff !important; }

.header-social-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    color: var(--color-text); background: var(--color-red-light);
    transition: all var(--transition); font-size: 0.9rem;
}
.header-social-link:hover { color: #fff; background: var(--color-red); transform: translateY(-2px); }
.site-header:not(.scrolled) .header-social-link { color: #fff; background: rgba(255,255,255,0.12); }

/* Hamburger Button */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 28px; position: relative; z-index: 1002;
    padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 3px; background: #fff;
    border-radius: 2px; position: absolute; right: 0;
    transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; width: 100%; }
.hamburger span:nth-child(2) { top: 12px; width: 75%; }
.hamburger span:nth-child(3) { top: 24px; width: 50%; }
.site-header:not(.scrolled) .hamburger span { background: #fff; }

/* Hamburger Active */
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 12px; width: 100%; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 12px; width: 100%; }
.hamburger.active span { background: #fff !important; }

/* Mobile Overlay */
.mobile-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 998; opacity: 0; transition: opacity 0.3s;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mobile-overlay.active { display: block; opacity: 1; }

/* Mobile Nav Styles */
@media (max-width: 960px) {
    .hamburger { display: block; }

    .header-nav {
        position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; transform: none;
        background: #111; flex-direction: column; align-items: stretch;
        padding: 90px 24px 32px; gap: 0; z-index: 999;
        box-shadow: -8px 0 40px rgba(0,0,0,0.5);
        border-right: 1px solid rgba(255,255,255,0.06);
        transition: left 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
        overflow-y: auto;
    }
    .header-nav.open { left: 0; }

    .nav-link {
        padding: 14px 16px; font-size: 1rem; border-radius: 12px;
        color: var(--color-text) !important;
        display: flex; align-items: center; gap: 12px;
        transition: background 0.2s;
    }
    .nav-link i { display: inline-flex; font-size: 1.1rem; color: var(--color-red); width: 20px; justify-content: center; }
    .nav-link:hover { background: rgba(230,57,70,0.12); }
    .nav-cta {
        margin: 12px 0 0 !important; text-align: center; padding: 16px !important;
        font-size: 1.05rem !important; justify-content: center;
    }
    .nav-cta i { color: #fff !important; }
    .nav-social {
        margin: 20px 0 0; padding-top: 20px;
        border-top: 1px solid var(--color-border-light);
        justify-content: center; gap: 14px;
    }
    .nav-social .header-social-link {
        color: var(--color-text) !important; background: var(--color-red-light) !important;
        width: 48px; height: 48px; font-size: 1.2rem;
    }
}

/* ============================================
   HERO — Dark with car background
   ============================================ */
.rcc-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 100px 24px 80px; background: #0a0a0a; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.7) 100%),
                radial-gradient(ellipse at 50% 100%, rgba(230,57,70,0.1) 0%, transparent 60%);
}

/* Hero split layout */
.hero-split {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
    align-items: center; position: relative; z-index: 2;
}
.hero-text { text-align: right; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,0.12); color: #e63946;
    padding: 10px 24px; border-radius: 28px; font-size: 0.88rem;
    font-weight: 700; margin-bottom: 24px;
    border: 1px solid rgba(230,57,70,0.2);
}
.hero-logo-side {
    display: flex; align-items: center; justify-content: center;
}
.hero-logo-side .hero-logo {
    width: 300px; height: auto; filter: drop-shadow(0 8px 32px rgba(230,57,70,0.15));
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@media (max-width: 768px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-text { text-align: center; }
    .hero-logo-side { order: -1; }
    .hero-logo-side .hero-logo { width: 180px; margin-bottom: 20px; }
    .hero-badge { font-size: 0.78rem; padding: 8px 18px; }
}

.hero-content { position: relative; z-index: 2; text-align: center; animation: heroFadeIn 1s ease forwards; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo { width: 200px; height: auto; }
.hero-title { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; color: #fff; line-height: 1.3; }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.7); font-weight: 400; margin-bottom: 24px; letter-spacing: 1px; }
.hero-divider { width: 60px; height: 3px; background: var(--color-red); margin: 0 auto 28px; border-radius: 2px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-outline-light {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3);
    padding: 18px 40px; border-radius: var(--radius-sm); font-size: 1.1rem;
    font-weight: 600; cursor: pointer; transition: all var(--transition);
    font-family: var(--font-primary); text-decoration: none;
}
.btn-outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

/* Header icons: white on dark hero */
.site-header:not(.scrolled) .header-social-link { color: #fff; background: rgba(255,255,255,0.12); }
.site-header:not(.scrolled) .site-logo img { filter: invert(1) hue-rotate(180deg); }



/* ============================================
   CONTACT FORM
   ============================================ */
.rcc-contact { padding: 100px 24px; background: var(--color-bg-alt); }
.contact-card {
    max-width: 700px; margin: 0 auto; padding: 48px;
    border-radius: var(--radius); background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 4px 24px var(--color-shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 16px 20px; background: var(--color-bg-input);
    border: 1px solid var(--color-border); border-radius: var(--radius-sm);
    font-size: 1rem; font-family: var(--font-primary); color: var(--color-text);
    transition: all var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-muted); }
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-red); box-shadow: 0 0 0 3px var(--color-red-glow); background: #161616;
}
.btn-submit { width: 100%; padding: 16px; font-size: 1.05rem; margin-top: 8px; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { margin-top: 16px; text-align: center; font-weight: 500; font-size: 0.95rem; }
.form-status.success { color: #16a34a; }
.form-status.error { color: var(--color-red); }

/* ============================================
   BENEFITS SECTION — Dark with background
   ============================================ */
.rcc-benefits {
    position: relative; padding: 80px 0; overflow: hidden;
}
.benefits-bg {
    position: absolute; inset: 0; z-index: 0;
}
.benefits-bg img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
}
.benefits-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(26,26,26,0.92), rgba(10,10,10,0.88));
}
.benefits-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.benefit-card {
    text-align: center; padding: 36px 20px;
    border-radius: 16px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.benefit-card:hover {
    background: rgba(255,255,255,0.1); transform: translateY(-4px);
    border-color: rgba(230,57,70,0.3);
}
.benefit-icon {
    width: 64px; height: 64px; margin: 0 auto 18px;
    background: rgba(230,57,70,0.15); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #e63946;
    transition: all 0.3s;
}
.benefit-card:hover .benefit-icon {
    background: #e63946; color: #fff;
    box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.benefit-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============================================
   BRANDS CAROUSEL — Real logos, infinite marquee
   ============================================ */
.rcc-brands-section {
    padding: 64px 0; background: var(--color-bg-alt);
    overflow: hidden; max-width: 100vw;
}
.brands-header { text-align: center; margin-bottom: 36px; }
.brands-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-red-light); color: var(--color-red);
    padding: 8px 20px; border-radius: 24px; font-size: 0.82rem;
    font-weight: 700; margin-bottom: 16px;
}
.brands-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 5%, black 95%, transparent 100%);
}
.brands-track {
    display: flex; gap: 40px; align-items: center;
    will-change: transform;
}
.brand-logo-item {
    min-width: 80px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
    opacity: 0.5; transition: all 0.3s;
}
.brand-logo-item:hover { opacity: 1; transform: scale(1.1); }
.brand-logo-item img {
    height: 52px; width: auto; max-width: 90px; object-fit: contain;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.rcc-faq { padding: 80px 0; background: #0e0e0e; }
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-col { display: contents; }
.faq-item {
    background: #161616; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(230,57,70,0.15); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-item.open { border-color: rgba(230,57,70,0.2); box-shadow: 0 6px 24px rgba(230,57,70,0.06); }
.faq-q {
    width: 100%; padding: 18px 22px; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 0.95rem; font-weight: 700; color: var(--color-text);
    cursor: pointer; text-align: right; font-family: var(--font-primary);
    transition: color 0.2s;
}
.faq-q span { flex: 1; }
.faq-q i {
    font-size: 1.1rem; color: var(--color-red); transition: transform 0.3s;
    flex-shrink: 0; width: 28px; height: 28px; display: flex;
    align-items: center; justify-content: center;
    background: var(--color-red-light); border-radius: 8px;
}
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--color-red); color: #fff; }
.faq-item.open .faq-q { color: var(--color-red); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }
.faq-a p {
    font-size: 0.88rem; color: var(--color-text-light); line-height: 1.85; margin: 0;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; gap: 10px; }
    .faq-q { font-size: 0.88rem; padding: 16px 18px; }
    .faq-a p { font-size: 0.82rem; }
    .rcc-faq { padding: 48px 16px; }
}

/* ============================================
   LOCATION / MAP
   ============================================ */
.rcc-location { padding: 100px 24px; background: var(--color-bg); }
.map-wrapper {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border);
    margin-bottom: 32px; box-shadow: 0 4px 24px var(--color-shadow);
}
.map-wrapper iframe { display: block; width: 100%; height: 450px; }
.location-info { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.location-address, .location-phone { display: flex; align-items: center; gap: 10px; color: var(--color-text-light); }
.location-address p { font-family: var(--font-arabic); font-size: 1.05rem; }
.location-phone a { font-size: 1.1rem; color: var(--color-text-light); font-weight: 500; }
.location-phone a:hover { color: var(--color-red); }
.location-info-center {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 24px; color: var(--color-text-light); font-size: 1rem;
}
.location-info-center i { color: var(--color-red); font-size: 1.2rem; flex-shrink: 0; }
.location-info-center p { margin: 0; font-family: var(--font-arabic); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #080808; border-top: 1px solid var(--color-border-light); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 48px; padding-bottom: 40px; }
.footer-logo { height: 56px; width: auto; margin-bottom: 14px; }
.footer-desc { color: var(--color-text-light); font-size: 0.85rem; line-height: 1.9; margin-bottom: 18px; max-width: 380px; }
.footer-brand .footer-social-links { margin-top: 0; }

/* Services column */
.footer-services h4, .footer-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; color: var(--color-text); }
.footer-services ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-services li a {
    color: var(--color-text-light); font-size: 0.88rem; font-weight: 500;
    transition: all var(--transition); display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none;
}
.footer-services li a::before { content: '‹'; color: var(--color-red); font-weight: 700; margin-left: 2px; }
.footer-services li a:hover { color: var(--color-red); padding-right: 4px; }

/* Contact column */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: var(--color-text-light); line-height: 1.6;
}
.footer-contact-item i { color: var(--color-red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--color-text-light); text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--color-red); }
.footer-contact-item a[dir="ltr"] { direction: ltr; }

.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; background: var(--color-red-light); color: var(--color-text); transition: all var(--transition);
    font-size: 1rem;
}
.footer-social-links a:hover { background: var(--color-red); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--color-border-light); padding: 20px 0; text-align: center; }
.footer-bottom p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }
.footer-credit { margin-top: 6px; font-size: 0.8rem; color: var(--color-text-muted); }
.footer-credit a { color: var(--color-red); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* Footer Policy Links */
.footer-policies { border-top: 1px solid var(--color-border-light); padding: 16px 0; }
.policy-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.policy-links a { color: var(--color-text-muted); font-size: 0.82rem; font-weight: 500; transition: color var(--transition); }
.policy-links a:hover { color: var(--color-red); }

/* Policy Page */
.policy-page { background: #111; }
.policy-content { max-width: 800px; margin: 0 auto; padding: 48px 0 80px; }
.policy-title { font-size: 2rem; font-weight: 800; color: var(--color-text); margin-bottom: 8px; text-align: center; }
.policy-updated { text-align: center; color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.policy-body { background: #161616; padding: 40px 36px; border-radius: var(--radius); border: 1px solid var(--color-border-light); box-shadow: 0 2px 16px var(--color-shadow); line-height: 2; }
.policy-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--color-red); margin: 32px 0 12px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 { font-size: 1.1rem; font-weight: 600; margin: 20px 0 8px; }
.policy-body p { margin-bottom: 14px; color: var(--color-text-light); }
.policy-body ul, .policy-body ol { margin: 0 20px 16px; color: var(--color-text-light); }
.policy-body li { margin-bottom: 8px; }
.policy-back { text-align: center; margin-top: 32px; }

@media (max-width: 768px) {
    .policy-content { padding: 32px 0 60px; }
    .policy-body { padding: 24px 20px; }
    .policy-title { font-size: 1.5rem; }
    .policy-links { gap: 12px; }
    .policy-links a { font-size: 0.75rem; }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    display: flex; flex-direction: column; gap: 14px;
}
.fab {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%; color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.22,0.61,0.36,1);
    position: relative;
    animation: fabEntry 0.6s ease backwards;
}
.fab:nth-child(1) { animation-delay: 0.3s; }
.fab:nth-child(2) { animation-delay: 0.5s; }
.fab:nth-child(3) { animation-delay: 0.7s; }

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

.fab:hover { transform: scale(1.15) translateY(-3px); color: #fff; }
.fab i { font-size: 1.3rem; transition: transform 0.3s; }
.fab:hover i { transform: rotate(-10deg) scale(1.1); }

/* Pulse ring */
.fab::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 2px solid transparent;
    animation: fabPulse 2.5s ease-in-out infinite;
    opacity: 0;
}

/* WhatsApp */
.fab-whatsapp { background: #25D366; }
.fab-whatsapp:hover { background: #1ebe5d; box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.fab-whatsapp::before { border-color: #25D366; animation-delay: 0s; }
.fab-whatsapp::after {
    content: ''; position: absolute; inset: -8px;
    border-radius: 50%; border: 2px solid rgba(37,211,102,0.3);
    animation: fabPulse 2.5s ease-in-out infinite 1.2s;
    opacity: 0;
}

/* Phone */
.fab-phone { background: var(--color-red); }
.fab-phone:hover { background: var(--color-red-dark); box-shadow: 0 6px 28px rgba(230,57,70,0.45); }
.fab-phone::before { border-color: var(--color-red); animation-delay: 0.4s; }
.fab-phone:hover i { animation: fabShake 0.5s ease; }

/* Maps */
.fab-maps { background: #1a1a1a; }
.fab-maps:hover { background: var(--color-red); box-shadow: 0 6px 28px rgba(230,57,70,0.4); }
.fab-maps::before { border-color: #1a1a1a; animation-delay: 0.8s; }
.fab-maps:hover i { animation: fabBounce 0.5s ease; }

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
@keyframes fabShake {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-5deg); }
}
@keyframes fabBounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-logo { width: 180px; }
    .cta-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .cta-text h2 { font-size: 2rem; }
    .cta-image { height: 280px; border-radius: 16px; order: -1; }
    .benefits-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .header-inner { height: 60px; }
    .site-logo img { height: 62px; }
    .header-nav { gap: 12px; }
    .header-social-link { width: 36px; height: 36px; }
    .header-social-link svg { width: 18px; height: 18px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.82rem; letter-spacing: 0; line-height: 1.8; padding: 0 8px; }
    .benefits-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .benefit-card { padding: 24px 16px; }
    .benefit-icon { width: 52px; height: 52px; font-size: 1.3rem; }
    .rcc-benefits { padding: 48px 16px; }
    .rcc-brands-section { padding: 40px 0; }
    .brands-track { gap: 28px; }
    .brands-slide img { width: 48px; height: 48px; }
    .hero-logo { width: 150px; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .rcc-booking-cta { padding: 40px 16px; }
    .cta-wrapper { gap: 24px; }
    .cta-text { text-align: center; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-text p { font-size: 0.9rem; }
    .cta-trust { gap: 10px; }
    .cta-trust-item { font-size: 0.88rem; }
    .cta-actions { display: flex; flex-direction: row; gap: 10px; justify-content: center; }
    .cta-btn-primary { padding: 14px 18px; font-size: 0.88rem; justify-content: center; flex: 1; }
    .cta-btn-whatsapp { padding: 14px 18px; font-size: 0.88rem; justify-content: center; flex: 1; }
    .cta-image { height: auto; max-width: 100%; border-radius: 14px; order: -1; }
    .brand-logo-item img { height: 40px; }
    .rcc-location { padding: 60px 16px; }
    .contact-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .map-wrapper iframe { height: 300px; }
    .location-info { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .footer-logo { height: 68px; }
    .footer-desc { font-size: 0.82rem; }
    .footer-social-links { justify-content: center; }
    .footer-services ul { align-items: center; }
    .footer-contact-list { align-items: center; }
    .footer-contact-item { justify-content: center; }
    .floating-buttons { bottom: 18px; right: 16px; gap: 12px; }
    .fab { width: 50px; height: 50px; }
    .fab i { font-size: 1.15rem; }
    .hero-cta .btn { padding: 12px 28px; font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-logo { width: 120px; }
    .hero-cta { display: flex; flex-direction: row; gap: 10px; justify-content: center; }
    .hero-cta .btn, .hero-cta a {
        flex: 1; padding: 14px 12px; font-size: 0.85rem;
        display: inline-flex; align-items: center; justify-content: center;
        gap: 6px; text-align: center; white-space: nowrap;
    }
    .btn-lg { padding: 14px 20px; font-size: 0.95rem; }
    .cta-text h2 { font-size: 1.3rem; }
    .cta-text p { font-size: 0.85rem; line-height: 1.7; }
    .cta-trust { gap: 8px; }
    .cta-trust-item { font-size: 0.82rem; }
    .cta-badge { font-size: 0.78rem; padding: 6px 16px; }
    .cta-image { height: auto; max-width: 100%; border-radius: 12px; }
    .brand-logo-item img { height: 36px; }
}

/* RCC Text Logo Placeholder */
.site-logo-text {
    font-size: 1.6rem; font-weight: 900; color: var(--color-text);
    letter-spacing: 3px; text-decoration: none;
}
.site-header:not(.scrolled) .site-logo-text { color: #fff; }
.hero-logo-text {
    font-size: 5rem; font-weight: 900; color: #fff;
    letter-spacing: 6px; display: block; margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(230,57,70,0.3);
}
.hero-logo-text::after {
    content: ""; display: block; width: 60px; height: 4px;
    background: var(--color-red); margin: 12px auto 0; border-radius: 2px;
}
.footer-logo-text {
    font-size: 2rem; font-weight: 900; color: var(--color-text);
    letter-spacing: 4px; display: block; margin-bottom: 12px;
}
@media (max-width: 768px) {
    .hero-logo-text { font-size: 3.5rem; }
    .site-logo-text { font-size: 1.3rem; }
}

/* Brand logos white circle bg */
.brand-logo-item {
    background: #fff; border-radius: 50%; width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    padding: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.brand-logo-item img { height: 44px; width: auto; max-width: 52px; }
.brand-logo-item:hover { transform: scale(1.12); box-shadow: 0 4px 20px rgba(230,57,70,0.2); }
@media (max-width: 768px) {
    .brand-logo-item { width: 64px; height: 64px; padding: 10px; }
    .brand-logo-item img { height: 34px; max-width: 42px; }
}
/* ============================================
   RCC CTA Section — Premium Dark
   ============================================ */
.rcc-cta-section {
    padding: 100px 0; background: #0e0e0e;
    position: relative; overflow: hidden;
}
.rcc-cta-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.rcc-cta-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
    align-items: center;
}
.rcc-cta-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,0.1); color: #e63946;
    padding: 8px 22px; border-radius: 24px; font-size: 0.88rem;
    font-weight: 700; margin-bottom: 24px; border: 1px solid rgba(230,57,70,0.15);
}
.rcc-cta-content h2 {
    font-size: 2.8rem; font-weight: 900; color: #fff;
    line-height: 1.3; margin: 0 0 20px;
}
.rcc-cta-content p {
    font-size: 1.05rem; color: rgba(255,255,255,0.55);
    line-height: 1.9; margin: 0 0 32px; max-width: 500px;
}
/* Stats */
.rcc-cta-stats {
    display: flex; gap: 32px; margin-bottom: 36px;
}
.rcc-cta-stat { text-align: center; }
.rcc-cta-stat-num {
    display: block; font-size: 2rem; font-weight: 900; color: #e63946;
    line-height: 1; direction: ltr;
}
.rcc-cta-stat-label {
    display: block; font-size: 0.8rem; color: rgba(255,255,255,0.45);
    margin-top: 6px; font-weight: 500;
}
/* Buttons */
.rcc-cta-actions { display: flex; gap: 14px; }
.rcc-cta-btn-book {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #e63946, #c1121f); color: #fff;
    padding: 18px 40px; border-radius: 14px; font-size: 1.1rem;
    font-weight: 800; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(230,57,70,0.3);
}
.rcc-cta-btn-book:hover {
    transform: translateY(-3px); color: #fff;
    box-shadow: 0 10px 36px rgba(230,57,70,0.5);
}
.rcc-cta-btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff; padding: 18px 36px;
    border-radius: 14px; font-size: 1.1rem; font-weight: 700;
    text-decoration: none; transition: all 0.3s;
}
.rcc-cta-btn-wa:hover {
    background: #1ebe5d; color: #fff; transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
/* Visual — Store image */
.rcc-cta-visual { display: flex; align-items: center; justify-content: center; }
.rcc-cta-image {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
}
.rcc-cta-image img {
    width: 100%; height: auto; display: block;
    transition: transform 0.5s;
}
.rcc-cta-image:hover img { transform: scale(1.03); }

/* Responsive */
@media (max-width: 1024px) {
    .rcc-cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .rcc-cta-content h2 { font-size: 2.2rem; }
    .rcc-cta-image { border-radius: 16px; }
}
@media (max-width: 768px) {
    .rcc-cta-section { padding: 60px 16px; }
    .rcc-cta-content h2 { font-size: 1.8rem; }
    .rcc-cta-content p { font-size: 0.92rem; }
    .rcc-cta-stats { gap: 20px; }
    .rcc-cta-stat-num { font-size: 1.5rem; }
    .rcc-cta-actions { display: flex; flex-direction: row; gap: 10px; }
    .rcc-cta-btn-book { padding: 14px 24px; font-size: 0.95rem; flex: 1; justify-content: center; }
    .rcc-cta-btn-wa { padding: 14px 20px; font-size: 0.95rem; flex: 1; justify-content: center; }
    .rcc-cta-image { border-radius: 14px; }
}


/* RCC unique title style */
.section-header { position: relative; }
.section-title::after {
    content: ''; display: block; width: 50px; height: 3px;
    background: #e63946; margin: 14px auto 0; border-radius: 2px;
}
