/* ==========================================================================
   PALETĂ NOUĂ DE CULORI: Indigo Profund / Albastru Slate / Cyan Accent / Light Ice
   ========================================================================== */
:root {
    --bg-main: #f0f4f8;          /* Fundal deschis, ușor rece (în loc de crem) */
    --bg-card: #ffffff;          /* Carduri albe curat */
    --dark-navy: #1e293b;        /* Albastru închis/Slate (în loc de gri-maroniu) */
    --accent-cyan: #0284c7;      /* Cyan / Cerulean (Accent principal în loc de cărămiziu) */
    --accent-cyan-hover: #0369a1;/* Accent închis hover */
    --text-dark: #0f172a;        /* Text întunecat */
    --text-muted: #64748b;       /* Text secundar */
    --text-light: #f8fafc;       /* Text alb/deschis */
    --border-light: #e2e8f0;     /* Linii subțiri */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent-cyan) !important; }

/* --- HEADER --- */
.main-header {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: flex-end;
}

.nav-menu a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 30px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--dark-navy);
}

/* --- HERO SECTION (Imaginea 1) --- */
.hero-section {
    padding: 40px 0 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Logo Box Identic cu Imaginea 1 */
.logo-box {
    display: inline-block;
    border: 3px solid var(--dark-navy);
    padding: 15px 25px;
    position: relative;
    margin-bottom: 25px;
}

.logo-icon {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.2rem;
    color: var(--dark-navy);
    display: flex;
    gap: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-navy);
    margin-top: 15px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-navy);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-accent {
    background-color: var(--accent-cyan);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-cyan-hover);
    transform: translateY(-2px);
}

.hero-mockup-right .mockup-frame {
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-mockup-right img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* --- PRICING GRID (Imaginea 2) --- */
.pricing-section {
    padding: 40px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.price-card {
    height: 230px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card-overlay {
    background: rgba(30, 41, 59, 0.78); /* Semi transparent dark overlay */
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
}

.card-overlay.light-overlay {
    background: #ffffff;
}

.card-inner-border {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
}

.card-inner-border.border-accent {
    border-color: var(--accent-cyan);
    background-color: var(--bg-main);
}

.card-icon {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 8px;
}

.icon-accent {
    color: var(--accent-cyan);
}

.price-tag {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-sub {
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* --- TITLURI DE SECȚIUNE CU LINIE (Inspirate din 3, 4, 5, 6) --- */
.section-title-wrap {
    margin-bottom: 40px;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-cyan);
    margin-bottom: 8px;
}

.line-accent {
    background-color: var(--accent-cyan);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-navy);
    line-height: 1;
}

.text-white .section-title {
    color: white;
}

.section-subtitle {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- FAQ SECTION (Imaginea 3) --- */
.faq-section {
    background-color: var(--dark-navy);
    padding: 80px 0;
    color: white;
}

.faq-section .section-title {
    color: white;
}

.faq-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.faq-card {
    background-color: var(--bg-main);
    color: var(--text-dark);
    padding: 35px 30px;
    border-radius: 16px;
}

.faq-card-full {
    background-color: var(--accent-cyan);
    color: white;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.faq-card-full .faq-icon {
    color: white;
}

.faq-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.faq-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.horizontal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.edit
{
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ffffff;
	color: #000000;
	border-radius: 50%;
	padding: 3px;
}

.admin_pag
{
	border: #eeeeee 1px solid;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 10px;
	border-radius: 10px;
}

/* --- GALERIE (Imaginea 4) --- */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    height: 220px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-large {
    grid-column: span 1;
    grid-row: span 1;
}

.item-wide {
    grid-column: span 2;
}

/* --- DESPRE NOI (Imaginea 5) --- */
.about-section {
    background-color: var(--dark-navy);
    padding: 80px 0;
    color: white;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-col {
    flex: 1;
}

.about-col h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-col p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-divider {
    width: 1px;
    background-color: var(--accent-cyan);
    opacity: 0.6;
}

/* --- CE SPUN CLIENȚII (Imaginea 6) --- */
.reviews-section {
    padding: 80px 0 120px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background-color: var(--bg-main);
    border: 1.5px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 35px 25px 45px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.client-avatar {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    color: #94a3b8;
    font-size: 1.2rem;
}

.client-info {
    margin-top: 20px;
}

.client-info h4 {
    color: var(--accent-cyan);
    font-size: 1rem;
    font-weight: 800;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--dark-navy);
    color: #64748b;
    padding: 25px 0;
    font-size: 0.85rem;
    border-top: 1px solid #334155;
}

/* --- RESPONSIVITATE --- */
@media (max-width: 992px) {
    .pricing-grid, .faq-grid-top, .reviews-grid {
        grid-template-columns: 1fr;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }
    .about-grid {
        flex-direction: column;
    }
    .about-divider {
        width: 100%;
        height: 1px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


