/* ================================================
   ECOTIS MOLDOVA - STYLE.CSS
   Toate stilurile site-ului ecotis.md
   ================================================ */

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

:root {
    --primary: #f57c00;
    --primary-dark: #e65100;
    --primary-light: #ffb74d;
    --secondary: #2e7d32;
    --secondary-dark: #1b5e20;
    --accent: #0277bd;
    --whatsapp: #25D366;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f7fa;
    --border: #e0e0e0;
    --white: #ffffff;
    --gold: #ffc107;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: #fafafa;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= TOP BAR ============= */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 10px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-info { display: flex; gap: 25px; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 6px; }
.top-bar-info i { font-size: 13px; }
.top-bar-social { display: flex; gap: 12px; }
.top-bar-social a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.top-bar-social a:hover { background: white; color: var(--primary-dark); transform: translateY(-2px); }

/* ============= HEADER ============= */
.header {
    background: white;
    padding: 18px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
}
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(245,124,0,0.4);
}
.logo-text {
    display: flex; flex-direction: column;
    line-height: 1;
}
.logo-text strong { color: var(--primary-dark); font-size: 26px; letter-spacing: 0.5px; }
.logo-text small { color: var(--secondary); font-size: 11px; font-weight: 500; letter-spacing: 1px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.btn-call {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
    white-space: nowrap;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.5); }

.menu-toggle {
    display: none;
    background: none; border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark);
}

/* ============= HERO ============= */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(245,124,0,0.92) 0%, rgba(230,81,0,0.85) 100%);
    background-color: #ff9800;
    color: white;
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '☀';
    position: absolute;
    top: 50px; right: 60px;
    font-size: 200px;
    opacity: 0.15;
    color: var(--gold);
    animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover { background: white; color: var(--primary-dark); }
.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { transform: translateY(-3px); background: #1ea951; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 600px;
}
.stat { text-align: left; }
.stat-num { font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; opacity: 0.9; margin-top: 5px; }

/* ============= PAGE HEADER (pentru paginile interne) ============= */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '☀';
    position: absolute;
    top: -50px; right: -50px;
    font-size: 250px;
    opacity: 0.1;
    color: var(--gold);
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
    flex-wrap: wrap;
}
.breadcrumb a { color: white; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }
.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 17px;
    opacity: 0.95;
    max-width: 600px;
}

/* ============= AVANTAJE ============= */
.avantaje {
    padding: 80px 0;
    background: white;
    margin-top: -50px;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 3;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title small {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 8px;
    color: var(--dark);
}
.section-title h2 span { color: var(--primary); }
.section-title p {
    color: var(--gray);
    margin-top: 15px;
    font-size: 17px;
    max-width: 700px;
    margin-left: auto; margin-right: auto;
}

.avantaje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.avantaj-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.avantaj-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.avantaj-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(245,124,0,0.3);
}
.avantaj-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.avantaj-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ============= CATEGORII ============= */
.categorii {
    padding: 80px 0;
    background: var(--light-gray);
}
.categorii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.categorie-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    cursor: pointer;
    display: block;
}
.categorie-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.categorie-img {
    height: 220px;
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.categorie-img img {
    max-height: 90%;
    width: auto;
    transition: transform 0.4s;
}
.categorie-card:hover .categorie-img img { transform: scale(1.1); }
.categorie-tag {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.categorie-info { padding: 25px; }
.categorie-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}
.categorie-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 18px;
}
.categorie-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.categorie-link:hover { gap: 12px; }

/* ============= PRODUSE (lista) ============= */
.produse {
    padding: 80px 0;
    background: white;
}
.produse-section {
    margin-bottom: 70px;
}
.produse-section:last-child { margin-bottom: 0; }
.produse-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}
.produse-section-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}
.produse-section-info h3 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 5px;
}
.produse-section-info p {
    color: var(--gray);
    font-size: 14px;
}

.produse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.produs-card {
    background: white;
    border-radius: 18px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.produs-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.produs-img {
    height: 220px;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 15px;
    overflow: hidden;
}
.produs-img img {
    max-height: 100%;
    width: auto;
    transition: transform 0.3s;
}
.produs-card:hover .produs-img img { transform: scale(1.08); }
.produs-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.produs-badge.iarna { background: var(--accent); }
.produs-info {
    padding: 22px;
    display: flex; flex-direction: column;
    flex-grow: 1;
}
.produs-info h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 47px;
}
.produs-info h4 a { transition: color 0.3s; }
.produs-info h4 a:hover { color: var(--primary); }
.produs-features {
    list-style: none;
    margin-bottom: 18px;
}
.produs-features li {
    font-size: 13px;
    color: var(--gray);
    padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
}
.produs-features i {
    color: var(--secondary);
    font-size: 12px;
}
.produs-price {
    margin-top: auto;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.produs-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}
.produs-price-currency {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}
.produs-price-note {
    font-size: 11px;
    color: var(--gray);
    margin-top: 4px;
}
.produs-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.produs-btn {
    flex: 1;
    padding: 11px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 100px;
}
.produs-btn-detalii {
    background: var(--light-gray);
    color: var(--dark);
    border: 1px solid var(--border);
    flex: 1 1 100%;
    margin-bottom: 6px;
}
.produs-btn-detalii:hover { background: var(--primary); color: white; border-color: var(--primary); }
.produs-btn-call {
    background: var(--primary);
    color: white;
}
.produs-btn-call:hover { background: var(--primary-dark); }
.produs-btn-wa {
    background: var(--whatsapp);
    color: white;
}
.produs-btn-wa:hover { background: #1ea951; }

/* ============= PAGINA DETALIU PRODUS ============= */
.produs-detail {
    padding: 60px 0;
    background: white;
}
.produs-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.produs-detail-gallery {
    position: sticky;
    top: 100px;
}
.produs-detail-img-main {
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
    border-radius: 25px;
    padding: 40px;
    height: 480px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.produs-detail-img-main img {
    max-height: 100%;
    width: auto;
}
.produs-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}
.produs-detail-thumb {
    aspect-ratio: 1;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.produs-detail-thumb:hover, .produs-detail-thumb.active {
    border-color: var(--primary);
    background: white;
}
.produs-detail-thumb img { max-height: 100%; }

.produs-detail-info .breadcrumb {
    color: var(--gray);
    margin-bottom: 15px;
}
.produs-detail-info .breadcrumb a { color: var(--gray); }
.produs-detail-info .breadcrumb a:hover { color: var(--primary); }
.produs-detail-category {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}
.produs-detail-info h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}
.produs-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 14px;
}
.produs-detail-rating i { color: var(--gold); }
.produs-detail-price-box {
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
}
.produs-detail-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}
.produs-detail-price-currency {
    font-size: 20px;
    color: var(--gray);
    font-weight: 500;
    margin-left: 5px;
}
.produs-detail-price-info {
    color: var(--gray);
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.produs-detail-price-info i { color: var(--secondary); }

.produs-detail-features {
    list-style: none;
    margin-bottom: 30px;
}
.produs-detail-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.produs-detail-features li:last-child { border-bottom: none; }
.produs-detail-features i {
    color: var(--secondary);
    font-size: 16px;
    width: 22px;
}

.produs-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.produs-detail-actions a {
    flex: 1;
    min-width: 200px;
    padding: 18px 25px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.produs-detail-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(245,124,0,0.4);
}
.produs-detail-call:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(245,124,0,0.5); }
.produs-detail-wa {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.produs-detail-wa:hover { transform: translateY(-3px); background: #1ea951; box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* Tabs descriere/specificatii */
.produs-tabs {
    margin-bottom: 60px;
}
.produs-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
}
.produs-tab-btn {
    background: none;
    border: none;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}
.produs-tab-btn.active, .produs-tab-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.produs-tab-content {
    display: none;
    background: var(--light-gray);
    padding: 35px;
    border-radius: 20px;
    line-height: 1.8;
}
.produs-tab-content.active { display: block; }
.produs-tab-content h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 22px;
}
.produs-tab-content p { margin-bottom: 15px; color: var(--gray); }
.produs-tab-content ul { padding-left: 20px; color: var(--gray); }
.produs-tab-content ul li { margin-bottom: 8px; }
.produs-tab-content strong { color: var(--dark); }

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
    padding: 15px 20px;
    font-size: 14px;
}
.specs-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: #fafafa;
    width: 45%;
}
.specs-table td:last-child { color: var(--gray); }

/* ============= DE CE ECOTIS ============= */
.de-ce {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
}
.de-ce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.de-ce-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}
.de-ce-content h2 span { color: var(--primary); }
.de-ce-content > p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 30px;
}
.de-ce-list { list-style: none; }
.de-ce-list li {
    padding: 12px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.de-ce-list i {
    color: var(--secondary);
    font-size: 22px;
    margin-top: 3px;
}
.de-ce-list strong { display: block; margin-bottom: 3px; color: var(--dark); }
.de-ce-list small { color: var(--gray); font-size: 14px; }

.de-ce-image {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}
.de-ce-image img {
    max-width: 100%;
    height: 350px;
    object-fit: contain;
    margin: 0 auto;
}
.de-ce-floating {
    position: absolute;
    background: white;
    padding: 18px 22px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.de-ce-floating-1 { top: 30px; left: -25px; }
.de-ce-floating-2 { bottom: 40px; right: -25px; }
.de-ce-floating i {
    color: var(--secondary);
    font-size: 24px;
}
.de-ce-floating strong { font-size: 14px; display: block; }
.de-ce-floating small { color: var(--gray); font-size: 11px; }

/* ============= CUM FUNCTIONEAZA ============= */
.cum-functioneaza {
    padding: 80px 0;
    background: white;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}
.step-num {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(245,124,0,0.3);
}
.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.step p {
    color: var(--gray);
    font-size: 14px;
}

/* ============= FAQ ============= */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    gap: 15px;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 14px;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--gray);
    padding: 0 25px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

/* ============= CONTACT ============= */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '☀';
    position: absolute;
    bottom: -100px; right: -50px;
    font-size: 400px;
    opacity: 0.08;
    color: var(--gold);
}
.contact .container { position: relative; z-index: 2; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}
.contact-info h2 span { color: var(--gold); }
.contact-info > p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 35px;
}
.contact-list { list-style: none; }
.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
}
.contact-list i {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-list a { color: white; transition: color 0.3s; }
.contact-list a:hover { color: var(--gold); }

.contact-actions {
    background: white;
    border-radius: 25px;
    padding: 40px;
    color: var(--dark);
    box-shadow: var(--shadow-xl);
}
.contact-actions h3 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 10px;
}
.contact-actions > p {
    color: var(--gray);
    margin-bottom: 25px;
}
.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 15px;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-weight: 600;
}
.contact-action-btn:hover { transform: translateX(5px); }
.contact-action-btn i {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: white;
}
.contact-action-btn.phone { background: #fff3e0; color: var(--primary-dark); }
.contact-action-btn.phone i { background: var(--primary); }
.contact-action-btn.whatsapp { background: #e8f5e9; color: var(--secondary-dark); }
.contact-action-btn.whatsapp i { background: var(--whatsapp); }
.contact-action-btn.email { background: #e3f2fd; color: #01579b; }
.contact-action-btn.email i { background: var(--accent); }
.contact-action-btn small {
    display: block;
    font-weight: 400;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

/* ============= DESPRE NOI - sectiune specifica ============= */
.despre-content {
    padding: 80px 0;
    background: white;
}
.despre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.despre-grid:last-child { margin-bottom: 0; }
.despre-grid.reverse { direction: rtl; }
.despre-grid.reverse > * { direction: ltr; }
.despre-text small {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.despre-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.despre-text h2 span { color: var(--primary); }
.despre-text p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}
.despre-image {
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
    height: 400px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
}
.despre-image img {
    max-height: 90%;
    width: auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.value-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
}
.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.value-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}
.value-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}
.value-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ============= CONTACT FORM PAGE ============= */
.contact-form-section {
    padding: 80px 0;
    background: white;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border-radius: 25px;
    padding: 40px;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.contact-info-card > p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 14px;
}
.contact-info-card-list { list-style: none; }
.contact-info-card-list li {
    padding: 12px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-info-card-list i {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-card-list a { color: white; transition: color 0.3s; }
.contact-info-card-list a:hover { color: var(--gold); }
.contact-info-card-list small { display: block; opacity: 0.8; font-size: 12px; }

.contact-info-card-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.contact-info-card-social a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.contact-info-card-social a:hover { background: white; color: var(--primary-dark); transform: translateY(-3px); }

.contact-form {
    background: white;
    border: 2px solid var(--border);
    border-radius: 25px;
    padding: 40px;
}
.contact-form h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}
.contact-form > p {
    color: var(--gray);
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(245,124,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(245,124,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,124,0,0.5);
}
.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 15px;
}

/* ============= FOOTER ============= */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}
.footer-about p {
    color: #bbb;
    font-size: 14px;
    margin: 15px 0;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-col ul li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 12px;
}
.footer-contact-item {
    display: flex;
    gap: 12px;
    color: #bbb;
    font-size: 14px;
    padding: 6px 0;
    align-items: flex-start;
}
.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
}
.footer-contact-item a { color: #bbb; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* ============= FLOATING BUTTONS ============= */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.3s;
    position: relative;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-wa {
    background: var(--whatsapp);
    animation: pulse-wa 2s infinite;
}
.floating-call {
    background: var(--primary);
    animation: pulse-call 2s infinite;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8); }
}
@keyframes pulse-call {
    0%, 100% { box-shadow: 0 6px 20px rgba(245,124,0,0.5); }
    50% { box-shadow: 0 6px 30px rgba(245,124,0,0.8); }
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.floating-btn:hover .floating-tooltip { opacity: 1; }

/* ============= RESPONSIVE ============= */
@media (max-width: 992px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); gap: 15px; }
    .nav.active { display: flex; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 17px; }
    .de-ce-grid, .contact-grid, .produs-detail-grid, .despre-grid, .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .despre-grid.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .top-bar { font-size: 12px; }
    .top-bar-info { gap: 15px; }
    .produs-detail-gallery { position: static; }
    .contact-info-card { position: static; }
    .page-header h1 { font-size: 32px; }
}

@media (max-width: 640px) {
    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 16px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-num { font-size: 30px; }
    .section-title h2, .de-ce-content h2, .contact-info h2, .despre-text h2 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar .container { justify-content: center; text-align: center; }
    .top-bar-info { justify-content: center; }
    .btn-primary, .btn-secondary, .btn-whatsapp { padding: 14px 24px; font-size: 14px; }
    .produse-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .de-ce-floating { padding: 12px 16px; }
    .de-ce-floating-1 { top: 15px; left: 10px; }
    .de-ce-floating-2 { bottom: 15px; right: 10px; }
    .contact-actions, .contact-form, .contact-info-card { padding: 25px; }
    .floating-buttons { bottom: 15px; right: 15px; }
    .floating-btn { width: 55px; height: 55px; font-size: 22px; }
    .produs-detail-info h1 { font-size: 26px; }
    .produs-detail-price-amount { font-size: 38px; }
    .produs-detail-img-main { height: 320px; padding: 25px; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 40px 0 30px; }
    .page-header h1 { font-size: 26px; }
}

/* Animatii la scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
