/* ==========================================================================
   1. LANDING PAGE - FESTIVE SAGE & ROSE STYLE (STABLE RESPONSIVE)
   ========================================================================== */

:root {
    --lux-dark: #f3f5f3;           /* Sfondi kryesor: Gjelbër sherbele shumë e lehtë */
    --lux-card-bg: #ffffff;         /* Kartat e bardha të pastra për kontrast */
    --lux-border: rgba(47, 62, 53, 0.08);
    --gold-1: #4a5d51;             /* E gjelbër e mbyllur sherbele (Primare) */
    --gold-2: #2f3e35;             /* Nuancë më e mbyllur për tekste/theksime */
    --rose-accent: #d4b4b8;        /* Rozë pluhur romantike për detaje */
    --text-w: #1e2923;             /* Teksti kryesor i mbyllut (jo i zi plotësisht) */
    --text-m: #69786f;             /* Teksti dytësor */
    --font-serif: 'Cinzel', 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

body {
    background-color: var(--lux-dark);
    color: var(--text-w);
    font-family: var(--font-sans);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Orbs ndriçues në prapavijë - Përshtatur me nuancën rozë të butë */
.luxury-bg-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}
.glow-orb-1 {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 180, 184, 0.4) 0%, rgba(243, 245, 243, 0) 70%);
}
.glow-orb-2 {
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 93, 81, 0.06) 0%, rgba(243, 245, 243, 0) 70%);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* HEADER NAVIGATION */
.main-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(243, 245, 243, 0.85); /* Sfond i çelur translucent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--lux-border);
    padding: 18px 0;
    transition: all 0.3s ease;
}
.header-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-w);
    text-decoration: none;
}
.site-navigation {
    display: flex;
    align-items: center;
    gap: 35px;
}
.nav-link-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-m);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.25s ease;
}
.nav-link-item:hover, .nav-link-item.active { color: var(--gold-1); }
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-1), var(--rose-accent));
    transition: width 0.25s ease;
}
.nav-link-item:hover::after, .nav-link-item.active::after { width: 100%; }

.btn-header-gold {
    display: inline-block;
    background: rgba(74, 93, 81, 0.06);
    border: 1px solid rgba(74, 93, 81, 0.2);
    color: var(--gold-1);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-header-gold:hover {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #ffffff;
}

/* HERO SECTION */
.hero-premium { padding: 160px 0 80px 0; }
.hero-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 93, 81, 0.08);
    border: 1px solid rgba(74, 93, 81, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 25px;
}
.badge-spark { color: var(--rose-accent); font-size: 12px; }
.badge-text { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold-1); }
.main-luxury-title { font-size: 52px; font-weight: 700; line-height: 1.15; margin-bottom: 25px; letter-spacing: -0.5px; color: var(--text-w); }
.hero-description { font-size: 17px; line-height: 1.65; color: var(--text-m); margin-bottom: 40px; }
.hero-action-area { display: flex; align-items: center; gap: 25px; }

.btn-gold-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 8px 30px rgba(74, 93, 81, 0.15);
    transition: all 0.3s ease;
}
.btn-gold-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 93, 81, 0.25);
}
.btn-secondary-link { color: var(--text-w); text-decoration: none; font-weight: 600; font-size: 14px; opacity: 0.8; transition: all 0.2s; }
.btn-secondary-link:hover { opacity: 1; color: var(--gold-1); }

/* MOCKUP TELEFONI (Tani pasqyron stilin e ri të çelur Sage) */
.hero-visual-box { display: flex; justify-content: center; width: 100%; }
.phone-mockup-wrapper { width: 310px; height: 610px; background: #ffffff; border: 10px solid #e1e5e1; border-radius: 44px; box-shadow: 0 25px 60px rgba(47, 62, 53, 0.08); padding: 10px; position: relative; box-sizing: border-box;}
.phone-speaker { width: 60px; height: 4px; background: #e1e5e1; border-radius: 10px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); z-index: 5; }
.phone-screen-fluid { width: 100%; height: 100%; background: #f3f5f3; border-radius: 32px; overflow: hidden; display: flex; flex-direction: column; padding: 24px 12px; box-sizing: border-box; }
.phone-app-header { text-align: center; margin-bottom: 15px; }
.phone-studio { font-size: 8px; letter-spacing: 2px; color: var(--text-m); display: block; margin-bottom: 4px;}
.phone-app-header h3 { font-family: var(--font-serif); font-size: 22px; color: var(--text-w); margin: 0; font-weight: 400; }
.phone-date { font-size: 8px; color: var(--text-m); letter-spacing: 1px; margin-top: 2px; font-weight: 600; }
.phone-tabs-fake { display: flex; background: rgba(255,255,255,0.7); border: 1px solid var(--lux-border); padding: 3px; border-radius: 50px; margin-bottom: 15px; }
.fake-tab { flex: 1; text-align: center; font-size: 10px; padding: 8px; color: var(--text-m); border-radius: 50px; font-weight: 600;}
.active-fake { background: linear-gradient(135deg, var(--gold-1), var(--gold-2)); color: #fff; }
.phone-gallery-stream-demo { display: flex; flex-direction: column; gap: 12px; overflow: hidden; flex-grow: 1; }
.demo-card-stream { background: #ffffff; border: 1px solid var(--lux-border); border-radius: 14px; padding: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.demo-avatar-line { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.d-av { width: 24px; height: 24px; background: rgba(74, 93, 81, 0.08); color: var(--gold-1); border-radius: 50%; font-size: 10px; font-weight: 700; text-align: center; line-height: 24px; }
.demo-avatar-meta { display: flex; flex-direction: column; }
.demo-avatar-line h4 { font-size: 11px; font-weight: 600; color: var(--text-w); margin: 0; }
.demo-avatar-line span { font-size: 8px; color: var(--text-m); }
.demo-media-box { height: 110px; background-size: cover; background-position: center; border-radius: 8px; display: flex; align-items: flex-end; padding: 8px; box-sizing: border-box; }
.demo-media-box span { font-size: 10px; color: #fff; background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; }
.p-img-1 { background-image: linear-gradient(transparent, rgba(0,0,0,0.4)), url('uploads/demo1.jpg'); background-color: #eaeaea; }
.p-img-2 { background-image: linear-gradient(transparent, rgba(0,0,0,0.4)), url('uploads/demo2.jpg'); background-color: #eaeaea; }

/* STEPS SECTION */
.steps-premium-section { padding: 100px 0; border-top: 1px solid var(--lux-border); }
.section-header-centered { text-align: center; max-width: 600px; margin: 0 auto 60px auto; }
.sub-subtitle { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold-1); display: block; margin-bottom: 12px; }
.section-header-centered h2 { font-size: 38px; font-weight: 700; margin-bottom: 15px; color: var(--text-w); }
.section-header-centered p { color: var(--text-m); font-size: 16px; }
.steps-luxury-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.step-card-modern { background: var(--lux-card-bg); border: 1px solid var(--lux-border); padding: 35px 30px; border-radius: 24px; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(47, 62, 53, 0.03); }
.step-card-modern:hover { border-color: var(--rose-accent); transform: translateY(-2px); }
.step-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.step-badge-num { font-size: 20px; font-weight: 800; color: var(--gold-1); background: rgba(74, 93, 81, 0.06); width: 46px; height: 46px; border-radius: 12px; text-align: center; line-height: 46px; }
.step-line-decorator { height: 1px; flex-grow: 1; background: linear-gradient(90deg, var(--lux-border), transparent); margin-left: 20px; }
.step-card-modern h3 { font-size: 19px; font-weight: 600; margin-bottom: 14px; color: var(--gold-2); margin-top: 0; }
.step-card-modern p { font-size: 14px; line-height: 1.6; color: var(--text-m); margin: 0; }

/* FEATURES SECTION */
.features-premium-section { padding: 100px 0; background: rgba(255,255,255,0.3); border-top: 1px solid var(--lux-border); }
.features-asymmetric-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.features-text-content h2 { font-size: 38px; font-weight: 700; margin-bottom: 20px; line-height: 1.25; color: var(--text-w); }
.features-intro-p { font-size: 16px; color: var(--text-m); margin-bottom: 40px; line-height: 1.6; }
.feature-luxury-row { display: flex; gap: 20px; margin-bottom: 30px; }
.feature-luxury-icon { width: 44px; height: 44px; background: #ffffff; border: 1px solid var(--lux-border); color: var(--gold-1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.feature-luxury-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--gold-2); margin-top: 0; }
.feature-luxury-info p { font-size: 13.5px; line-height: 1.55; color: var(--text-m); margin: 0; }

.features-visual-decor { position: relative; padding: 20px 0; }
.experience-card-glass { background: #ffffff; border: 1px solid var(--lux-border); padding: 24px; border-radius: 20px; display: flex; align-items: center; gap: 20px; max-width: 320px; box-shadow: 0 15px 35px rgba(47, 62, 53, 0.04); }
.exp-number { font-size: 32px; font-weight: 800; color: var(--gold-1); }
.exp-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; margin-top: 0; color: var(--text-w); }
.exp-text p { font-size: 11px; color: var(--text-m); line-height: 1.4; margin: 0; }
.secondary-exp { margin-left: auto; margin-top: 30px; border-color: rgba(212, 180, 184, 0.4); background: #ffffff; }
.exp-icon-star { font-size: 24px; color: var(--rose-accent); }

/* MEDIA QUERIES RESPONSIVE */
@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-action-area { justify-content: center; }
    .features-asymmetric-layout { grid-template-columns: 1fr; gap: 40px; }
    .features-text-content { text-align: center; }
    .feature-luxury-row { text-align: left; max-width: 600px; margin: 0 auto 25px auto; }
    .features-visual-decor { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .experience-card-glass, .experience-card-glass.secondary-exp { margin: 0 auto; width: 100%; max-width: 400px; }
}

@media (max-width: 768px) {
    .site-navigation { display: none; }
    .main-site-header { background: rgba(243, 245, 243, 0.95); }
    .hero-premium { padding: 120px 0 60px 0; }
    .main-luxury-title { font-size: 36px; line-height: 1.2; }
    .hero-description { font-size: 15px; }
    .hero-action-area { flex-direction: column; width: 100%; gap: 15px; }
    .btn-gold-premium { width: 100%; justify-content: center; box-sizing: border-box; }
    .btn-secondary-link { width: 100%; text-align: center; display: block; padding: 5px 0; }
    .steps-luxury-grid { grid-template-columns: 1fr; gap: 20px; }
    .step-line-decorator { display: none; }
    .phone-mockup-wrapper { width: 100%; max-width: 290px; height: 550px; background: #ffffff; border-color: #eaeaea; }
}

@media (max-width: 480px) {
    .main-luxury-title { font-size: 28px; }
    .section-header-centered h2, .features-text-content h2 { font-size: 24px; }
    .site-logo { font-size: 16px; letter-spacing: 1.5px; }
    .btn-header-gold { padding: 8px 14px; font-size: 12px; }
    .step-card-modern { padding: 25px 20px; }
}