/* ===== RESET & VARIABLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-primary: #e0e5ec;
    --text-primary: #333;
    --text-secondary: #555;
    --text-light: #777;
    --shadow-dark: #a3b1c6;
    --shadow-light: #ffffff;
    --accent-color: #bc9371;
    --accent-hover: #a67b5c;
    --success-bg: #d4edda;
    --success-text: #155724;
    --error-bg: #f8d7da;
    --error-text: #721c24;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
}

/* ===== BACKGROUND CIRCLES ===== */
.circle-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    z-index: -1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--bg-primary);
    box-shadow: 10px 10px 15px var(--shadow-dark), -10px -10px 15px var(--shadow-light);
    animation: pulseCircle 20s infinite ease-in-out;
    opacity: 0.6;
}

.circle:nth-child(1) {
    width: 1000px;
    height: 1000px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 800px;
    height: 800px;
    top: 100px;
    left: 100px;
    animation-delay: 0.5s;
}

.circle:nth-child(3) {
    width: 600px;
    height: 600px;
    top: 200px;
    left: 200px;
    animation-delay: 1s;
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 5rem 2rem;
}

.hero-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    padding: 2rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.italic-text {
    font-style: italic;
    color: #444;
}

.special-stars {
    color: #3ba17c;
    text-shadow: 2px 1px 3px var(--shadow-dark);
}

/* ===== HERO TITLE CU 2 RÂNDURI ===== */
.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    line-height: 0.9;
}

.hero h1 .first-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: -0.3rem;
}

.hero h1 .second-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: -0.3rem;
    letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 4px 4px 10px #c3cbd5, -4px -4px 10px var(--shadow-light);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #d9dde3;
    transform: translateY(-2px);
}

/* ===== SERVICE SECTIONS ===== */
.services {
    padding: 4rem 2rem;
    text-align: center;
}

.services h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    padding: 2rem;
    width: 280px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SERVICE DETAILS ===== */
.service-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.service-box {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    text-align: center;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
}

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

.service-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-details {
    padding: 4rem 2rem;
    text-align: center;
}

.details-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    color: var(--text-primary);
}

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

.details-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.details-box ul {
    text-align: left;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 2rem;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 4rem 2rem;
    text-align: center;
}

.process-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    color: var(--text-primary);
}

.process-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process-box ol {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    line-height: 1.8;
}

.process-box li {
    margin-bottom: 0.75rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(224, 229, 236, 0.5);
}

.testimonials h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    padding: 1.5rem;
    max-width: 350px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--text-primary);
    font-style: normal;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    color: var(--text-primary);
}

.testimonial-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 4rem 2rem;
    text-align: center;
}

.faq-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    color: var(--text-primary);
    text-align: left;
}

.faq-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===== ABOUT SECTIONS ===== */
.about-section,
.mission-section,
.values-section,
.team-section,
.history-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-box,
.mission-box,
.values-box,
.team-box,
.history-box {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    color: var(--text-primary);
}

.about-box h2,
.mission-box h2,
.values-box h2,
.team-box h2,
.history-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-box p,
.mission-box p,
.values-box p,
.team-box p,
.history-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.values-box p {
    margin-bottom: 0.5rem;
}

.values-box strong {
    color: var(--text-primary);
}

/* ===== CITY COVERAGE ===== */
.city-coverage {
    padding: 3rem 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.city-coverage-box h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.city-list {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.city-list li {
    background: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 3px 3px 8px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.city-list li:hover {
    transform: translateY(-2px);
}

.city-list li a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.city-list li a.active {
    color: var(--accent-color);
    font-weight: 700;
}

/* ===== PRICING ===== */
.pricing {
    text-align: center;
    padding: 4rem 2rem;
}

.pricing .title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.price-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.price-item {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    padding: 2rem;
    width: 350px;
    display: flex;
    flex-direction: column;
}

.price-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.price-item ul {
    list-style: none;
    text-align: left;
    color: var(--text-secondary);
    flex-grow: 1;
}

.price-item li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-buttons a {
    padding: 12px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 5px 5px 10px #c3cbd5, -5px -5px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.contact-buttons a:hover {
    background: #d9dde3;
}

/* ===== TILBUD / OFFERS ===== */
.hero-tilbud {
    padding: 4rem 2rem;
    text-align: center;
}

.hero-tilbud-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

.hero-tilbud h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-tilbud p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.offers-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.offers-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.offer-card {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    padding: 2rem;
    width: 300px;
    min-height: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.offer-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.offer-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.contact-box {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
}

.contact-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: var(--bg-primary);
    box-shadow: inset 3px 3px 6px #c3cbd5, inset -3px -3px 6px var(--shadow-light);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    box-shadow: inset 4px 4px 8px #b0bccf, inset -4px -4px 8px var(--shadow-light);
}

.contact-box button {
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: var(--bg-primary);
    box-shadow: 5px 5px 10px #c3cbd5, -5px -5px 10px var(--shadow-light);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-box button:hover {
    background: #d9dde3;
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.form-message.success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid #f5c6cb;
}

/* ===== CALL TO ACTION ===== */
.call-to-action {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    color: var(--text-primary);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 0.8rem 0.8rem;  /* REDUS de la 1.2rem */
    margin: 1.5rem 1rem 0.8rem;  /* REDUS marginile */
    background: var(--bg-primary);
    border-radius: 12px;  /* REDUS de la 16px */
    box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);
    color: var(--text-light);
    font-size: 0.8rem;  /* REDUS de la 0.85rem */
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;  /* REDUS de la 0.5rem */
    max-width: 900px;  /* REDUS de la 1000px */
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;  /* REDUS de la 0.8rem */
    flex-wrap: wrap;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;  /* REDUS de la 0.85rem */
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-social {
    gap: 0.8rem;  /* REDUS de la 1rem */
}

.footer-social a {
    font-size: 1rem;  /* REDUS de la 1.2rem */
}

.footer-contact span {
    font-size: 0.8rem;
}

.footer-address a {
    font-size: 0.8rem;
}

.footer-copy p {
    font-size: 0.7rem;  /* REDUS de la 0.8rem */
    opacity: 0.8;
}

@media (max-width: 768px) {
    /* ... restul codului ... */
    
    .footer {
        margin: 1.2rem 0.5rem 0.5rem;
        padding: 0.6rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .footer-row {
        gap: 0.4rem;
    }
    
    .footer-social a {
        font-size: 0.9rem;
    }
    
    .footer-copy p {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    /* ... restul codului ... */
    
    .footer {
        margin: 1rem 0.3rem 0.3rem;
        padding: 0.5rem 0.4rem;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .footer-social {
        flex-direction: row;
        gap: 0.6rem;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-primary);
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    border-radius: 20px;
    margin: 1rem;
    position: relative;
}

/* Stil pentru logo - COMPLET STATIC */
.navbar .logo a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.8rem;
    transition: none;
    display: inline;
}

.navbar .logo a:hover {
    color: var(--accent-color);
}

/* Stil pentru link-urile din meniu - COMPLET STATIC */
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: inline;
    transition: none;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

.back-to-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);
    padding: 1rem 2rem;
    z-index: 1000;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 30px;
    background: var(--bg-primary);
    box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.cookie-banner button:hover {
    background: #d9dde3;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--bg-primary);
        border-radius: 20px;
        box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
        padding: 1rem 0;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 0.75rem 1.5rem;
    }
    
    .circle-container {
        display: none;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 0.9;
        margin-bottom: 0.1rem;
    }
    
    .hero h1 .first-line {
        font-size: 2rem;
        margin-bottom: -0.2rem;
    }
    
    .hero h1 .second-line {
        font-size: 2rem;
        margin-top: -0.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-card {
        width: 100%;
        max-width: 350px;
    }
    
    .price-item {
        width: 100%;
    }
    
    .city-list {
        padding: 1rem;
    }
    
    .city-list li {
        min-width: 100px;
    }
    
    .cookie-banner {
        flex-direction: column;
        padding: 1rem;
    }
    
    .back-to-top-btn {
        bottom: 80px;
        right: 15px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .offers-container {
        flex-direction: column;
        align-items: center;
    }
    
    .offers-column {
        width: 100%;
        align-items: center;
    }
    
    .offer-card {
        width: 90%;
        min-height: auto;
    }
    
    .contact-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .service-section,
    .about-section,
    .mission-section,
    .values-section,
    .team-section,
    .history-section {
        padding: 2rem 1rem;
    }
    
    .service-box,
    .about-box,
    .mission-box,
    .values-box,
    .team-box,
    .history-box,
    .details-box,
    .process-box,
    .testimonial-box,
    .faq-box,
    .cta-box {
        padding: 1.5rem;
    }
    
    .footer {
        margin: 1.5rem 0.5rem 0.5rem;
        padding: 1rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .footer-row {
        gap: 0.5rem;
    }
    
    .footer-social a {
        font-size: 1.1rem;
    }
    
    .footer-copy p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
        line-height: 0.9;
        margin-bottom: 0.1rem;
    }
    
    .hero h1 .first-line {
        font-size: 1.6rem;
        margin-bottom: -0.2rem;
    }
    
    .hero h1 .second-line {
        font-size: 1.6rem;
        margin-top: -0.2rem;
    }
    
    .hero-box {
        padding: 1.5rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .city-list li {
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .price-item {
        padding: 1.5rem;
    }
    
    .footer {
        margin: 1rem 0.3rem 0.3rem;
        padding: 0.8rem 0.5rem;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer-social {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .cta-button, .contact-buttons a, button {
        white-space: normal;
        width: 100%;
        text-align: center;
    }
}

/* ===== AJUSTARE DIMENSIUNI TITLURI ===== */

/* Titluri principale secțiuni (H2) */
.services h2,
.testimonials h2,
.city-coverage h2,
.process h2,
.faq h2,
.about-section h2,
.mission-section h2,
.values-section h2,
.team-section h2,
.history-section h2,
.pricing .title {
    font-size: 2rem; /* REDUS de la 2.2rem */
    margin-bottom: 1.5rem;
}

/* Titluri carduri servicii (H3) */
.service-card h3 {
    font-size: 1.3rem; /* REDUS de la 1.5rem */
    margin-bottom: 0.8rem;
}

/* Titluri carduri oferte (H2 din carduri) */
.offer-card h2,
.offer-card h3 {
    font-size: 1.4rem; /* REDUS de la 1.5rem */
    margin-bottom: 0.8rem;
}

/* Titluri prețuri (H2 din carduri preț) */
.price-item h2 {
    font-size: 1.4rem; /* REDUS de la 1.5rem */
    margin-bottom: 1rem;
}

/* Titluri în hero-tilbud */
.hero-tilbud h1 {
    font-size: 2.2rem; /* MAI MIC decât H1 principal */
    margin-bottom: 1rem;
}

.hero-tilbud h2 {
    font-size: 1.8rem; /* PENTRU "Erhverv" */
    margin-bottom: 1rem;
}

/* Responsive pentru mobile */
@media (max-width: 768px) {
    .services h2,
    .testimonials h2,
    .city-coverage h2,
    .process h2,
    .faq h2,
    .about-section h2,
    .mission-section h2,
    .values-section h2,
    .team-section h2,
    .history-section h2,
    .pricing .title {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .offer-card h2,
    .offer-card h3 {
        font-size: 1.3rem;
    }
    
    .hero-tilbud h1 {
        font-size: 2rem;
    }
    
    .hero-tilbud h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services h2,
    .testimonials h2,
    .city-coverage h2,
    .process h2,
    .faq h2,
    .about-section h2,
    .mission-section h2,
    .values-section h2,
    .team-section h2,
    .history-section h2,
    .pricing .title {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .offer-card h2,
    .offer-card h3 {
        font-size: 1.2rem;
    }
    
    .hero-tilbud h1 {
        font-size: 1.8rem;
    }
    
    .hero-tilbud h2 {
        font-size: 1.5rem;
    }
}



