:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 1.25rem;
    --container-max-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.section-title p {
    font-size: 1.125rem;
}

/* Utilities */
.text-center { text-align: center; }
.bg-surface { background-color: var(--surface); }
.mt-4 { margin-top: 2rem; }

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.img-floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* Benefits/Why Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon i,
.benefit-icon svg {
    width: 30px;
    height: 30px;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 240px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.text-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 1rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed List */
.services-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding: 3rem;
    background: var(--white);
    border-radius: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon-box {
    width: 120px;
    height: 120px;
    background: var(--surface);
    color: var(--primary);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box i,
.service-icon-box svg {
    width: 50px;
    height: 50px;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 900;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
}

.step h4 {
    margin-bottom: 0.5rem;
}

.step-content {
    text-align: center;
}

/* Linia orizontală pe Desktop — top: 26px = jumătate din înălțimea cercului (52px) */
.process-steps::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(10% - 0.8rem);
    right: calc(10% - 0.8rem);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

/* Footer (restored and enhanced) */
footer {
    background-color: #0f172a;
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: #94a3b8;
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
}

.footer-links ul li i,
.footer-links ul li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-links ul li a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a i,
.footer-links ul li a svg {
    width: 16px;
    height: 16px;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* About Us Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.values-list {
    margin-top: 3rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-item i,
.value-item svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-image img {
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

/* Eco Friendly Section */
.eco-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.eco-feature i,
.eco-feature svg {
    width: 48px;
    height: 48px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Commitments Section */
.commitments {
    padding: var(--section-padding);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.commitment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.commitment-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.commitment-icon i,
.commitment-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.commitment-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.commitment-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: var(--section-padding);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-method-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-method-card.cm-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.cm-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.cm-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.cm-icon i,
.cm-icon svg {
    width: 30px;
    height: 30px;
}

.cm-icon--phone {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.cm-icon--whatsapp {
    background: rgba(16, 185, 129, 0.12);
    color: var(--secondary);
}

.cm-icon--email {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.cm-icon--phone i, .cm-icon--phone svg { color: var(--primary); }
.cm-icon--whatsapp i, .cm-icon--whatsapp svg { color: var(--secondary); }
.cm-icon--email i, .cm-icon--email svg { color: var(--accent); }

.contact-method-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.contact-method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cm-detail {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

.cm-hours {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.cm-hours i,
.cm-hours svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.contact-method-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 5rem 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    height: 100%;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item i,
.info-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.info-item h4 {
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-block {
    width: 100%;
}

/* Map Section */
.map-placeholder {
    height: 400px;
    background: #e2e8f0;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--text-muted);
}

.map-overlay i,
.map-overlay svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* ============================================
   TESTIMONIALE
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   NEW CUSTOM PRICING REDESIGN
   ============================================ */
.pricing {
    background-color: var(--background);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.pricing-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: var(--surface);
    padding: 0.5rem;
    border-radius: 2rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.pricing-tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-tab-btn i,
.pricing-tab-btn svg {
    width: 18px;
    height: 18px;
}

.pricing-tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.pricing-table-panel {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.pricing-table-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--white);
    margin-bottom: 2.5rem;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
}

.premium-table th i, 
.premium-table th svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
}

.premium-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

.premium-table tbody tr {
    transition: var(--transition);
}

.premium-table tbody tr:hover {
    background-color: rgba(37, 99, 235, 0.02);
}

.premium-table tbody tr:hover td {
    color: var(--primary-dark);
}

.cell-highlight {
    font-weight: 700;
    color: var(--text);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-dark);
    padding: 0.4rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.premium-table tr:hover .price-badge {
    transform: scale(1.05);
}

.price-badge-accent {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.price-badge-villas {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    display: inline-flex;
    gap: 0.5rem;
}

.cell-villas {
    vertical-align: middle;
}

/* Post Construction Card */
.post-construction-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.post-construction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.pcc-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcc-icon i,
.pcc-icon svg {
    width: 28px;
    height: 28px;
}

.pcc-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.pcc-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pcc-price {
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: flex-end;
}

.pcc-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcc-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Info Note */
.pricing-info-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(37, 99, 235, 0.04);
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.pricing-info-note i,
.pricing-info-note svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-info-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .pricing-tabs-nav {
        flex-direction: column;
        width: 100%;
        border-radius: 1.25rem;
    }
    .pricing-tab-btn {
        width: 100%;
        justify-content: center;
    }
    .post-construction-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        padding: 1.75rem;
    }
    .pcc-icon {
        margin: 0 auto;
    }
    .pcc-price {
        align-items: center;
        text-align: center;
    }
    .premium-table th, .premium-table td {
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   ECHIPA
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(37, 99, 235, 0.2);
}

.team-avatar i,
.team-avatar svg {
    width: 42px;
    height: 42px;
}

.team-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.team-role {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CONTOARE (About Page)
   ============================================ */
.about-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 3rem;
}

.counter-num {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.counter-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ============================================
   FEATURED SERVICE (Deep Clean highlight)
   ============================================ */
.service-item.featured-service {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
    background: linear-gradient(135deg, #fff 70%, #eff6ff);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -14px;
    left: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.service-icon-featured {
    background: rgba(37, 99, 235, 0.12) !important;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

/* ============================================
   DEEP CLEAN ÎN DETALIU
   ============================================ */
/* Room switcher tab navigation (PC only) */
.room-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: var(--surface);
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.room-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.room-tab-btn i,
.room-tab-btn svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.room-tab-btn:hover {
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.02);
}

.room-tab-btn:hover i,
.room-tab-btn:hover svg {
    color: var(--primary);
}

.room-tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

.room-tab-btn.active i,
.room-tab-btn.active svg {
    color: var(--white);
}

.deep-rooms-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.room-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.room-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.room-panel .room-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.room-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.room-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.room-icon {
    width: 46px;
    height: 46px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.room-icon i,
.room-icon svg {
    width: 22px;
    height: 22px;
}

.room-card h4 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--text);
}

.room-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.room-list li:last-child {
    border-bottom: none;
}

.room-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 900;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.deep-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-top: 3rem;
}

.deep-note i,
.deep-note svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.deep-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* ============================================
   GARANȚIE STRIP
   ============================================ */
.guarantee-strip {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.guarantee-strip h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.guarantee-strip p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 620px;
    margin: 0 auto;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.guarantee-badge i,
.guarantee-badge svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.375rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVICES INTERACTIVE TABS LAYOUT
   ============================================ */
.services-tabs-section {
    padding: var(--section-padding);
    background-color: var(--background);
}

.services-tabs-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.services-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--surface);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid transparent;
    background: transparent;
    border-radius: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    width: 100%;
}

.tab-btn i, 
.tab-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--text);
}

.tab-btn:hover i, 
.tab-btn:hover svg {
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.tab-btn.active i, 
.tab-btn.active svg {
    color: var(--white);
}

/* Featured Tab Styling */
.featured-tab {
    border-color: rgba(245, 158, 11, 0.2);
}

.tab-badge {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
}

.tab-btn.active .tab-badge {
    background: var(--white);
    color: var(--accent);
}

/* Tab Content Styling */
.services-tabs-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.tab-content-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-panel-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.panel-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-icon i,
.panel-icon svg {
    width: 32px;
    height: 32px;
}

.tab-content-panel h2 {
    font-size: 2.25rem;
    margin-bottom: 0;
    color: var(--text);
}

.tab-content-panel p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.check-list-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    list-style: none;
}

.check-list-tabs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text);
    font-size: 1rem;
}

.check-list-tabs li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.125rem;
}

.panel-cta {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

/* Featured Service Panel Details */
.tab-content-panel.featured-panel {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
}

/* Responsive Media Queries for Tabs */
@media (max-width: 992px) {
    .services-tabs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-tabs-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.75rem;
        background: var(--surface);
        border-radius: var(--radius);
        border: 1px solid var(--border);
    }
    
    .tab-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1.25rem 0.5rem;
        border-radius: 1rem;
        gap: 0.625rem;
        width: 100%;
        min-height: 95px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
        position: relative;
    }
    
    .tab-btn span {
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.3;
        color: var(--text-muted);
        transition: color 0.2s ease;
    }
    
    .tab-btn i, 
    .tab-btn svg {
        width: 24px;
        height: 24px;
        color: var(--text-muted);
        transition: color 0.2s ease;
    }
    
    @media (hover: hover) {
        .tab-btn:hover {
            background: rgba(37, 99, 235, 0.03);
            transform: translateY(-1px);
        }
        .tab-btn:hover span {
            color: var(--text);
        }
        .tab-btn:hover i, 
        .tab-btn:hover svg {
            color: var(--primary);
        }
    }
    
    .tab-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }
    
    .tab-btn.active span {
        color: var(--white);
    }
    
    .tab-btn.active i, 
    .tab-btn.active svg {
        color: var(--white);
    }
    
    /* Featured Tab Mobile Styling */
    .featured-tab {
        border-color: rgba(245, 158, 11, 0.3);
        background: rgba(245, 158, 11, 0.02);
    }
    
    .featured-tab.active {
        background: var(--primary);
        border-color: var(--primary);
    }
    
    .tab-badge {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        transform: none;
        font-size: 0.65rem;
        font-weight: 800;
        padding: 0.15rem 0.4rem;
        border-radius: 0.5rem;
        margin: 0;
    }
    
    .tab-btn.active .tab-badge {
        background: var(--white);
        color: var(--accent);
    }
}

@media (max-width: 768px) {
    .services-tabs-content {
        padding: 2rem;
    }
    
    .check-list-tabs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tab-content-panel h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================ */

@media (max-width: 992px) {
    .testimonials-grid,
    .team-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-tabs-nav {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        padding: 0.5rem !important;
        margin-bottom: 2rem !important;
        background: var(--surface);
        border-radius: var(--radius);
        border: 1px solid var(--border);
    }

    .room-tab-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0.75rem 0.5rem !important;
        border-radius: 0.5rem !important;
        font-size: 0.8rem !important;
        gap: 0.35rem !important;
        width: 100% !important;
        min-height: 70px !important;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        color: var(--text-muted);
        font-family: var(--font-main);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .room-tab-btn i,
    .room-tab-btn svg {
        width: 18px !important;
        height: 18px !important;
        color: var(--text-muted);
        transition: var(--transition);
    }

    .room-tab-btn.active {
        background: var(--primary) !important;
        color: var(--white) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15) !important;
    }

    .room-tab-btn.active i,
    .room-tab-btn.active svg {
        color: var(--white) !important;
    }

    .deep-rooms-grid {
        display: block !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }

    .room-panel .room-list {
        display: block !important;
    }

    .guarantee-strip h2 {
        font-size: 2rem;
    }

    .about-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }

    .eco-features {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .commitments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps::after {
        display: none;
    }

    .service-item {
        grid-template-columns: 90px 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .service-icon-box {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    /* --- Navigation --- */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .header-cta .btn-outline,
    .header-cta .btn-primary {
        display: none;
    }

    /* --- Hero --- */
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 340px;
    }

    /* --- Stats --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    /* --- Section Titles --- */
    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 1.875rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    /* --- Services Preview --- */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* --- Services Detailed --- */
    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
    }

    .service-icon-box {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .service-details h2 {
        font-size: 1.5rem;
    }

    .check-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    /* --- Process Steps — vertical timeline pe mobil --- */
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 0;
        padding-left: 1.5rem;
    }

    .process-steps::after {
        display: none;
    }

    .step {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        text-align: left;
        position: relative;
        padding-bottom: 2rem;
    }

    .step:last-child {
        padding-bottom: 0;
    }

    /* Linia verticală pe stânga */
    .step::before {
        content: '';
        position: absolute;
        left: 25px; /* centrul cercului (52px/2 = 26px - 1px border) */
        top: 52px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
        z-index: 0;
    }

    .step:last-child::before {
        display: none;
    }

    .step-num {
        margin: 0;
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        position: relative;
        z-index: 1;
    }

    .step-content {
        padding-top: 0.35rem;
    }

    /* --- CTA Banner --- */
    .cta-banner {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 4rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* --- About --- */
    .about-text h2 {
        font-size: 1.875rem;
    }

    /* --- Eco Features --- */
    .eco-features {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* --- Footer --- */
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* --- Sections noi --- */
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }



    .guarantee-badges {
        gap: 0.875rem;
    }

    .guarantee-badge {
        padding: 0.625rem 1.125rem;
        font-size: 0.85rem;
    }

    .deep-note {
        padding: 1.25rem 1.5rem;
    }

    .pricing-mobile-nav {
        display: flex;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card {
        display: none !important;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pricing-card.active {
        display: flex !important;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* --- Hero --- */
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* --- Stats --- */
    .stat-number {
        font-size: 2rem;
    }

    /* --- Section Titles --- */
    .section-title h2 {
        font-size: 1.625rem;
    }

    /* --- Benefits --- */
    .benefit-card {
        padding: 1.75rem;
    }

    /* --- CTA --- */
    .cta-content h2 {
        font-size: 1.75rem;
    }

    /* --- Page Header --- */
    .page-header h1 {
        font-size: 1.875rem;
    }

    .page-header {
        padding: 3rem 0 2rem;
    }

    /* --- Contact & About --- */
    .info-card,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    /* Prevent iOS auto-zoom on focus */
    input,
    select,
    textarea {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* --- Map --- */
    .map-placeholder {
        height: 260px;
    }

    /* --- Butoane flotante --- */
    .whatsapp-btn {
        bottom: 1.25rem;
        right: 1rem;
        width: 52px;
        height: 52px;
    }

    .scroll-top {
        bottom: 5.5rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    /* --- About counters --- */
    .about-counters {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- Process Steps (576px) --- */
    .process-steps {
        padding-left: 0.75rem;
    }

    /* --- Deep rooms --- */
    .room-tabs-nav {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-bottom: 1.5rem !important;
    }

    /* --- Guarantee --- */
    .guarantee-badges {
        flex-direction: column;
        align-items: center;
    }

    .guarantee-strip h2 {
        font-size: 1.75rem;
    }

    /* --- Pricing Toggle (mobil) --- */
    .pricing-toggle-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .toggle-text {
        font-size: 0.95rem;
        justify-content: center;
    }

    .toggle-discount-badge {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    /* Badge "Cel mai popular" - asigurare că nu e tăiat */
    .pricing-card {
        margin-top: 1.25rem; /* spațiu pentru badge deasupra */
    }

    .premium-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
}
