/* ===========================
   Eva Bloom - styles.css
   =========================== */

:root {
    --primary: #8B5CF6;
    --primary-dark: #6D28D9;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --dark: #1E1B2E;
    --dark-2: #2D2A3E;
    --text: #374151;
    --text-light: #6B7280;
    --white: #ffffff;
    --light-bg: #F9F7FF;
    --border: #E5E7EB;
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-soft: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(236,72,153,0.1) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(30, 27, 46, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139,92,246,0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 0.5px;
}

.navbar-brand i { color: var(--secondary); }
.tm { font-size: 0.7em; vertical-align: super; }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--white) !important; }

.navbar .btn-primary {
    background: var(--gradient);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,92,246,0.4);
}

/* ===== HERO ===== */
.hero-section {
    background: var(--dark);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(139,92,246,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(236,72,153,0.15) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.hero-content { padding: 2rem 0; }

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
}

.price-tag .text-muted { color: rgba(255,255,255,0.5) !important; }
.price-tag .text-success { color: #34D399 !important; }

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139,92,246,0.45);
    background: var(--gradient);
    filter: brightness(1.1);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.trust-badges { margin-top: 1rem; }

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i { font-size: 1rem; }

/* Hero Image */
.hero-image { padding: 2rem; }

.hero-img-placeholder {
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(236,72,153,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 5rem;
    border-radius: 20px;
    object-fit: cover;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-1 { top: 10%; left: -10%; animation-delay: 0s; }
.floating-2 { top: 50%; right: -10%; animation-delay: 1s; }
.floating-3 { bottom: 10%; left: -5%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }

.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; margin-top: 0.5rem; }

/* ===== ABOUT ===== */
.about-section { background: var(--light-bg); }

.about-img-placeholder {
    width: 100%;
    min-height: 380px;
    background: var(--gradient-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 4rem;
    object-fit: cover;
}

.about-section .section-header h2 { font-size: 1.9rem; }

.feature-list { margin: 1.5rem 0; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-item i { color: var(--primary); font-size: 1.1rem; }

/* ===== PROCESS ===== */
.process-section { background: var(--dark); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.6); }

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s;
    height: 100%;
}

.step-card:hover {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-card h4 { color: var(--white); margin-bottom: 1rem; }
.step-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ===== BENEFITS ===== */
.benefits-section { background: var(--light-bg); }

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139,92,246,0.15);
    border-color: rgba(139,92,246,0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card h4 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.2rem; }
.benefit-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--white); }

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(139,92,246,0.12); }

.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-placeholder {
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.review-info h5 { margin: 0; font-size: 1rem; color: var(--dark); font-family: 'Poppins', sans-serif; font-weight: 600; }

.stars i { color: var(--accent); font-size: 0.85rem; }

.review-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin: 0; }

/* ===== EXPERIENCE (TIMELINE) ===== */
.experience-section { background: var(--light-bg); }

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.timeline-week {
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    padding: 0.2rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.timeline-content h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.timeline-content p { color: var(--text-light); font-size: 0.9rem; margin: 0; font-style: italic; }

/* ===== GUARANTEE ===== */
.guarantee-section { background: var(--dark); }

.guarantee-badge {
    width: 140px;
    height: 140px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    margin: 0 auto 2rem;
    box-shadow: 0 0 60px rgba(139,92,246,0.4);
}

.guarantee-section h2 { color: var(--white); margin-bottom: 1rem; }
.guarantee-section p { color: rgba(255,255,255,0.75); line-height: 1.7; }

.guarantee-points { margin-top: 1.5rem; }

.point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.point i { color: #34D399; font-size: 1.1rem; }

/* ===== ORDER SECTION ===== */
.order-section { background: var(--light-bg); }

.order-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(139,92,246,0.2);
}

.order-header {
    background: var(--gradient);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.order-header h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.order-subtitle { opacity: 0.85; margin: 0; }

.order-content { padding: 2rem; }

.order-img-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.order-features { margin-bottom: 1.5rem; }

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.feature:last-child { border-bottom: none; }
.feature i { color: var(--primary); }

.pricing { text-align: center; margin: 1.5rem 0; }
.old-price { color: var(--text-light); text-decoration: line-through; font-size: 0.95rem; }
.new-price { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 0.25rem 0; }
.savings { background: #DEF7EC; color: #065F46; border-radius: 50px; padding: 0.25rem 1rem; display: inline-block; font-size: 0.85rem; font-weight: 600; }

.btn-order {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px !important;
    margin-top: 1rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-soft);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button::after { filter: hue-rotate(260deg); }
.accordion-body { color: var(--text-light); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 4rem 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i { color: var(--secondary); margin-right: 0.5rem; }

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.75rem; }

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.footer h5 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.copyright { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }

.footer-legal {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .floating-1, .floating-2, .floating-3 { display: none; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-right: 0; padding-left: 55px; justify-content: flex-start; }
    .timeline-item:nth-child(even) { padding-left: 55px; padding-right: 0; }
    .timeline-item::after { left: 20px; }
    .footer-legal { justify-content: flex-start; margin-top: 0.5rem; }
}

@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .hero-section { padding-top: 100px; padding-bottom: 40px; }
    .cta-buttons .btn { width: 100%; text-align: center; }
}

/* ===== UTILITY ===== */
.badge { font-family: 'Poppins', sans-serif; }
