/* =============================
   MR GLOWW - Main Stylesheet
   Black, Yellow & White Theme
   ============================= */

:root {
    --yellow: #FFD600;
    --yellow-dark: #C9A800;
    --yellow-light: #FFF8D6;
    --yellow-glow: rgba(255,214,0,0.35);
    --black: #0A0A0A;
    --black-2: #141414;
    --black-3: #1E1E1E;
    --black-4: #2A2A2A;
    --white: #FFFFFF;
    --section-bg: #F5F5F0;
    --card-border: rgba(255,214,0,0.18);
    --shadow-sm: 0 4px 15px rgba(255,214,0,0.12);
    --shadow-md: 0 8px 30px rgba(255,214,0,0.18);
    --radius: 16px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ---- Navbar ---- */
#mainNavbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}
#mainNavbar.scrolled {
    background: var(--black) !important;
    padding: 0.7rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.7);
    border-bottom: 1px solid rgba(255,214,0,0.12);
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0.75rem !important;
}
.navbar-nav .nav-link:hover { color: var(--yellow) !important; }

/* Brand / Logo */
.navbar-brand {
    padding: 0 !important;
    line-height: 1;
}
.navbar-logo {
    height: 44px;
    max-height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.brand-highlight { color: var(--yellow); }

/* ---- Buttons ---- */
.btn-glow {
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 20px var(--yellow-glow);
    transition: all 0.3s;
}
.btn-glow:hover {
    transform: translateY(-2px);
    background: #f5cc00;
    box-shadow: 0 6px 28px rgba(255,214,0,0.55);
    color: var(--black);
}
.btn-store {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white) !important;
    border-radius: 14px;
    padding: 10px 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    text-decoration: none;
}
.btn-store i { font-size: 1.6rem; }
.btn-store:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--yellow-glow);
}
.btn-store-white {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,214,0,0.35);
}

/* ---- Hero ---- */
.hero-section {
    min-height: 100vh;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
    padding-top: 60px;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 68% 38%, rgba(255,214,0,0.1) 0%, transparent 55%),
                radial-gradient(ellipse at 12% 82%, rgba(255,214,0,0.05) 0%, transparent 42%);
    pointer-events: none;
}
.badge-hero {
    background: rgba(255,214,0,0.1);
    border: 1px solid rgba(255,214,0,0.3);
    color: var(--yellow);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}
.text-gradient {
    background: linear-gradient(90deg, var(--yellow), #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-white-75 { color: rgba(255,255,255,0.7) !important; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 1rem; }

/* Hero Card */
.hero-card {
    background: var(--black-3);
    border: 1px solid rgba(255,214,0,0.18);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    max-width: 300px;
    width: 100%;
    animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-card h5 { color: var(--white); }
.hero-card .text-muted { color: rgba(255,255,255,0.45) !important; }
.hero-icon-wrap {
    width: 70px; height: 70px;
    background: rgba(255,214,0,0.1);
    border: 1px solid rgba(255,214,0,0.22);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    font-size: 2rem; color: var(--yellow);
}
.hero-card-cleaner {
    background: var(--black-4) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}
.hero-card-cleaner p { color: rgba(255,255,255,0.8) !important; }
.hero-card-cleaner p.text-muted { color: rgba(255,255,255,0.4) !important; }
.cleaner-avatar {
    width: 40px; height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--black); font-size: 1.2rem;
}
.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
}
.scroll-dot {
    width: 6px; height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { opacity: 0.35; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(8px); }
}

/* ---- Sections ---- */
.section-padding { padding: 90px 0; }

.section-eyebrow {
    display: inline-block;
    color: var(--yellow-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    background: var(--yellow-light);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(201,168,0,0.25);
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

/* ---- About (white bg) ---- */
#about { background: var(--white); }

.about-image-wrap { position: relative; height: 400px; }
.about-img-card {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
    border: 1px solid rgba(255,214,0,0.12);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.about-img-card::after {
    content: '\f5df';
    font-family: 'bootstrap-icons';
    font-size: 8rem;
    color: rgba(255,214,0,0.07);
    position: absolute;
}
.about-icon-feature {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,214,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,214,0,0.22);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    color: var(--yellow); font-size: 0.8rem; font-weight: 600;
    z-index: 2;
}
.about-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--yellow);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700;
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255,214,0,0.45);
    z-index: 2;
}
.about-feature-card {
    background: var(--white);
    border: 1.5px solid rgba(201,168,0,0.15);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    transition: all 0.3s;
}
.about-feature-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 20px rgba(255,214,0,0.18);
    transform: translateY(-3px);
    background: var(--yellow-light);
}
.about-feature-card i { font-size: 1.5rem; display: block; color: var(--yellow-dark) !important; }

/* ---- How It Works (dark bg) ---- */
#how-it-works {
    background: var(--black-2);
}
#how-it-works .section-eyebrow {
    background: rgba(255,214,0,0.1);
    color: var(--yellow);
    border-color: rgba(255,214,0,0.22);
}
#how-it-works .section-title { color: var(--white); }
#how-it-works .text-muted { color: rgba(255,255,255,0.5) !important; }

.step-card {
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 28px 22px;
    position: relative;
    border: 1px solid rgba(255,214,0,0.08);
    transition: all 0.3s;
    overflow: hidden;
}
.step-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 8px 30px rgba(255,214,0,0.15);
    transform: translateY(-4px);
    background: var(--black-4);
}
.step-card h6 { color: var(--white); }
.step-card .text-muted { color: rgba(255,255,255,0.42) !important; }
.step-number {
    position: absolute; top: 20px; right: 20px;
    font-size: 2.5rem; font-weight: 900;
    color: rgba(255,214,0,0.06);
    line-height: 1;
}
.step-icon {
    width: 52px; height: 52px;
    background: var(--yellow);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--black); font-size: 1.3rem;
    box-shadow: 0 4px 14px rgba(255,214,0,0.35);
}

/* ---- Pricing (white bg) ---- */
.pricing-section { background: var(--white); }

.plan-tabs {
    background: var(--black);
    border: 1px solid rgba(255,214,0,0.2);
    gap: 4px;
}
.plan-tab {
    background: transparent; border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.88rem; font-weight: 600;
    color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s;
}
.plan-tab.active {
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 2px 14px var(--yellow-glow);
}
.pricing-card {
    background: var(--white);
    border: 1.5px solid rgba(201,168,0,0.15);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 40px rgba(255,214,0,0.18);
    transform: translateY(-5px);
}
.pricing-card-featured {
    background: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 8px 35px rgba(255,214,0,0.2);
}
.pricing-card-featured h4 { color: var(--white); }
.pricing-card-featured p.text-muted { color: rgba(255,255,255,0.5) !important; }
.pricing-card-featured .pricing-price .amount { color: var(--white); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.75) !important; }
.pricing-popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black); font-size: 0.75rem; font-weight: 800;
    padding: 4px 18px; border-radius: 50px; white-space: nowrap;
    box-shadow: 0 3px 14px var(--yellow-glow);
}
.pricing-img-wrap {
    height: 160px; border-radius: 12px; overflow: hidden;
    margin-bottom: 18px; background: var(--section-bg);
    display: flex; align-items: center; justify-content: center;
}
.pricing-card-featured .pricing-img-wrap { background: var(--black-3); }
.pricing-car-img { width: 100%; height: 100%; object-fit: cover; }
.pricing-car-placeholder { font-size: 5rem; color: var(--yellow); opacity: 0.22; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; }
.pricing-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--yellow-dark); }
.pricing-price .amount { font-size: 2.5rem; font-weight: 900; color: var(--black); line-height: 1; }
.pricing-price .period { font-size: 0.85rem; color: #94a3b8; margin-left: 4px; }
.pricing-features li {
    display: flex; align-items: center;
    font-size: 0.88rem; padding: 5px 0; color: #475569;
}
.pricing-features .bi-check-circle-fill { color: var(--yellow-dark) !important; }
.pricing-card-featured .pricing-features .bi-check-circle-fill { color: var(--yellow) !important; }
.btn-outline-primary {
    border-color: var(--yellow-dark); color: var(--black);
    border-radius: 50px; font-weight: 700;
    background: var(--yellow-light);
    transition: all 0.3s;
}
.btn-outline-primary:hover {
    background: var(--yellow); color: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 4px 18px var(--yellow-glow);
}

/* ---- FAQ (light bg) ---- */
.faq-section { background: var(--section-bg); }
.faq-item { border: 1.5px solid rgba(201,168,0,0.18) !important; border-radius: var(--radius-sm) !important; overflow: hidden; }
.faq-btn {
    background: var(--white) !important;
    font-weight: 600; color: var(--black) !important;
    font-size: 0.95rem;
    box-shadow: none !important;
    border: none;
}
.faq-btn:not(.collapsed) {
    color: var(--yellow-dark) !important;
    background: var(--yellow-light) !important;
}
.accordion-body { background: var(--white); font-size: 0.9rem; line-height: 1.7; color: #475569; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--black); }

.contact-section .section-eyebrow {
    background: rgba(255,214,0,0.1);
    color: var(--yellow);
    border-color: rgba(255,214,0,0.22);
}
.contact-section .section-title { color: var(--white); }
.contact-subtitle { color: rgba(255,255,255,0.55); }

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
    background: var(--black-3);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
    transition: all 0.3s;
}
.contact-wa::before  { background: #25d366; }
.contact-ph::before  { background: var(--yellow); }
.contact-em::before  { background: var(--yellow); }

.contact-info-card:hover {
    transform: translateX(4px);
    border-color: rgba(255,214,0,0.2);
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.contact-wa:hover  { border-color: rgba(37,211,102,0.25) !important; }
.contact-ph:hover  { border-color: rgba(255,214,0,0.25) !important; }
.contact-em:hover  { border-color: rgba(255,214,0,0.25) !important; }

.contact-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-wa .contact-card-icon { background: rgba(37,211,102,0.12); color: #25d366; }
.contact-ph .contact-card-icon { background: rgba(255,214,0,0.1);   color: var(--yellow); }
.contact-em .contact-card-icon { background: rgba(255,214,0,0.1);   color: var(--yellow); }

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 2px;
}
.contact-card-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.contact-card-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    margin-top: 2px;
}
.contact-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: rgba(255,255,255,0.2);
    font-size: 1rem;
    transition: all 0.3s;
}
.contact-info-card:hover .contact-arrow { color: var(--yellow); transform: translate(2px,-2px); }

/* Feedback Form Card */
.feedback-form-card {
    background: var(--black-3);
    border: 1px solid rgba(255,214,0,0.12);
    border-radius: 20px;
    padding: 36px;
}
.feedback-form-card h5 { color: var(--white); }
.form-subtitle { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

.contact-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.83rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.contact-input {
    background: var(--black-4) !important;
    border: 1.5px solid rgba(255,255,255,0.07) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.9rem !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.contact-input::placeholder { color: rgba(255,255,255,0.25) !important; }
.contact-input:focus {
    border-color: var(--yellow) !important;
    box-shadow: 0 0 0 3px rgba(255,214,0,0.12) !important;
    outline: none !important;
    background: var(--black-4) !important;
}
select.contact-input option { background: var(--black-3); color: var(--white); }

/* Alert styles */
.contact-alert-success {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: 12px;
    padding: 16px 20px;
    color: #4ade80;
}
.contact-alert-error {
    background: rgba(255,80,80,0.1);
    border: 1px solid rgba(255,80,80,0.25);
    border-radius: 12px;
    padding: 16px 20px;
    color: #f87171;
}
.alert-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700;
    flex-shrink: 0;
}
.contact-alert-success .alert-icon-wrap { background: rgba(37,211,102,0.2); }
.contact-alert-error   .alert-icon-wrap { background: rgba(255,80,80,0.2); }

/* ---- CTA ---- */
.cta-section { background: var(--section-bg); }
.cta-card {
    background: var(--black);
    border: 1px solid rgba(255,214,0,0.18);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 78% 50%, rgba(255,214,0,0.1) 0%, transparent 55%),
                radial-gradient(ellipse at 22% 80%, rgba(255,214,0,0.05) 0%, transparent 45%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: var(--white); }

/* ---- Footer ---- */
.footer-section {
    background: var(--black);
    border-top: 1px solid rgba(255,214,0,0.08);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-contact:hover { color: var(--yellow); }
.social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.38); font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
hr.border-secondary { border-color: rgba(255,255,255,0.05) !important; }
.footer-section .text-muted { color: rgba(255,255,255,0.28) !important; }
.footer-section .btn-outline-secondary {
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}
.footer-section .btn-outline-secondary:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: all 0.3s;
    animation: waPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}
.wa-tooltip {
    position: absolute; right: 70px;
    background: var(--black-3); color: var(--white);
    font-size: 0.78rem; padding: 5px 12px;
    border-radius: 8px; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s;
    border: 1px solid rgba(255,214,0,0.1);
}
.wa-tooltip::after {
    content: '';
    position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-left-color: var(--black-3);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero-section .display-4 { font-size: 2rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
    .about-image-wrap { height: 250px; }
    .feedback-form-card { padding: 24px 18px; }
}