/* =====================================================
   JEWELLERY.CSS — Digital Story Studio
   Scoped to Model/Fashion/Jewellery service pages only.
   All selectors prefixed .jwl- — zero clash with nav.css / style.css
   ===================================================== */

/* ---- Hero ---- */
.jwl-hero {
    text-align: center;
    padding: 70px 5% 50px;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(180,120,255,0.06) 100%);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    position: relative;
    overflow: hidden;
}
.jwl-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(212,175,55,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.jwl-hero-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
    animation: jwl-float 3s ease-in-out infinite;
}
@keyframes jwl-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.jwl-page-title {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    color: #d4af37;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
    font-weight: 800;
    line-height: 1.2;
}
.jwl-page-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light, #b0b0b0);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ---- Breadcrumb ---- */
.jwl-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(212,175,55,0.6);
    margin-bottom: 1.5rem;
}
.jwl-breadcrumb a { color: rgba(212,175,55,0.7); text-decoration: none; }
.jwl-breadcrumb a:hover { color: #d4af37; }
.jwl-breadcrumb .sep { color: rgba(212,175,55,0.4); }

/* ---- Buttons ---- */
.jwl-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f0c060);
    color: #0a0a1a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
}
.jwl-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212,175,55,0.45); }

.jwl-btn-outline {
    display: inline-block;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}
.jwl-btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-3px); }

.jwl-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---- Layout ---- */
.jwl-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.jwl-section { padding: 70px 0; }
.jwl-alt-bg { background: rgba(212,175,55,0.03); }
.jwl-section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #d4af37;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
}
.jwl-section-sub { text-align: center; color: var(--text-light, #b0b0b0); margin-bottom: 40px; font-size: 1rem; }

/* ---- Feature Grid ---- */
.jwl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
    margin-top: 10px;
}
.jwl-card {
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.jwl-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(212,175,55,0.18); }
.jwl-card-img { position: relative; height: 200px; overflow: hidden; }
.jwl-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.jwl-card:hover .jwl-card-img img { transform: scale(1.05); }
.jwl-card-body { padding: 20px; }
.jwl-card-body h3 { color: #d4af37; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.jwl-card-body p { color: var(--text-light, #b0b0b0); font-size: 0.88rem; line-height: 1.6; }

/* ---- Story + Stats ---- */
.jwl-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.jwl-story-text h2 { text-align: left; }
.jwl-story-text p { color: var(--text-light, #b0b0b0); line-height: 1.8; margin-bottom: 1rem; }
.jwl-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.jwl-stat-item {
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.jwl-stat-number { font-size: 2rem; font-weight: 900; color: #d4af37; }
.jwl-stat-label { font-size: 0.82rem; color: var(--text-light, #b0b0b0); margin-top: 4px; }

/* ---- Info Box (FAQ) ---- */
.jwl-info-box {
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 16px;
}
.jwl-info-box h4 { color: #d4af37; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.jwl-info-box p { color: var(--text-light, #b0b0b0); font-size: 0.9rem; line-height: 1.7; }

/* ---- Packages ---- */
.jwl-packages { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 10px; }
.jwl-package-card {
    background: rgba(10,10,30,0.7);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 16px;
    padding: 30px 26px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.jwl-package-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(212,175,55,0.2); }
.jwl-package-card.featured-pkg {
    border-color: #d4af37;
    background: rgba(212,175,55,0.07);
    box-shadow: 0 8px 30px rgba(212,175,55,0.2);
}
.pkg-badge {
    display: inline-block;
    background: #d4af37;
    color: #0a0a1a;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.jwl-package-card h3 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.jwl-package-price { font-size: 1.9rem; font-weight: 900; color: #d4af37; margin-bottom: 18px; }
.jwl-package-card ul { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.jwl-package-card ul li { color: var(--text-light, #b0b0b0); font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid rgba(212,175,55,0.08); }
.jwl-package-card ul li::before { content: '✓ '; color: #d4af37; font-weight: 700; }

/* ---- Reels ---- */
.jwl-reels-section { padding: 60px 0; }
.jwl-reels-section h2 { text-align: center; color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.jwl-ig-gradient { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.jwl-reels-track { display: flex; gap: 20px; overflow-x: auto; padding: 20px 5%; scroll-snap-type: x mandatory; }
.jwl-reel-card { min-width: 280px; scroll-snap-align: start; }
.jwl-reel-embed { position: relative; padding-top: 177%; border-radius: 12px; overflow: hidden; background: #111; }
.jwl-reel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.jwl-ig-follow-btn {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

/* ---- YouTube ---- */
.jwl-video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 10px; }
.jwl-video-card {
    background: rgba(10,10,30,0.8);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}
.jwl-video-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(212,175,55,0.15); }
.jwl-video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.jwl-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.jwl-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.jwl-yt-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,0,0,0.4); }

/* ---- CTA Bar ---- */
.jwl-cta-bar {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(180,120,255,0.07));
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 60px 5%;
    text-align: center;
}
.jwl-cta-bar h2 { color: #d4af37; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.jwl-cta-bar p { color: var(--text-light, #b0b0b0); margin-bottom: 28px; }
.jwl-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.jwl-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212,175,55,0.4);
    color: #d4af37;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.jwl-quick-btn:hover { background: rgba(212,175,55,0.1); transform: translateY(-2px); }

/* ---- Offer Marquee ---- */
.jwl-offer-marquee {
    background: linear-gradient(90deg, #d4af37, #f0c060, #d4af37);
    color: #0a0a1a;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.9rem;
}
.jwl-marquee-content { display: inline-block; animation: jwl-marquee 25s linear infinite; padding-left: 100%; }
@keyframes jwl-marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---- YouTube Player (shared) ---- */
.jwl-yt-player { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; background: #000; }
.jwl-yt-player img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.jwl-yt-player:hover img { transform: scale(1.04); }
.jwl-yt-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.25); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .jwl-story { grid-template-columns: 1fr; gap: 40px; }
    .jwl-stats { grid-template-columns: 1fr 1fr; }
    .jwl-grid { grid-template-columns: 1fr; }
    .jwl-packages { grid-template-columns: 1fr; }
    .jwl-video-grid { grid-template-columns: 1fr; }
    .jwl-story-text h2 { text-align: center; }
}
@media (max-width: 480px) {
    .jwl-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .jwl-hero-btns { flex-direction: column; align-items: center; }
    .jwl-cta-btns { flex-direction: column; align-items: center; }
}
