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

    body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

    /* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-content {
    padding-left: 20px;
}

.navbar {
    flex: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333333;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

    /* Secțiuni */
    section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2rem;
      border-bottom: 1px solid #eaeaea;
    }

    section:last-of-type {
      border-bottom: none;
    }

    h2 {
      font-size: 2.2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: #333333;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: #333333;
      border-radius: 4px;
    }

    p {
      color: #555555;
      font-size: 1.2rem;
      max-width: 700px;
      background: #f8f8f8;
      padding: 2rem;
      border-radius: 32px;
      border: 1px solid #dddddd;
    }

    /* Hartă */
    #harta iframe {
      border-radius: 28px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      border: 1px solid #d4d4d8;
    }

    /* Galerie înainte-după */
    .gallery-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .before-after-item {
      background: #f8f8f8;
      border-radius: 32px;
      padding: 1.5rem;
      border: 1px solid #dddddd;
    }

    .before-after-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .before-after-image {
      position: relative;
      width: 100%;
      user-select: none;
    }

    .before-after-image img {
      display: block;
      width: 100%;
      height: auto;
      pointer-events: none;
    }

    .after-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .after-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left;
    }

    .slider-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      cursor: ew-resize;
      z-index: 10;
    }

    .slider-handle::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      border: 2px solid #333333;
    }

    .slider-handle::before {
      content: '◀ ▶';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 14px;
      color: #333333;
      z-index: 1;
      letter-spacing: 2px;
    }

    /* Responsive Design */
@media (max-width: 1200px) {
    .gallery-container {
      grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-container {
      grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .gallery-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .before-after-item {
      padding: 1rem;
    }

    section {
      padding: 3rem 1.5rem;
    }

    h2 {
      font-size: 1.8rem;
    }

    p {
      font-size: 1rem;
      padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
      grid-template-columns: 1fr;
    }
}

    /* Stiluri suplimentare grey palette */
    footer {
      text-align: center;
      padding: 2rem;
      color: #555555;
      font-size: 0.95rem;
      background: #f8f8f8;
      border-top: 1px solid #333333;
    }

    .call-btn, .whatsapp-btn {
      padding: 6px 12px;
      margin: 0 5px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1.2rem;
      color: white;
      display: inline-block;
    }

    .call-btn {
      background: #007bff;
    }

    .whatsapp-btn {
      background: #25D366;
    }