/* VERSION 6: Playful & Approachable */
:root {
    --bg-main: #ffffff;
    --bg-soft: #f4f8fb;
    --crimson: #900020;
    --crimson-light: #b81a3d;
    --blue: #8fd0ff;
    --yellow: #ffe68f;
    --text-main: #333940;
    --border-radius: 40px; /* Highly rounded */
}

html {
    scroll-behavior: smooth;
}

body.v6-playful {
    background: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
    overflow-x: hidden;
}

body.v6-playful.lang-ar { font-family: 'Cairo', sans-serif; }
body.v6-playful.lang-en { font-family: 'Nunito', sans-serif; } /* Nunito is very rounded/friendly */

.v6-container { max-width: 1050px; margin: 0 auto; padding: 0 20px; }
.d-flex { display: flex; justify-content: space-between; align-items: center; }
.center-text { text-align: center; }
.text-crimson { color: var(--crimson); }
.text-white { color: white; }
.text-gray { color: #888; }
.bg-soft { background: var(--bg-soft); }
.bg-yellow { background: var(--yellow); }
.bg-blue { background: var(--blue); }
.bg-crimson { background: var(--crimson); }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mt-5 { margin-top: 4rem; }
.mb-5 { margin-bottom: 4rem; }
.block-mt { display: inline-block; margin-top: 2rem;}

/* Nav */
.v6-nav { padding: 20px 0; background: rgba(255,255,255,0.9); position: sticky; top:0; z-index: 100;}
.v6-logo img { height: 60px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.bounce:hover { animation: bounceKey 0.5s; }

.nav-pills { display: flex; gap: 10px; }
.nav-pills a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
}
.nav-pills a:hover { background: var(--bg-soft); color: var(--crimson); }

/* Buttons */
.pill-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pill-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.pill-crimson { background: white; color: var(--crimson); border: 2px solid var(--crimson); }
.pill-crimson-solid { background: var(--crimson); color: white; }
.pill-white { background: white; color: var(--text-main); }

/* Hero */
.v6-hero {
    position: relative;
    padding: 80px 0 150px;
    background: var(--bg-soft);
    overflow: hidden;
}
.shape-bottom {
    clip-path: ellipse(150% 100% at 50% 0%);
}
.hero-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-box h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 20px; }
.hero-desc { font-size: 1.3rem; margin-bottom: 30px; }
.hero-actions { display: flex; justify-content: center; gap: 15px; }

/* Bubbles Decor */
.bubble {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.bubble-1 { width: 100px; height: 100px; background: var(--yellow); top: 0; left: 10%; opacity: 0.5;}
.bubble-2 { width: 200px; height: 200px; background: var(--blue); bottom: -50px; right: 5%; opacity: 0.3;}

/* Sections */
.v6-section { padding: 80px 0; }
.pt-0 { padding-top: 0; }
.text-huge { font-size: 3rem; margin-bottom: 10px; }

/* Happy Grid */
.happy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: -60px; }
.happy-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    position: relative;
    z-index: 3;
    border: 3px solid transparent;
    transition: 0.3s;
}
.happy-card:hover { border-color: var(--yellow); }
.card-icon {
    width: 80px; height: 80px; 
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.happy-card h2 { margin-bottom: 15px; }

.float-anim { animation: float 6s ease-in-out infinite; }
.delay-1 { animation-delay: 2s; }

/* Soft Grid (Why) */
.soft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.soft-item {
    background: white;
    border-radius: 30px;
    padding: 30px 20px;
    transition: 0.3s;
}
.soft-item:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(144,0,32,0.1); }
.s-icon { font-size: 3rem; margin-bottom: 15px; }
.soft-item h4 { color: var(--crimson); font-size: 1.2rem; }

/* Banner Box */
.banner-box {
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(144,0,32,0.3);
}
.banner-box h2 { font-size: 2.5rem; }
.pill-list { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pill-item {
    background: white;
    color: var(--crimson);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex; align-items: center; gap: 10px;
}

/* Brands Bubbles */
.bubbles-wrap { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap;}
.brand-bubble {
    width: 150px; height: 150px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: var(--crimson); font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.brand-bubble:hover { background: var(--crimson); color: white; transform: rotate(-10deg) scale(1.1); }
.brand-big { width: 200px; height: 200px; font-size: 2rem; background: var(--crimson); color: white;}
.brand-big:hover { background: white; color: var(--crimson); transform: scale(1.1) rotate(10deg); border: 2px solid var(--crimson);}

/* Footer */
.v6-footer { background: var(--bg-soft); padding: 80px 0; }
.contact-card {
    background: white;
    display: inline-block;
    padding: 30px 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
}
body[dir="ltr"] .contact-card { text-align: left; }

@keyframes bounceKey {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .nav-pills { display: none; }
    .hero-box h1 { font-size: 2.2rem; }
    .happy-grid, .soft-grid { grid-template-columns: 1fr; margin-top: 0;}
    .shape-bottom { clip-path: ellipse(200% 100% at 50% 0%); }
    .hero-actions { flex-direction: column; }
}


/* Contact Grid Added */
.footer-contact-new { padding: 80px 0; }
.footer-contact-new .v-container { max-width: 1200px; margin: 0 auto; padding: 0 20px;}
.default-h2 { font-size: 2.5rem; margin-bottom: 30px; text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 15px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-row a, .contact-cards > a { text-decoration: none; color: inherit; display: block; }
.contact-card { padding: 30px 20px; text-align: center; transition: all 0.3s; height: 100%; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; align-items: center;}
.contact-card i { font-size: 2.3rem; margin-bottom: 12px; }
.contact-card h4 { margin-bottom: 5px; font-size: 1.2rem; }
.contact-card span, .contact-card p { font-size: 1rem; }
.contact-card-full { width: 100%; }
.email-text { font-size: 0.95rem !important; word-wrap: break-word; }
.map { min-height: 400px; display: flex; border-radius: inherit;}
.btn-back-hub { display: inline-block; margin-top: 20px; padding: 10px 20px; text-decoration: none; border-radius: 8px;}

/* Social Icons specific */
.mb-2 { margin-bottom: 10px; }
.social-card-wrap { padding: 25px; }
.social-card-wrap i { margin-bottom: 0; }
.social-flex { display: flex; justify-content: center; gap: 20px; align-items: center; margin-top: 5px; }
.social-icon { 
    width: 55px; height: 55px; 
    border-radius: 50%; 
    display: inline-flex; justify-content: center; align-items: center; 
    background: rgba(128,128,128,0.1); 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.social-icon i { font-size: 1.6rem !important; margin: 0; }
.social-icon:hover { transform: translateY(-7px) scale(1.1); background: #fff;}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .map { min-height: 300px; }
}

/* Social Hovers colors */
.hover-facebook:hover i, .hover-facebook:hover { color: #1877f2 !important; border-color: #1877f2 !important; }
.hover-instagram:hover i, .hover-instagram:hover { color: #e1306c !important; border-color: #e1306c !important; }
.hover-tiktok:hover i, .hover-tiktok:hover { color: #ff0050 !important; border-color: #ff0050 !important; }

/* Version Specific Overrides */

.footer-contact-new { background: var(--bg-soft); color: var(--text-main); }
.contact-card { background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-radius: 30px; border: none;}
.contact-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 30px rgba(144,0,32,0.1); }
.contact-card > i { color: var(--blue); background: var(--bg-soft); width: 60px; height: 60px; line-height: 60px; border-radius: 50%; font-size: 1.5rem;}
.social-icon { background: var(--bg-soft); color: var(--blue); }
.map iframe { border-radius: 30px !important; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.btn-back-hub { background: white; color: var(--crimson); border-radius: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);}



/* Gallery Section Added */
.gallery-section { padding: 80px 0; overflow: hidden; }
.gallery-section .v-container { max-width: 1200px; margin: 0 auto; padding: 0 20px;}
.gallery-subtitle { font-size: 1.15rem; color: #888; text-align: center; margin-top: -15px;}
.gallery-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    cursor: grab;
}
.gallery-wrapper::-webkit-scrollbar { height: 8px; }
.gallery-wrapper::-webkit-scrollbar-track { background: rgba(128,128,128,0.1); border-radius: 10px; }
.gallery-wrapper::-webkit-scrollbar-thumb { background: var(--crimson, #900020); border-radius: 10px; }
.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.gallery-item {
    scroll-snap-align: center;
    flex: 0 0 auto;
}
.gallery-item img {
    height: 350px;
    width: 300px;
    object-fit: cover;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    user-select: none;
    -webkit-user-drag: none;
}
.gallery-item:hover img { transform: scale(1.02); }
@media (max-width: 768px) {
    .gallery-item img { height: 280px; width: 250px; }
    .gallery-track { gap: 15px; }
}

/* Version Specific Overrides */

.gallery-section { background: var(--bg-soft); }
.gallery-item img { border-radius: 40px; box-shadow: 0 10px 30px rgba(144,0,32,0.1); border: 3px solid #fff; }



/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    animation: zoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.1);
}
@keyframes zoom {
    from {transform:scale(0.5); opacity:0} 
    to {transform:scale(1); opacity:1}
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.lightbox-close:hover {
    color: var(--crimson, #ff0000);
    transform: scale(1.1);
}
