@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

/* =========================================
   RESET PENTRU BARA ALBĂ (MARGIN COLLAPSE)
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

/* Oprim titlurile să mai împingă secțiunile în jos */
h1, h2, h3 {
    margin-top: 0;
}

/* --- SETĂRI GENERALE --- */
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f2f2f2;
    overflow-x: hidden; 
}

.site-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NAVBAR --- */
.navbar {
    background: #181b21;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000; 
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1010; 
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    transition: all 0.3s ease; 
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% + 7px));
}

.nav-links a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #0084d6;
}

.nav-contact-btn {
    z-index: 1010;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1010;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #f0f0f0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-nav {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-solid-white {
    background: #fff;
    color: #111;
}

.btn-solid-white:hover {
    background: #ddd;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('index/wallpaper.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.btn-oferta {
    background: #0084d6;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-oferta:hover {
    background: #006bb3;
}

/* --- SECTIUNI SPLIT GENERAL --- */
.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 10%;
}

.split-section.dark-theme {
    background: #181b21;
    color: white;
}

.split-section.light-theme {
    background: #ffffff;
    color: #111;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    text-align: center;
}

.split-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-section.dark-theme .split-text h2 {
    color: #fff;
}

.split-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.split-section.dark-theme .split-text p {
    color: #ccc;
}

.split-section.light-theme .split-text p {
    color: #555;
}

.split-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left; 
    display: inline-block;
}

.split-text li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.split-section.dark-theme .split-text li { color: #ccc; }

.split-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0084d6;
    font-weight: bold;
}

.split-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-img img {
    display: block;
    margin: 0 auto; 
    max-width: 90%; 
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

.dark-theme .split-img img {
    box-shadow: 0 10px 30px rgba(255,255,255,0.05);
}

.separator-line {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 0 10%;
}

.btn-solid-blue {
    background: #0084d6;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-solid-blue:hover {
    background: #006bb3;
}

.btn-outline-dark {
    background: transparent;
    color: #111;
    border: 1px solid #111;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: #111;
    color: #fff;
}

/* --- PAGINA PROFILE - GRID --- */
.profile-grid-section {
    padding: 80px 10%;
    background: #f9f9f9;
}

.profile-grid-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #111;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.profile-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px; 
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.profile-card img {
    max-width: 80%;
    height: 180px; 
    object-fit: contain; 
    margin-bottom: 20px;
}

.profile-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 15px;
}

.profile-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; 
    width: 100%;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.profile-card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.profile-card li::before {
    content: "•";
    color: #0084d6;
    position: absolute;
    left: 0;
}

.profile-card.premium-card {
    border: 2px solid #FDB931;
    box-shadow: 0 8px 25px rgba(253, 185, 49, 0.15);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(253, 185, 49, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* --- CALCULATOR --- */
.calculator-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background: #f2f2f2;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #111;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #111;
}

input, .selected {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    margin-top: 6px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

input:focus {
    outline: none;
    border-color: #184a66;
}

.info {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.color-picker {
    position: relative;
    margin-top: 10px;
}

.selected {
    gap: 12px;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.selected img, .options img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #000;
    display: block;
    flex-shrink: 0;
}

.options {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 180px;
    overflow-y: auto;
    z-index: 10;
    border: 1px solid #eee;
}

.options.show { display: block; }

.options div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: 1;
    color: #111;
}

.options div:hover { background: #f5f5f5; }
.options::-webkit-scrollbar { width: 6px; }
.options::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

.card button {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: #2b556e;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card button:hover {
    background: #1d3f54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 85, 110, 0.3);
}

.result {
    margin-top: 20px;
    text-align: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.result.show {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.dim-box {
    background: none;
    color: #000;
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
}

.price {
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0;
    color: #111;
}

#infoExtra {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.btn-whatsapp {
    background-color: #25D366 !important;
    margin-top: 15px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90% !important;
}

.btn-whatsapp:hover {
    background-color: #20b858 !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
}

.simulator-wrapper {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simulator-box {
    position: relative;
    border: 6px solid #3b82f6;
    background: repeating-linear-gradient(-45deg, #f0f0f0, #f0f0f0 10px, #fff 10px, #fff 20px);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.sim-label-top, .sim-label-right {
    position: absolute;
    background: white;
    font-size: 11px;
    padding: 2px 5px;
    border: 1px solid #ddd;
    white-space: nowrap;
    color: #111;
}

.sim-label-top { top: 0; left: 50%; transform: translate(-50%, -50%); }
.sim-label-right { right: 0; top: 50%; transform: translate(50%, -50%) rotate(90deg); }

.sim-info { font-size: 11px; color: #777; margin-top: 5px; }

/* --- FOOTER --- */
.site-footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 25px;
    margin-top: auto;
}

/* --- RESPONSIVITATE --- */
@media (max-width: 1024px) {
    .split-section {
        padding: 60px 5%;
        gap: 30px;
    }
    
    .split-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: relative; 
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 280px; 
        height: 100vh;
        background: #181b21;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px; 
        gap: 20px;
        z-index: 1005; 
        box-shadow: 5px 0 15px rgba(0,0,0,0.5);
        transform: none; 
    }

    .nav-links.active {
        left: 0; 
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    
    .nav-contact-btn {
        display: none; 
    }

    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .split-section {
        flex-direction: column !important; 
        text-align: center;
        padding: 40px 20px;
    }

    .split-text {
        text-align: center;
        width: 100%;
    }

    .split-text h2 {
        font-size: 24px;
    }

    .split-text ul {
        text-align: left; 
        display: inline-block; 
    }

    .split-img {
        margin-top: 30px;
        width: 100%;
    }

    .split-img img {
        max-width: 100%; 
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .profile-grid-section {
        padding: 50px 20px;
    }
    
    .profile-grid-section h2 {
        font-size: 28px;
    }
}

/* --- HERO SECTIONS FOR PAGES --- */
.hero-section-page {
    color: white;
    text-align: center;
    padding: 120px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section-page .split-text {
    flex: none;
    text-align: center;
    max-width: 600px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.hero-section-page h2 {
    color: white !important; 
    margin-bottom: 20px;
}

.hero-section-page p {
    color: white !important; 
    margin-bottom: 40px; 
    line-height: 1.5;
}

.profile-page-intro {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('profile-poze/profile-main.jpg') center/cover no-repeat;
}

.plisse-page-intro {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('plisse/plase-plisse.jpg') center/cover no-repeat;
}

/* =========================================
   Grid-ul de servicii (SVG)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eee;
    text-align: left;
}

.service-icon {
    font-size: 20px;
    background: #f0f8ff; 
    width: 40px; 
    height: 40px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0084d6; 
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   POPUP COOKIE 
   ========================================= */
.cookie-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.cookie-popup-wrapper.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup {
    background: #fff;
    width: 360px;
    max-width: 90%;
    border-radius: 24px;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: scale(0.95) translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    color: #111;
    position: relative; 
}

.cookie-popup-wrapper.show .cookie-popup {
    transform: scale(1) translateY(0);
}

.cookie-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #111827;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    line-height: 1;
}

.cookie-close-btn:hover {
    color: #4f46e5;
}

.cookie-icon-container {
    width: 80px;
    height: 80px;
    background-color: #ffedd5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.cookie-icon {
    font-size: 40px;
}

.cookie-popup h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e1b4b; 
}

.cookie-popup p {
    color: #6b7280; 
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

.btn-cookie-accept {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px; 
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-cookie-accept:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

body.no-scroll {
    overflow: hidden;
}

/* =========================================
   SECȚIUNE PORTOFOLIU - SLIDESHOW GLOBAL & HOVER PAUSE
   ========================================= */
.portfolio-section {
    padding: 80px 10%;
    background: #181b21;
    color: white;
    text-align: center;
}

.portfolio-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.portfolio-header p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    aspect-ratio: 4 / 3; 
    background: #222; 
}

.portfolio-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0; 
    animation: fadeSlideshow 15s infinite; 
    transition: transform 0.4s ease;
}

.portfolio-item img:nth-child(1) { animation-delay: 0s; }
.portfolio-item img:nth-child(2) { animation-delay: 5s; } 
.portfolio-item img:nth-child(3) { animation-delay: 10s; } 

.portfolio-item:hover img {
    animation-play-state: paused;
    transform: scale(1.05); 
}

@keyframes fadeSlideshow {
    0%   { opacity: 1; z-index: 1; }
    28%  { opacity: 1; z-index: 1; } 
    33%  { opacity: 0; z-index: 0; } 
    95%  { opacity: 0; z-index: 0; } 
    100% { opacity: 1; z-index: 1; } 
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-section {
        padding: 50px 20px;
    }
    
    .portfolio-header h2 {
        font-size: 28px;
    }
}

/* =========================================
   BUTON GHID MĂSURARE 
   ========================================= */
.btn-measure-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #f0f8ff; 
    color: #0084d6;
    border: 1px dashed #0084d6;
    padding: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.btn-measure-guide:hover {
    background: #e0f0ff;
}

/* =========================================
   FEREASTRA MODALĂ (POPUP)
   ========================================= */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.custom-modal-content {
    background: #fff;
    width: 800px;
    max-width: 90%;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden; 
}

.custom-modal-overlay.show .custom-modal-content {
    transform: translateY(0) scale(1);
}

.custom-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f2f2f2;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.custom-modal-close:hover {
    background: #e0e0e0;
    color: #e63946;
}

.custom-modal-split {
    display: flex;
    align-items: stretch;
}

.custom-modal-text {
    flex: 1;
    padding: 40px;
}

.custom-modal-text h3 {
    margin-top: 0;
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
}

.custom-modal-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-modal-text ul {
    list-style: none;
    padding: 0;
}

.custom-modal-text li {
    margin-bottom: 10px;
    color: #444;
    padding-left: 20px;
    position: relative;
}

.custom-modal-text li::before {
    content: "•";
    color: #0084d6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.custom-modal-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.custom-modal-img img {
    width: 95%; 
    max-height: 95%; 
    object-fit: contain; 
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .custom-modal-split {
        flex-direction: column-reverse; 
    }
    .custom-modal-text {
        padding: 30px 20px;
    }
    .custom-modal-img {
        padding: 20px 20px 0 20px; 
    }
    .custom-modal-img img {
        height: auto;
        max-height: 250px; 
    }
}

/* --- FOOTER NOU --- */
.site-footer {
    background: #111;
    color: #fff;
    padding: 50px 10%;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    margin-bottom: 15px;
    color: #0084d6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    color: #888;
}

/* --- PAGINA SERVICII (ALT LAYOUT) --- */
.services-hero {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
}

.alt-service-section {
    padding: 60px 10%;
    background: #f9f9f9;
}

.alt-service-section.light {
    background: #fff;
}

.alt-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.alt-container.reverse {
    flex-direction: row-reverse;
}

.alt-img {
    flex: 1;
}

.alt-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.alt-text {
    flex: 1;
}

.alt-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}

/* --- PLISSE 2:3 RESOLUTION --- */
.aspect-2-3 {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 10px;
}

/* --- RESPONSIVITATE --- */
@media (max-width: 768px) {
    .footer-content, .alt-container, .alt-container.reverse {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
}

/* --- HARTA FOOTER (ADĂUGAT NOU) --- */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left { 
    flex: 1; 
    text-align: left; 
}

.footer-right { 
    flex: 1; 
    text-align: right; 
}

.footer-map {
    flex: 1.5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

/* Modificare pentru telefoane mobile */
@media (max-width: 768px) {
    .footer-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    .footer-right, .footer-left { 
        text-align: center; 
    }
    .footer-map { 
        width: 100%; 
    }
}

/* =========================================
   STILIZARE SECȚIUNI SEO & ORAȘE (FIX DESIGN)
   ========================================= */
.seo-text-section {
    background-color: #f4f6f9;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.seo-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.seo-container h2 {
    color: #111;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.3;
}

.seo-container p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 10px;
}

.coverage-area {
    max-width: 1000px;
    width: 100%;
    margin: 30px auto 50px auto;
    padding: 0 20px;
}

.coverage-details {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.coverage-details:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.coverage-summary {
    font-weight: 700;
    font-size: 16px;
    color: #0084d6;
    list-style-position: inside;
    outline: none;
    user-select: none;
}

.coverage-text {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.coverage-intro {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.coverage-cities {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}