  @font-face {
  font-family: 'FontAwesome';
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-solid-900.woff2') format('woff2');
}
  * {
      font-display: swap;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f9fafb;
      color: #1f2937;
      scroll-behavior: smooth;
      line-height: 1.5;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #dc2626;
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.75rem;
      border-radius: 2rem;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .btn i {
      font-size: 1.1rem;
    }
    .btn:hover {
      background: #b91c1c;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(220,38,38,0.2);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #dc2626;
      color: #dc2626;
      box-shadow: none;
    }
    .btn-outline:hover {
      background: #dc2626;
      color: white;
    }

    .navbar {
      background: white;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(2px);
      background: rgba(255,255,255,0.96);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 1rem 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #dc2626, #b91c1c);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .logo span {
      color: #1f2937;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #374151;
      transition: 0.2s;
      font-size: 1rem;
    }
    .nav-links a:hover, .nav-links a.active {
      color: #dc2626;
    }
    .menu-icon {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: #1f2937;
    }

    .hero {
      padding: 3rem 0 2rem;
      background: linear-gradient(120deg, #fff6f5 0%, #ffffff 100%);
    }
    .hero-grid {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .hero-content {
      flex: 1;
    }
    .hero-badge {
      background: #fee2e2;
      color: #b91c1c;
      display: inline-block;
      padding: 0.25rem 1rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
    }
    .hero-content p {
      font-size: 1.125rem;
      color: #4b5563;
      margin-bottom: 2rem;
    }
    .hero-stats {
      display: flex;
      gap: 1.8rem;
      margin-top: 1.5rem;
    }
    .stat-item {
      text-align: left;
    }
    .stat-number {
      font-weight: 800;
      font-size: 1.6rem;
      color: #dc2626;
    }
    .hero-image {
      flex: 1;
      text-align: center;
    }
    .hero-image img {
      max-width: 100%;
      border-radius: 2rem;
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      letter-spacing: -0.01em;
    }
    .section-sub {
      text-align: center;
      color: #6b7280;
      max-width: 700px;
      margin: 0 auto 2.5rem auto;
    }
    .swiper {
      width: 100%;
      padding-bottom: 2rem;
      overflow: hidden !important;
    }
    .swiper-slide {
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
      transition: 0.3s;
      height: auto;
    }
    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      aspect-ratio: 4 / 3;
    }
    .swiper-pagination-bullet-active {
      background: #dc2626 !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: #dc2626;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .swiper-button-next:after, .swiper-button-prev:after {
      font-size: 1.2rem;
      font-weight: bold;
    }
    /* responsive slideshow adjustments */
    @media (max-width: 768px) {
      .swiper-button-next, .swiper-button-prev {
        display: none;
      }
      .swiper-slide img {
        aspect-ratio: 1 / 1;
      }
    }

    .services {
      background: white;
      padding: 4rem 0;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .service-card {
      background: #ffffff;
      border-radius: 1.5rem;
      padding: 1.8rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.03);
      border: 1px solid #f3f4f6;
      transition: all 0.25s ease;
      text-align: center;
    }
    .service-card:hover {
      transform: translateY(-5px);
      border-color: #fee2e2;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    }
.service-icon {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon img {
    width: 60%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.about-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow:hidden;
  border-radius: inherit;
}
    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .service-card p {
      color: #6b7280;
    }

    /* about section - improved mobile stacking */
    .about-section {
      padding: 4rem 0;
      background: #fef9f7;
    }
    .about-flex {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .about-text {
      flex: 1.2;
    }
    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 1.2rem;
    }
    .about-text p {
      margin-bottom: 1rem;
      color: #374151;
    }
    .about-img {
      flex: 1;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
    }
    .about-img img {
      width: 100%;
      height: auto;
      display: block;
    }
    /* Mobile: image goes below text, full width */
    @media (max-width: 768px) {
      .about-flex {
        flex-direction: column;
      }
      .about-img {
        width: 100%;
        margin-top: 1.5rem;
      }
    }
    .contact-bar {
      background: #1f2937;
      border-radius: 2rem;
      margin: 2rem 0 0;
      padding: 2rem 2rem;
      text-align: center;
      color: white;
    }
    .contact-bar h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .contact-bar .btn {
      background: #dc2626;
      margin-top: 0.5rem;
    }

    /* footer */
    footer {
      background: #111827;
      color: #9ca3af;
      padding: 2.5rem 0;
      text-align: center;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 1rem 0;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #d1d5db;
      text-decoration: none;
    }
    .footer-links a:hover {
      color: #dc2626;
    }

    /* mobile menu */
    @media (max-width: 768px) {
 .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    margin-top: 0.75rem;
    text-align: center;
    border-radius: 1.5rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
   .nav-links.active {
    display: flex;
    transform: scaleY(1);
    opacity: 1;
  }
  .nav-links li {
    margin: 0.2rem 0;
  }
  .nav-links a {
    display: inline-block;
    padding: 0.6rem 1rem;
    width: 80%;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-links a:active {
    background: #fee2e2;
    transform: scale(0.96);
    color: #dc2626;
  }
  .nav-links a.active {
    background: #dc2626;
    color: white;
  }
  .menu-icon {
    display: block;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-icon:active {
    transform: scale(0.94);
  }
      .menu-icon {
        display: block;
      }
      .hero-content h1 {
        font-size: 2.3rem;
      }
      .hero-grid {
        flex-direction: column-reverse;
      }
      .hero-stats {
        justify-content: space-between;
        flex-wrap: wrap;
      }
      .section-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 1rem;
      }
      .btn {
        padding: 0.6rem 1.2rem;
      }
    }
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}
.logo-text-white {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo-text span, .logo-text-white span {
    color: #ff0000;
    font-weight: 800;
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-link {
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 14px;
    }
    
    .logo-img {
        height: 30px;
    }
}
.anpc-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.anpc-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.anpc-link:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
.anpc-img {
  height: auto;
  width: auto;
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .anpc-img {
    max-width: 140px;
    max-height: 55px;
  }
  .anpc-container {
    gap: 0.8rem;
  }
}
    .floating-buttons {
        position: fixed;
        right: 20px;
        bottom: 100px;
        z-index: 9998;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }
    
    .floating-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .btn-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    
    .btn-call {
        background: linear-gradient(135deg, #34B7F1 0%, #1DA1F2 100%);
    }
    
    .floating-btn svg {
        width: 28px;
        height: 28px;
        fill: white;
    }
    
    /* Tooltip pe hover */
    .floating-btn {
        position: relative;
    }
    
    .floating-btn::before {
        content: attr(data-label);
        position: absolute;
        right: 70px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-family: Arial, sans-serif;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .floating-btn:hover::before {
        opacity: 1;
        visibility: visible;
        right: 65px;
    }
    
    @media (max-width: 768px) {
        .floating-buttons {
            right: 15px;
            bottom: 80px;
            gap: 10px;
        }
        
        .floating-btn {
            width: 48px;
            height: 48px;
        }
        
        .floating-btn svg {
            width: 24px;
            height: 24px;
        }
    }
    .services-page {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }
    /* hero servicii */
    .services-hero {
      text-align: center;
      margin-bottom: 3.5rem;
      background: linear-gradient(135deg, #fff6f5 0%, #ffffff 100%);
      padding: 2.5rem 1rem;
      border-radius: 2.5rem;
    }
    .services-hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #dc2626, #991b1b);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }
    .services-hero p {
      max-width: 680px;
      margin: 0 auto;
      font-size: 1.2rem;
      color: #4b5563;
    }
    .services-badge {
      display: inline-block;
      background: #fee2e2;
      color: #b91c1c;
      padding: 0.3rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    /* grid cards moderne */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 3rem 0 4rem;
    }
    .service-card-full {
      background: white;
      border-radius: 2rem;
      padding: 2rem 1.8rem;
      transition: all 0.3s ease;
      border: 1px solid #f1f1f1;
      box-shadow: 0 12px 24px -12px rgba(0,0,0,0.05);
    }
    .service-card-full:hover {
      transform: translateY(-6px);
      border-color: #fee2e2;
      box-shadow: 0 25px 30px -12px rgba(220,38,38,0.12);
    }
    .card-icon {
      font-size: 2.8rem;
      color: #dc2626;
      margin-bottom: 1.2rem;
    }
    .service-card-full h3 {
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
      font-weight: 700;
    }
    .service-desc {
      color: #6b7280;
      margin-bottom: 1rem;
      line-height: 1.5;
    }
    .price-tag {
      font-weight: 700;
      color: #dc2626;
      background: #fff0f0;
      display: inline-block;
      padding: 0.25rem 1rem;
      border-radius: 40px;
      font-size: 0.9rem;
      margin-top: 0.75rem;
    }
    /* sectiune extra: proces rapid */
    .process-section {
      background: #ffffff;
      border-radius: 2.5rem;
      padding: 2.5rem;
      margin: 2rem 0 2rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      border: 1px solid #f0f2f5;
    }
    .process-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .step {
      flex: 1;
      min-width: 180px;
      text-align: center;
    }
    .step-number {
      width: 50px;
      height: 50px;
      background: #dc2626;
      color: white;
      font-weight: 800;
      font-size: 1.5rem;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    .step h4 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    .step p {
      color: #6c757d;
      font-size: 0.9rem;
    }
    /* cta section fără head/footer, doar inner */
    .services-cta {
      background: #1f2937;
      border-radius: 2rem;
      text-align: center;
      padding: 2.5rem;
      margin-top: 2rem;
    }
    .services-cta h3 {
      color: white;
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }
    .services-cta p {
      color: #cbd5e1;
      margin-bottom: 1.5rem;
    }
    .btn-modern {
      background: #dc2626;
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 3rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: 0.2s;
      text-decoration: none;
    }
    .btn-modern:hover {
      background: #b91c1c;
      transform: scale(1.02);
    }
    @media (max-width: 768px) {
      .services-page {
        padding: 1rem 1.2rem 3rem;
      }
      .services-hero h1 {
        font-size: 2rem;
      }
      .service-card-full h3 {
        font-size: 1.5rem;
      }
      .steps {
        flex-direction: column;
        align-items: center;
      }
      .step {
        width: 80%;
      }
    }


.service-card-full:hover .card-icon img {
  transform: scale(1.05);
}
.services-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1f2937;
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 1.6rem;
  }
}
.card-icon {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.service-card-full:hover .card-icon img {
  transform: scale(1.05);
}
    .about-page {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }
    /* Hero about */
    .about-hero {
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(120deg, #fff6f0 0%, #ffffff 100%);
      border-radius: 2.5rem;
      padding: 2.5rem 1.5rem;
    }
    .about-hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #dc2626, #991b1b);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }
    .about-hero p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 1.2rem;
      color: #4b5563;
    }
    .badge-about {
      display: inline-block;
      background: #fee2e2;
      color: #b91c1c;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
    }
    /* story section flex */
    .story-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      margin: 3rem 0;
      align-items: center;
    }
    .story-text {
      flex: 1.2;
    }
    .story-text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .story-text p {
      margin-bottom: 1rem;
      color: #374151;
    }
    .story-img {
      flex: 1;
      border-radius: 1.8rem;
      overflow: hidden;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }
    .story-img img {
      width: 100%;
      height: auto;
      display: block;
    }
    /* valori + iconite */
    .values-section {
      background: white;
      border-radius: 2rem;
      padding: 2rem 2rem;
      margin: 2rem 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      border: 1px solid #f0f2f5;
    }
    .values-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }
    .value-card {
      text-align: center;
      padding: 1rem;
    }
    .value-icon {
      background: #fee2e2;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2rem;
      margin: 0 auto 1rem;
      font-size: 2rem;
      color: #dc2626;
    }
    .value-card h3 {
      margin-bottom: 0.5rem;
      font-size: 1.3rem;
    }
    /* stats modern */
    .stats-showcase {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      background: #1f2937;
      border-radius: 2rem;
      padding: 2rem 2rem;
      margin: 2rem 0;
      color: white;
    }
    .stat-block {
      text-align: center;
      flex: 1;
    }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #dc2626;
    }
    /* timeline */
    .timeline-section {
      margin: 2.5rem 0;
    }
    .timeline-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
    }
    .timeline-item {
      display: flex;
      gap: 1.2rem;
      background: white;
      border-radius: 1.5rem;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 5px 12px rgba(0,0,0,0.03);
      border-left: 5px solid #dc2626;
    }
    .year {
      font-weight: 800;
      font-size: 1.4rem;
      color: #dc2626;
      min-width: 80px;
    }
    /* cta doar pentru about */
    .about-cta {
      background: #fef2e8;
      border-radius: 2rem;
      text-align: center;
      padding: 2rem;
      margin-top: 2rem;
    }
    .about-cta h3 {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
    }
    .btn-about {
      background: #dc2626;
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 3rem;
      font-weight: 600;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      text-decoration: none;
      transition: 0.2s;
    }
    .btn-about:hover {
      background: #b91c1c;
      transform: scale(1.02);
    }
    @media (max-width: 768px) {
      .about-page {
        padding: 1rem 1rem 3rem;
      }
      .about-hero h1 {
        font-size: 2rem;
      }
      .story-grid {
        flex-direction: column;
      }
      .timeline-item {
        flex-direction: column;
        gap: 0.3rem;
      }
      .stats-showcase {
        flex-direction: column;
        align-items: center;
      }
    }
    .contact-page {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }
    /* hero contact */
    .contact-hero {
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(120deg, #fff6f0 0%, #ffffff 100%);
      border-radius: 2.5rem;
      padding: 2rem 1.5rem;
    }
    .contact-hero h1 {
      font-size: 2.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, #dc2626, #991b1b);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.75rem;
    }
    .contact-hero p {
      max-width: 600px;
      margin: 0 auto;
      color: #4b5563;
      font-size: 1.1rem;
    }
    .contact-badge {
      display: inline-block;
      background: #fee2e2;
      color: #b91c1c;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    /* grid principal: info + form */
    .contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .contact-info {
      flex: 1;
      background: white;
      border-radius: 2rem;
      padding: 2rem;
      box-shadow: 0 12px 24px -12px rgba(0,0,0,0.05);
      border: 1px solid #f0f2f5;
    }
    .contact-info h2 {
      font-size: 1.7rem;
      margin-bottom: 1rem;
    }
    .info-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .info-icon {
      background: #fee2e2;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1.5rem;
      font-size: 1.3rem;
      color: #dc2626;
    }
    .info-text h4 {
      font-weight: 700;
      margin-bottom: 0.2rem;
    }
    .info-text p, .info-text a {
      color: #4b5563;
      text-decoration: none;
    }
    .program-hours {
      margin: 1.5rem 0;
      background: #fef9f7;
      padding: 1rem;
      border-radius: 1.2rem;
    }
    .program-hours p {
      margin: 0.3rem 0;
    }
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.8rem;
    }
    .social-icon {
      background: #1f2937;
      color: white;
      width: 42px;
      height: 42px;
      border-radius: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
      font-size: 1.2rem;
      text-decoration: none;
    }
    .social-icon:hover {
      background: #dc2626;
      transform: translateY(-3px);
    }
    /* form styling */
    .contact-form {
      flex: 1;
      background: white;
      border-radius: 2rem;
      padding: 2rem;
      box-shadow: 0 12px 24px -12px rgba(0,0,0,0.05);
      border: 1px solid #f0f2f5;
    }
    .contact-form h2 {
      font-size: 1.7rem;
      margin-bottom: 1.2rem;
    }
    .form-group {
      margin-bottom: 1.2rem;
    }
    label {
      font-weight: 500;
      display: block;
      margin-bottom: 0.4rem;
    }
    input, textarea, select {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1px solid #e2e8f0;
      border-radius: 1rem;
      font-family: inherit;
      transition: 0.2s;
      background: #fefefe;
    }
    input:focus, textarea:focus, select:focus {
      outline: none;
      border-color: #dc2626;
      box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
    }
    .btn-submit {
      background: #dc2626;
      color: white;
      border: none;
      padding: 0.85rem 1.8rem;
      border-radius: 2rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      width: 100%;
      transition: 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .btn-submit:hover {
      background: #b91c1c;
      transform: translateY(-2px);
    }
    /* Google maps section */
    .map-section {
      background: white;
      border-radius: 2rem;
      overflow: hidden;
      margin: 2rem 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      border: 1px solid #f1f1f1;
    }
    .map-title {
      padding: 1rem 1.5rem;
      font-weight: 700;
      background: #ffffff;
      border-bottom: 1px solid #f0f0f0;
    }
    .map-container {
      width: 100%;
      height: 350px;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    /* CTA mic suplimentar */
    .contact-note {
      text-align: center;
      background: #1f2937;
      border-radius: 2rem;
      padding: 1.5rem;
      color: white;
      margin-top: 1rem;
    }
    .contact-note a {
      color: #fca5a5;
      text-decoration: none;
    }
    @media (max-width: 768px) {
      .contact-page {
        padding: 1rem 1rem 3rem;
      }
      .contact-hero h1 {
        font-size: 2rem;
      }
      .contact-grid {
        flex-direction: column;
      }
      .map-container {
        height: 250px;
      }
    }
    .gallery-page {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }

    .gallery-hero {
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(120deg, #fff6f0 0%, #ffffff 100%);
      border-radius: 2rem;
      padding: 2rem 1.5rem;
    }

    .gallery-badge {
      display: inline-block;
      background: #fee2e2;
      color: #b91c1c;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .gallery-hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #dc2626, #991b1b);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.75rem;
    }

    .gallery-hero p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #4b5563;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 2rem;
    }

    .gallery-item {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      cursor: pointer;
      border: 1px solid #f0f0f0;
    }

    .gallery-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(220, 38, 38, 0.15);
      border-color: #fee2e2;
    }

    .img-wrapper {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #f3f4f6;
    }

    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
    }

    .gallery-item:hover .gallery-img {
      transform: scale(1.03);
    }

    .gallery-caption {
      padding: 1rem 1rem 1.2rem;
      text-align: center;
    }

    .gallery-caption h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 0.3rem;
    }

    .gallery-caption p {
      font-size: 0.85rem;
      color: #6b7280;
    }

    .seo-text {
      background: white;
      border-radius: 1.8rem;
      padding: 2rem;
      margin-top: 2rem;
      border: 1px solid #f0f2f5;
    }

    .seo-text h2 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      color: #dc2626;
    }

    .seo-text p {
      margin-bottom: 1rem;
      color: #4b5563;
      line-height: 1.6;
    }

    .gallery-img[data-src] {
      filter: blur(3px);
      transition: filter 0.2s;
    }

    .gallery-img.loaded {
      filter: blur(0);
    }

    @media (max-width: 768px) {
      .gallery-page {
        padding: 1rem 1rem 3rem;
      }
      .gallery-hero h1 {
        font-size: 1.9rem;
      }
      .gallery-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      }
    }
  .glightbox-clean .gclose {
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  .glightbox-clean .gclose:hover {
    background: #dc2626;
    transform: scale(1.05);
  }
  .glightbox-container .gslide-description {
    background: rgba(0,0,0,0.75);
    border-radius: 1rem;
  }
  .gallery-img {
    background: #f0f2f5;
  }
#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    color: #1a1a2e;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text strong {
    color: #0f3460;
    font-weight: 600;
}

.cookie-text a {
    color: #e94560;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #e94560;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn-settings {
    background: #0f3460;
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    #cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 16px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}
    .cookie-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
        z-index: 10000;
        justify-content: center;
        align-items: center;
    }
    
    .cookie-modal-content {
        background: white;
        color: #333;
        padding: 30px;
        border-radius: 10px;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .cookie-modal-content h3 {
        margin-top: 0;
    }
    
    .cookie-option {
        margin: 15px 0;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    
    .cookie-option label {
        font-weight: bold;
        cursor: pointer;
    }
    
    .cookie-option p {
        margin: 5px 0 0 25px;
        font-size: 12px;
        color: #666;
    }
    
    .cookie-save-btn {
        background: #4CAF50;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        margin-top: 15px;
    }