/* ===== RESET & BAZĂ ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Quicksand', sans-serif;
    background: #fef9f4; color: #3e2e2a;
    scroll-behavior: smooth; line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #fff0eb, #fde2d4);
    padding: 18px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky; top: 0; z-index: 100; backdrop-filter: blur(6px);
    border-bottom: 2px solid rgba(255, 215, 190, 0.3);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #b45f4d; letter-spacing: -0.5px; }
.logo i { color: #d48d7a; margin-right: 6px; }

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown { position: relative; display: inline-block; margin-left: 10px; }
.lang-dropdown-btn {
    background: none; border: 2px solid #d48d7a; border-radius: 30px;
    padding: 6px 16px 6px 12px; font-size: 0.95rem; font-weight: 600; color: #4d3630;
    cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.2s;
    font-family: 'Quicksand', sans-serif;
}
.lang-dropdown-btn:hover { background: rgba(212, 141, 122, 0.08); }
.lang-dropdown-menu {
    position: absolute; top: calc(100% + 8px); right: 0; background: #fff;
    border-radius: 20px; padding: 8px 0; min-width: 100px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08); border: 1px solid #f0ddd5;
    display: none; z-index: 999; list-style: none;
}
.lang-dropdown-menu.open { display: block; }
.lang-dropdown-menu li {
    padding: 10px 20px; cursor: pointer; display: flex; align-items: center; gap: 10px;
    font-weight: 600; color: #4d3630; transition: 0.15s; font-size: 0.95rem;
}
.lang-dropdown-menu li:hover { background: #fdf3ee; }
.lang-dropdown-menu li .flag { font-size: 1.2rem; }

nav ul { display: flex; gap: 28px; list-style: none; font-weight: 600; align-items: center; flex-wrap: wrap; }
nav a { color: #4d3630; transition: 0.3s; position: relative; font-size: 1.05rem; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 3px; background: #d48d7a; transition: 0.3s; border-radius: 4px; }
nav a:hover::after { width: 100%; }
nav a:hover { color: #b45f4d; }
.menu-toggle { display: none; font-size: 1.8rem; background: none; border: none; color: #4d3630; cursor: pointer; }

/* ===== SECȚIUNI GENERALE ===== */
section { padding: 70px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #4d3630; text-align: center; margin-bottom: 16px; }
.section-title span { color: #b45f4d; }
.section-sub { text-align: center; font-size: 1.15rem; color: #7a5e55; max-width: 650px; margin: 0 auto 50px; }
.btn-primary {
    display: inline-block; background: #d48d7a; color: #fff; padding: 14px 40px;
    border-radius: 60px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
    transition: 0.25s; box-shadow: 0 8px 24px rgba(212, 141, 122, 0.25); text-align: center;
}
.btn-primary:hover { background: #b45f4d; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(180, 95, 77, 0.35); }
.btn-large { padding: 18px 60px; font-size: 1.3rem; }

/* ===== HERO ===== */
#hero { padding: 40px 0 60px; background: linear-gradient(130deg, #fef6f1 0%, #fce9e0 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3.4rem; line-height: 1.2; color: #3e2e2a; }
.hero-text h1 span { color: #b45f4d; }
.hero-text p { font-size: 1.2rem; color: #5f4640; margin: 20px 0 18px; max-width: 500px; }
.hero-bullets { list-style: none; margin: 20px 0 25px; }
.hero-bullets li { font-size: 1.1rem; color: #4d3630; margin-bottom: 8px; }
.hero-bullets li i { color: #d48d7a; margin-right: 10px; }
.hero-price { font-size: 2.6rem; font-weight: 700; color: #b45f4d; margin: 15px 0 20px; }
.hero-price small { font-size: 1.2rem; font-weight: 400; color: #7a5e55; text-decoration: line-through; margin-left: 12px; }
.hero-image img {
    max-width: 100%; border-radius: 40px 40px 40px 0; box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
    width: 100%; height: auto; object-fit: cover; aspect-ratio: 1/1; background: #edd7cd;
}

/* ===== CARDS ===== */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: #fff; padding: 28px 22px; border-radius: 36px; text-align: center;
    border: 1px solid #f0ddd5; transition: 0.25s; box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.card:hover { border-color: #d48d7a; transform: translateY(-6px); box-shadow: 0 16px 30px rgba(212, 141, 122, 0.08); }
.card i { font-size: 2.6rem; color: #d48d7a; margin-bottom: 12px; }
.card h4 { font-size: 1.2rem; color: #4d3630; margin-bottom: 6px; }
.card p { color: #6f554c; font-size: 0.95rem; }

/* ===== MODULE ===== */
.module-list { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.module-item {
    background: #fff; padding: 18px 28px; border-radius: 60px; border: 1px solid #f0ddd5;
    font-weight: 600; color: #4d3630; display: inline-flex; align-items: center; gap: 10px;
}
.module-item i { color: #d48d7a; }

/* ===== BEFORE/AFTER ===== */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #fff; border-radius: 60px; padding: 40px 30px; border: 1px solid #f0ddd5; }
.ba-col ul { list-style: none; margin-top: 15px; }
.ba-col ul li { font-size: 1.1rem; margin-bottom: 12px; }
.ba-col ul li i { margin-right: 12px; width: 24px; }
.ba-col.before ul li i { color: #d48d7a; }
.ba-col.after ul li i { color: #4caf50; }
.ba-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #4d3630; }

/* ===== TESTIMONIALE ===== */
.testimonial { text-align: center; padding: 24px 22px; }
.testimonial .stars { color: #f5b342; letter-spacing: 2px; margin-bottom: 8px; }
.testimonial .avatar {
    width: 70px; height: 70px; border-radius: 50%; overflow: hidden; display: inline-flex;
    align-items: center; justify-content: center; background: #edd7cd; margin: 0 auto 12px;
    float: none; flex-shrink: 0; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial .name { font-weight: 700; color: #4d3630; padding-top: 4px; font-size: 1.05rem; }
.testimonial .comment { clear: both; margin-top: 12px; color: #5f4640; font-style: italic; }

/* ===== FAQ ===== */
.faq-item { background: #fff; border-radius: 28px; padding: 20px 28px; margin-bottom: 14px; border: 1px solid #f0ddd5; cursor: pointer; transition: 0.2s; }
.faq-item:hover { border-color: #d48d7a; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #4d3630; font-size: 1.1rem; }
.faq-question i { color: #d48d7a; transition: 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease; color: #5f4640; margin-top: 0; }
.faq-item.open .faq-answer { max-height: 300px; margin-top: 14px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

/* ===== OFERTA ===== */
.offer-box { background: #fff; border-radius: 60px; padding: 50px 40px; text-align: center; border: 2px solid #d48d7a; max-width: 700px; margin: 0 auto; box-shadow: 0 20px 50px rgba(212,141,122,0.12); }
.offer-box .price-big { font-size: 4rem; font-weight: 700; color: #b45f4d; }
.offer-box .price-cross { font-size: 1.8rem; color: #7a5e55; text-decoration: line-through; margin-right: 16px; }
.offer-box .discount { background: #d48d7a; color: #fff; padding: 6px 20px; border-radius: 60px; font-weight: 600; display: inline-block; margin-bottom: 20px; }

/* ===== GARANȚIE ===== */
.guarantee-text { text-align: center; padding: 30px 20px; }
.guarantee-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #4d3630; }
.guarantee-text p { color: #5f4640; font-size: 1.1rem; max-width: 600px; margin: 10px auto 0; }

/* ===== CTA FINAL ===== */
.cta-banner { background: linear-gradient(135deg, #fce9e0, #fef6f1); border-radius: 60px; padding: 60px 40px; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #4d3630; }
.cta-banner h2 span { color: #b45f4d; }
.cta-banner p { font-size: 1.2rem; color: #5f4640; max-width: 600px; margin: 16px auto 0; }

/* ===== FOOTER ===== */
footer { background: #3e2e2a; color: #f0ddd5; padding: 40px 0 24px; text-align: center; }
footer .logo { color: #f0ddd5; font-size: 1.8rem; }
footer .logo i { color: #d48d7a; }
footer p { margin-top: 12px; font-size: 0.95rem; opacity: 0.8; }
.social-icons { margin: 16px 0; display: flex; justify-content: center; gap: 22px; }
.social-icons a { color: #f0ddd5; font-size: 1.6rem; transition: 0.3s; }
.social-icons a:hover { color: #d48d7a; transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid, .before-after, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-image img { max-width: 80%; margin: 0 auto; }
    .hero-bullets { text-align: left; display: inline-block; }
    .testimonial .avatar { float: none; display: flex; margin: 0 auto 12px; }
    .testimonial .name { text-align: center; }
    .lang-dropdown { margin-left: 0; margin-top: 8px; }
    .lang-dropdown-menu { right: auto; left: 0; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul { display: none; flex-direction: column; gap: 14px; width: 100%; padding: 20px 0 8px; background: #fff0eb; border-radius: 30px; margin-top: 16px; text-align: center; }
    nav ul.open { display: flex; }
    .header-flex { flex-wrap: wrap; }
    .section-title { font-size: 2rem; }
    .hero-text h1 { font-size: 2.4rem; }
    .offer-box .price-big { font-size: 2.8rem; }
    .cta-banner h2 { font-size: 2.2rem; }
    .cta-banner { padding: 40px 20px; }
    .module-item { padding: 12px 20px; font-size: 0.9rem; }
}