/* Base & Typography */
:root {
    --bg-color: #FAF7F5; /* Soft pearl cream */
    --text-main: #4A403A; /* Elegant warm charcoal */
    --text-muted: #8F827B;
    --accent-light: #F8C3CA; /* Soft pale rose */
    --accent-main: #DE8F96; /* Chic rose pink */
    --accent-dark: #C6727A;
    --accent-gradient: linear-gradient(135deg, #F6A8B0 0%, #D47983 100%);
    --gold: #C9A26A;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.9);
    --shadow-soft: 0 15px 35px rgba(222, 143, 150, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Elegant Headers */
h1, h2, h3, h4, .section-title, .rose-btn {
    font-family: 'El Messiri', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Modern Flowing Background Blobs */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.6;
    animation: floatingShape 12s infinite alternate ease-in-out;
}
.shape1 { width: 50vw; height: 50vw; background: rgba(248, 195, 202, 0.7); top: -10vw; right: -20vw; }
.shape2 { width: 40vw; height: 40vw; background: rgba(222, 143, 150, 0.3); bottom: 15%; left: -15vw; animation-delay: -6s; }
.shape3 { width: 35vw; height: 35vw; background: rgba(201, 162, 106, 0.2); top: 40%; right: 10vw; }

@keyframes floatingShape {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(40px, -40px); }
}

/* Clean Bright Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(222, 143, 150, 0.2);
    border-color: #fff;
}

/* Typography styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
}
.section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* Buttons */
.rose-btn {
    display: inline-block;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(222, 143, 150, 0.5);
    transition: all 0.4s ease;
}
.rose-btn:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 15px 35px rgba(222, 143, 150, 0.7);
}
.rose-btn.glowing {
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 15px rgba(222, 143, 150, 0.4); }
    100% { box-shadow: 0 0 35px rgba(222, 143, 150, 0.8); }
}

/* 1. Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}
.navbar.scrolled {
    background: rgba(253, 251, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(222, 143, 150, 0.1);
    padding: 0.8rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.nav-logo img {
    height: 55px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 3rem;
}
.nav-links a {
    font-family: 'El Messiri', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0; 
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 5px;
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--accent-main);
}
.nav-cart .cart-pill {
    background: #fff;
    color: var(--accent-main);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--accent-light);
}
.nav-cart .cart-pill:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-2px);
    border-color: transparent;
}

/* 2. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.hero-text {
    flex: 1;
    text-align: right;
    animation: fadeInUp 1.2s ease-out;
}
.hero-content {
    max-width: 700px; /* modified for split layout */
}
.hero-video-portrait {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1.5s ease-out;
}
.video-portrait-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    padding: 0;
    box-shadow: 0 25px 50px rgba(222, 143, 150, 0.4);
    border: 6px solid #fff;
}
@supports not (aspect-ratio: 9/16) {
    .video-portrait-wrapper {
        padding-bottom: 177.77%;
        height: 0;
    }
}
.video-portrait-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 34px;
}
.badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: var(--accent-main);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(222, 143, 150, 0.15);
    border: 1px solid var(--accent-light);
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-main);
}
.hero-content h1 span {
    color: var(--accent-main);
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-muted);
}

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

/* 3. Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: -60px auto 5rem;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}
.badge-card {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
    justify-content: center;
    text-align: center;
    background: #ffffff;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(248, 195, 202, 0.8);
}
.badge-card i {
    color: var(--accent-main);
}
.icon-circle i {
    color: #fff;
}
.badge-card p {
    font-family: 'El Messiri', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-main);
}

/* 4. Why Choose Us (Split Layout) */
.why-us {
    padding: 7rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.why-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}
.why-text {
    flex: 1;
}
.why-text .section-title {
    text-align: right;
    margin-bottom: 1.5rem;
}
.why-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.chic-list li {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
}
.chic-list i {
    color: var(--accent-main);
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.why-image {
    flex: 1;
    position: relative;
    padding: 1rem;
    border-radius: 40px;
    background: #fff;
}
.why-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'El Messiri', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(222, 143, 150, 0.4);
    animation: floatingShape 4s infinite alternate;
}

/* Products Showcase */
.products-showcase {
    padding: 7rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.showcase-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.product-item {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}
.product-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(248, 195, 202, 0.5) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
    transition: all 0.6s ease;
}
.product-item:hover .product-bg {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(222, 143, 150, 0.3) 0%, transparent 70%);
}
.product-item img {
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0px 15px 20px rgba(0,0,0,0.1));
    mix-blend-mode: multiply; /* Removes white background professionally */
}
.product-item:hover img {
    transform: scale(1.1) translateY(-15px);
}
.product-item h4 {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: var(--accent-dark);
}
.product-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.small-btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* 5. Timeline */
.timeline {
    padding: 7rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-container {
    position: relative;
    padding-right: 40px;
}
.timeline-line {
    position: absolute;
    right: 28px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-light), rgba(248,195,202,0.1));
    border-radius: 2px;
}
.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}
.timeline-step:last-child {
    margin-bottom: 0;
}
.step-number {
    position: absolute;
    right: -42px;
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-main);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(222, 143, 150, 0.3);
}
.step-content {
    margin-right: 4rem;
    padding: 2.5rem;
    flex: 1;
    width: 100%;
    background: #fff;
}
.step-content h3 {
    color: var(--accent-dark);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}
.step-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* 6. Promise Banner */
.promise-banner {
    padding: 7rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.promise-content {
    padding: 6rem 3rem;
    background: #fff;
    border: 1px solid var(--glass-border);
    position: relative;
}
.promise-icon {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
}
.promise-content blockquote {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: var(--text-main);
    font-family: 'El Messiri', sans-serif;
}

/* 7. Testimonials */
.testimonials {
    padding: 7rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}
.testimonial-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    background: #fff;
    margin-top: 40px; /* Space for the avatar overflow */
}
.user-avatar {
    margin-top: -70px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stars i {
    color: var(--gold);
    font-size: 1.2rem;
}
.testimonial-card p {
    flex-grow: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}
.testimonial-card h4 {
    color: var(--accent-dark);
    margin-top: 1rem;
    font-size: 1.4rem;
    font-family: 'El Messiri', sans-serif;
}



/* 9. Footer */
.footer {
    background: #fff;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(222, 143, 150, 0.2);
    margin-top: 4rem;
}
.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-logo .f-logo {
    height: 60px;
    margin-bottom: 1rem;
}
.footer-slogan {
    font-family: 'El Messiri', sans-serif;
    color: var(--accent-dark);
    font-size: 1.2rem;
}
.footer-contact {
    text-align: right;
}
.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.footer-contact .numbers-wrapper {
    display: flex;
    gap: 1rem;
    direction: ltr; /* keep numbers left-to-right */
    justify-content: flex-end; /* right-aligned on desktop */
}
.phone-link {
    color: var(--accent-main);
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(222, 143, 150, 0.08); /* slight pink tint */
    border: 1px solid rgba(222, 143, 150, 0.2);
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}
.phone-link i {
    font-size: 1.1rem;
}
.phone-link:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(222, 143, 150, 0.3);
}
.copyright {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(222, 143, 150, 0.1);
    padding-top: 2rem;
    font-size: 1rem;
}

/* 8. Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 40px;
    right: 40px; /* Moved to right for RTL */
    left: auto;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-wa:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    .hero-video-portrait {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }
    .why-wrapper {
        flex-direction: column;
    }
    .why-text .section-title {
        text-align: center;
    }
    .product-item img {
        height: 280px;
    }
}

@media (max-width: 900px) {
    .navbar {
        position: absolute; /* Un-stick on mobile so it doesn't overlap products */
        background: rgba(253, 251, 250, 0.95);
    }
    .navbar.scrolled {
        background: rgba(253, 251, 250, 0.95);
        box-shadow: none;
    }
    .nav-links {
        display: none; 
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .promise-content blockquote {
        font-size: 1.8rem;
    }
    .nav-container {
        padding: 0 1.5rem;
    }
    .nav-cart .cart-pill {
        padding: 0.5rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    .hero-text h1 {
        font-size: 2.4rem;
    }
    .hero-text p {
        font-size: 1.2rem;
    }
    .rose-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    .timeline {
        padding: 4rem 1.5rem;
    }
    .timeline-container {
        padding-right: 25px;
    }
    .timeline-line {
        right: 17px;
    }
    .step-number {
        right: -25px;
        min-width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-width: 2px;
    }
    .step-content {
        margin-right: 2rem;
        padding: 1.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer-contact {
        text-align: center;
    }
    .footer-contact .numbers-wrapper {
        justify-content: center;
        flex-direction: column;
    }
    .floating-wa {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    .why-image {
        padding: 0.5rem;
    }
    .floating-badge {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        right: -10px;
        bottom: 20px;
    }
}

