﻿
    /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: #f0f7fe;
      color: #0a1428;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      -webkit-tap-highlight-color: transparent;
    }

    /* ===== ANIMATED BACKGROUND PARTICLES ===== */
    .particle-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(ellipse at 20% 50%, rgba(0, 120, 255, 0.06) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 20%, rgba(0, 200, 255, 0.05) 0%, transparent 50%),
                  radial-gradient(ellipse at 50% 80%, rgba(0, 60, 200, 0.04) 0%, transparent 50%);
    }

    .particle-bg::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background-image: radial-gradient(2px 2px at 20% 30%, rgba(0, 100, 255, 0.15), transparent),
                        radial-gradient(2px 2px at 40% 70%, rgba(0, 180, 255, 0.10), transparent),
                        radial-gradient(2px 2px at 60% 20%, rgba(0, 80, 255, 0.12), transparent),
                        radial-gradient(2px 2px at 80% 80%, rgba(0, 200, 255, 0.08), transparent);
      background-size: 200px 200px;
      animation: floatParticles 60s linear infinite;
      opacity: 0.6;
    }

    @keyframes floatParticles {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(-30px, -20px) rotate(2deg); }
    }

    /* ===== GLASSMORPHISM ===== */
    .glass {
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(16px) saturate(200%);
      -webkit-backdrop-filter: blur(16px) saturate(200%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 20px 60px -20px rgba(0, 40, 120, 0.15);
    }

    /* ===== HEADER ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 0.8rem 2rem;
      padding-top: max(0.8rem, env(safe-area-inset-top));
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(20px) saturate(200%);
      -webkit-backdrop-filter: blur(20px) saturate(200%);
      border-bottom: 1px solid rgba(0, 120, 255, 0.08);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    }

    .topbar {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .header-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    /* ===== LOGO STYLING ===== */
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo img {
      height: 62px;
      width: auto;
      max-width: 240px;
      object-fit: contain;
      filter: drop-shadow(0 4px 12px rgba(0, 60, 180, 0.15));
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .logo img:hover {
      transform: scale(1.05) rotate(-2deg);
      filter: drop-shadow(0 8px 25px rgba(0, 80, 200, 0.25));
    }

    .logo-text {
      font-size: 2.2rem;
      font-weight: 900;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #003d99, #0088ff, #00b4ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }

    .logo-text span {
      font-weight: 300;
      color: #003d99;
      -webkit-text-fill-color: #003d99;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .main-nav .nav-link {
      text-decoration: none;
      color: #0a1e32;
      font-weight: 600;
      padding: 0.4rem 1.2rem;
      border-radius: 60px;
      transition: 0.25s ease;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .main-nav .nav-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .main-nav .nav-label {
      white-space: nowrap;
    }
    .main-nav .nav-link:hover {
      background: rgba(0, 80, 200, 0.08);
      color: #003d99;
      transform: translateY(-1px);
    }
    .nav-cta {
      background: #0a1428;
      color: white !important;
      padding: 0.5rem 1.6rem !important;
      box-shadow: 0 8px 24px rgba(0, 40, 120, 0.2);
      text-decoration: none;
      font-weight: 600;
      border-radius: 60px;
      transition: 0.25s ease;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .nav-cta i { margin-right: 0; }
    .nav-cta:hover {
      background: #003d99 !important;
      transform: translateY(-2px) scale(1.02);
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding: 2rem;
    }

    .hero-grid {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(10, 20, 40, 0.9);
      color: white;
      padding: 0.3rem 1.6rem 0.3rem 1rem;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    .hero-badge i { color: #00b4ff; font-size: 1.2rem; }

    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 900;
      line-height: 1.05;
      margin: 1.2rem 0 1rem;
      color: #07152a;
      letter-spacing: -0.02em;
    }
    .hero h1 .highlight-text {
      background: linear-gradient(135deg, #0066ee, #00bbff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.3rem;
      color: #1a3050;
      max-width: 520px;
      margin: 1.2rem 0 2rem;
      font-weight: 400;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(8px);
      padding: 0.6rem 1.8rem;
      border-radius: 60px;
      border-left: 5px solid #0088ff;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0.9rem 2.4rem;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.05rem;
      text-decoration: none;
      transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: none;
      cursor: pointer;
    }
    .btn-primary {
      background: #0a1428;
      color: white;
      box-shadow: 0 16px 40px -12px rgba(0, 40, 120, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 24px 50px -12px rgba(0, 60, 180, 0.4);
      background: #003d99;
    }
    .btn-outline {
      background: transparent;
      color: #0a1428;
      border: 2px solid #0a1428;
    }
    .btn-outline:hover {
      background: #0a1428;
      color: white;
      transform: translateY(-4px);
    }

    /* ===== FLOATING 3D CARD ===== */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1200px;
    }

    .floating-card {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(20px) saturate(220%);
      -webkit-backdrop-filter: blur(20px) saturate(220%);
      border-radius: 3rem;
      padding: 2.5rem 2rem;
      width: 100%;
      max-width: 420px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 40px 80px -30px rgba(0, 60, 180, 0.2);
      transform: rotateY(-8deg) rotateX(4deg) translateZ(20px);
      transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }
    .floating-card::after {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      border-radius: 3rem;
      background: linear-gradient(135deg, rgba(0, 150, 255, 0.15), transparent 50%, rgba(0, 80, 255, 0.1));
      z-index: -1;
      filter: blur(4px);
    }
    .floating-card:hover {
      transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
      box-shadow: 0 50px 100px -30px rgba(0, 70, 200, 0.25);
    }

    .floating-card .icon-big {
      font-size: 3.6rem;
      color: #0066ee;
      background: white;
      padding: 0.8rem;
      border-radius: 30px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
      display: inline-block;
    }
    .floating-card h3 {
      font-size: 2rem;
      margin: 0.6rem 0 0.2rem;
      color: #07152a;
    }
    .floating-card .tag {
      background: #0a1428;
      color: white;
      padding: 0.2rem 1.4rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 700;
      display: inline-block;
      letter-spacing: 0.5px;
    }
    .floating-card ul {
      list-style: none;
      margin-top: 1.2rem;
      text-align: left;
    }
    .floating-card li {
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #0a1e32;
    }
    .floating-card li i {
      color: #0088ff;
      font-size: 1.2rem;
      width: 1.6rem;
    }

    /* ===== SECTIONS ===== */
    section {
      position: relative;
      z-index: 1;
      padding: 5rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 2.5rem;
    }
    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #07152a;
    }
    .section-header i {
      font-size: 2.6rem;
      color: #0066ee;
      background: rgba(0, 102, 238, 0.06);
      padding: 0.4rem 1rem;
      border-radius: 60px;
    }

    /* ===== SERVICES GRID ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 2.5rem;
      padding: 2rem 1.6rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
      transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 8px 24px -16px rgba(0, 40, 80, 0.06);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #0066ee, #00bbff);
      opacity: 0;
      transition: 0.3s;
    }
    .service-card:hover::before { opacity: 1; }
    .service-card:hover {
      transform: translateY(-10px) scale(1.01);
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 30px 60px -30px rgba(0, 60, 150, 0.15);
      border-color: rgba(0, 150, 255, 0.15);
    }
    .service-card i {
      font-size: 2.8rem;
      color: #0066ee;
      background: white;
      padding: 0.6rem;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
      margin-bottom: 0.8rem;
    }
    .service-card h3 { font-size: 1.4rem; color: #07152a; }
    .service-card p { color: #2a405a; font-weight: 400; margin-top: 0.3rem; }

    /* ===== BEDRIJVEN HIGHLIGHT ===== */
    .bedrijven-box {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2.5rem;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(16px);
      border-radius: 3.5rem;
      padding: 3rem;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 30px 70px -30px rgba(0, 50, 150, 0.1);
    }
    .bedrijven-box h2 {
      font-size: 2.4rem;
      color: #07152a;
    }
    .bedrijven-box ul {
      list-style: none;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(8px);
      padding: 1.8rem 2rem;
      border-radius: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }
    .bedrijven-box li {
      padding: 0.7rem 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 14px;
      color: #07152a;
      border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }
    .bedrijven-box li:last-child { border-bottom: none; }
    .bedrijven-box li i { color: #0066ee; font-size: 1.4rem; }

    /* ===== PORTFOLIO GALLERY - 6 IMAGES ===== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 250px;
      gap: 1.5rem;
    }

    .gallery-grid .gallery-item {
      border-radius: 2.5rem;
      overflow: hidden;
      position: relative;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 12px 30px -16px rgba(0, 40, 80, 0.08);
      transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer;
    }

    .gallery-grid .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: 0.5s ease;
    }

    .gallery-grid .gallery-item:hover {
      transform: scale(1.03) translateY(-6px);
      box-shadow: 0 30px 50px -20px rgba(0, 60, 150, 0.25);
      border-color: rgba(0, 150, 255, 0.3);
      z-index: 2;
    }

    .gallery-grid .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-grid .item-wide {
      grid-column: span 2;
    }

    .gallery-grid .item-tall {
      grid-row: span 2;
    }

    /* ===== CONTACT PANEL ===== */
    .contact-panel {
      background: rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(20px);
      border-radius: 4rem;
      padding: 4rem 3rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
      text-align: center;
      box-shadow: 0 40px 80px -40px rgba(0, 50, 150, 0.1);
    }
    .contact-panel .contact-icon {
      font-size: 3.2rem;
      color: #0066ee;
      background: white;
      padding: 1rem;
      border-radius: 60px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02);
      display: inline-block;
    }
    .contact-panel h2 {
      margin: 0.8rem 0 0.2rem;
      font-size: 2.6rem;
      color: #07152a;
    }
    .contact-panel .sub {
      font-size: 1.2rem;
      color: #2a4a6a;
      margin-bottom: 1.5rem;
    }

    .contact-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0 2.5rem;
      text-align: left;
    }
    .contact-item {
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(8px);
      padding: 1.2rem 1.5rem;
      border-radius: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: 0.3s ease;
    }
    .contact-item:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px -16px rgba(0, 40, 120, 0.1);
    }
    .contact-item i {
      font-size: 1.8rem;
      color: #0066ee;
      width: 2.4rem;
      text-align: center;
    }
    .contact-item .info {
      display: flex;
      flex-direction: column;
    }
    .contact-item .label {
      font-size: 0.75rem;
      font-weight: 700;
      color: #4a6a8a;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .contact-item .value {
      font-size: 1.05rem;
      font-weight: 700;
      color: #07152a;
    }
    .contact-item .value a {
      color: #07152a;
      text-decoration: none;
      transition: 0.2s;
    }
    .contact-item .value a:hover {
      color: #0066ee;
    }

    .contact-panel .phone-big {
      font-size: 2.8rem;
      font-weight: 900;
      color: #003d99;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, 0.3);
      padding: 0.2rem 2rem;
      border-radius: 80px;
      display: inline-block;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 0.5rem;
    }
    .contact-panel .phone-big i { margin-right: 14px; color: #0088ff; }

    /* ===== FOOTER ===== */
    footer {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2.5rem;
      color: #1a3050;
      border-top: 1px solid rgba(0, 0, 0, 0.02);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      margin-top: 2rem;
    }
    footer i { color: #0066ee; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1000px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero p { margin: 1.2rem auto; }
      .hero-buttons { justify-content: center; }
      .floating-card { transform: rotateY(0deg) rotateX(0deg); margin: 0 auto; max-width: 380px; }
      .bedrijven-box { grid-template-columns: 1fr; }
      .contact-details { grid-template-columns: 1fr; }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
      }
      .gallery-grid .item-wide {
        grid-column: span 2;
      }
      .gallery-grid .item-tall {
        grid-row: span 1;
      }
      section { padding: 4rem 1.5rem; }
    }

    @media (max-width: 768px) {
      header { padding: 0.65rem 1rem; }

      .logo img {
        height: 52px;
        max-width: 200px;
      }

      .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
      }

      .header-row {
        width: 100%;
        justify-content: space-between;
      }

      .main-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        width: 100%;
      }

      .main-nav .nav-link {
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.85rem 0.5rem;
        min-height: 76px;
        border-radius: 1.1rem;
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(0, 120, 255, 0.08);
        text-align: center;
      }

      .main-nav .nav-link:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.85);
      }

      .main-nav .nav-icon {
        font-size: 1.35rem;
        color: #0066ee;
        width: auto;
      }

      .main-nav .nav-label {
        font-size: 0.82rem;
        line-height: 1.2;
        white-space: normal;
      }

      .main-nav .nav-cta {
        grid-column: 1 / -1;
        justify-content: center;
        padding: 0.85rem 1rem !important;
        font-size: 1rem !important;
        min-height: 52px;
      }

      .hero {
        min-height: auto;
        padding: 1.5rem 1rem 2.5rem;
      }

      .hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
        line-height: 1.1;
      }

      .hero p {
        font-size: 1rem;
        padding: 0.85rem 1.2rem;
        max-width: 100%;
        border-radius: 1.2rem;
      }

      .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 1.2rem 0.35rem 0.85rem;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
      }

      .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
      }

      .floating-card {
        max-width: 100%;
        padding: 1.75rem 1.25rem;
        border-radius: 2rem;
      }

      .floating-card h3 { font-size: 1.6rem; }
      .floating-card .icon-big { font-size: 2.8rem; }
      .floating-card li { font-size: 0.92rem; padding: 0.5rem 0; }

      section { padding: 3rem 1rem; }

      .section-header {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 1.75rem;
      }

      .section-header h2 { font-size: 1.75rem; }
      .section-header i { font-size: 2rem; padding: 0.35rem 0.85rem; }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .service-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1.75rem;
      }

      .service-card i { font-size: 2.2rem; }
      .service-card h3 { font-size: 1.2rem; }

      .portfolio-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .portfolio-filters::-webkit-scrollbar { display: none; }

      .filter-btn {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 0.55rem 1.1rem;
        font-size: 0.82rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
      }

      .gallery-grid .gallery-item {
        border-radius: 1.5rem;
        min-height: 220px;
      }

      .gallery-grid .gallery-item img {
        min-height: 220px;
      }

      .gallery-grid .item-wide,
      .gallery-grid .item-tall {
        grid-column: span 1;
        grid-row: span 1;
      }

      .gallery-item .cat-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        bottom: 10px;
        left: 10px;
      }

      .contact-panel {
        padding: 2rem 1rem;
        border-radius: 2rem;
      }

      .contact-panel h2 { font-size: 1.75rem; }
      .contact-panel .sub { font-size: 1rem; }

      .contact-panel .phone-big {
        font-size: 1.65rem;
        padding: 0.35rem 1.25rem;
        word-break: break-word;
      }

      .contact-panel .btn-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }

      .social-links a {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
      }

      .order-form {
        padding: 1.25rem;
        border-radius: 1.5rem;
      }

      .order-form h3 { font-size: 1.45rem; }

      .form-grid { grid-template-columns: 1fr; }

      .form-group input,
      .form-group select,
      .form-group textarea {
        font-size: 16px;
        padding: 0.9rem 1rem;
      }

      #order-map { height: 240px; border-radius: 1rem; }

      .form-actions .btn {
        width: 100%;
        justify-content: center;
      }

      footer {
        padding: 2rem 1rem;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        font-size: 0.9rem;
      }
    }

    @media (max-width: 600px) {
      .logo img {
        height: 46px;
        max-width: 185px;
      }
      .lang-switcher a {
        padding: 0.3rem 0.55rem !important;
        font-size: 0.75rem !important;
      }
      .contact-item { padding: 0.8rem 1rem; }
      .gallery-grid .gallery-item,
      .gallery-grid .gallery-item img {
        min-height: 200px;
      }
    }

    @media (max-width: 380px) {
      .main-nav .nav-label { font-size: 0.76rem; }
      .hero h1 { font-size: 1.7rem; }
    }
  

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.5);
  padding: 4px;
  border-radius: 40px;
  border: 1px solid rgba(0,120,255,0.1);
}
.lang-switcher a {
  padding: 0.25rem 0.65rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
}
.lang-switcher a.active {
  background: #0a1428 !important;
  color: white !important;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  color: #0066ee;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,40,120,0.08);
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.5);
}
.social-links a:hover {
  transform: translateY(-4px) scale(1.08);
  background: #0a1428;
  color: white;
}
.social-links .tiktok:hover { background: #000; }
.social-links .instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links .facebook:hover { background: #1877f2; }

/* ===== PORTFOLIO FILTERS ===== */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 60px;
  border: 2px solid rgba(0,80,200,0.15);
  background: rgba(255,255,255,0.5);
  color: #0a1e32;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: #0a1428;
  color: white;
  border-color: #0a1428;
  transform: translateY(-2px);
}
.gallery-item .cat-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10,20,40,0.85);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.gallery-item.hidden { display: none; }

/* ===== ORDER FORM ===== */
.order-section {
  margin-top: 3rem;
  text-align: left;
}
.order-form {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px);
  border-radius: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.5);
  margin-top: 1.5rem;
}
.order-form h3 {
  font-size: 1.8rem;
  color: #07152a;
  margin-bottom: 0.3rem;
  text-align: center;
}
.order-form .form-sub {
  text-align: center;
  color: #2a4a6a;
  margin-bottom: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a3050;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0,80,200,0.12);
  background: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066ee;
  box-shadow: 0 0 0 3px rgba(0,102,238,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
#order-map {
  height: 280px;
  border-radius: 1.5rem;
  border: 1px solid rgba(0,80,200,0.12);
  overflow: hidden;
  z-index: 1;
}
.map-hint {
  font-size: 0.8rem;
  color: #4a6a8a;
  margin-top: 0.3rem;
}
.form-actions {
  text-align: center;
  margin-top: 1.2rem;
}
.form-alert {
  padding: 1rem 1.5rem;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}
.form-alert.success {
  background: rgba(0,180,80,0.12);
  color: #0a5c2e;
  border: 1px solid rgba(0,180,80,0.2);
}
.form-alert.error {
  background: rgba(220,50,50,0.1);
  color: #8b1a1a;
  border: 1px solid rgba(220,50,50,0.2);
}

/* Smooth scroll + anchor offset for sticky header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

@media (max-width: 768px) {
  html { scroll-padding-top: 220px; }
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}
