   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #7c3aed;
      --primary-dark: #5b21b6;
      --accent: #00C2FF;
      --dark: #0f172a;
      --dark-lighter: #1e293b;
      --light: #f8fafc;
      --whatsapp: #25D366;
      --whatsapp-dark: #128C7E;
      --text-muted: #94a3b8;
      --text-body: #64748b;
    }

    html, body {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    .site-header {
      width: 100%;
      padding: 16px 24px;
      background: lightblue;
    }

     .header {
      color: yellowgreen;
      margin-right: 150px;
    }


    .nav-container {
      background: purple;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      gap: 12px;
      position: relative;
      flex-wrap: wrap;
    }


   .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }

   .logo img {
      height: 48px;
      width: 48px;
      border-radius: 12px;
      object-fit: cover;
    }

   .logo-text h1 {
      font-size: 20px;
      color: orange;
      font-weight: 700;
    }

   .logo-text p {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: -2px;
    }

   .main-nav {
      margin-left: auto;
    }

   .main-nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
      align-items: center;
    }

   .main-nav > ul > li {
      position: relative;
    }

   .main-nav a {
      color: #e2e8f0;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.2s;
      padding: 8px 0;
      display: block;
      cursor: pointer;
    }

   .main-nav a:hover {
      color: var(--accent);
    }


   .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
    }

    /* Hero */
   .hero {
      position: relative;
      width: 100%;
      height: 85vh;
      overflow: hidden;
      background: #000;
    }

   .hero video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: slowZoom 25s ease-in-out infinite alternate;
    }

    @keyframes slowZoom {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

   .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(15,23,42,0.8));
    }

   .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
      width: 90%;
    }

   .hero-text h2 {
      font-size: clamp(32px, 6vw, 64px);
      font-weight: 800;
      margin-bottom: 16px;
      transition: all 0.3s ease;
      text-transform: uppercase;
    }

   .hero-text h2:hover {
      color: var(--accent);
      text-shadow: 0 0 30px rgba(0, 194, 255, 0.6);
    }

   .hero-text p {
      font-size: clamp(16px, 2.5vw, 20px);
      color: #cbd5e1;
      margin-bottom: 32px;
    }

   .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

   .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      font-size: 16px;
    }

   .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
    }

   .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    }

   .btn-whatsapp {
      background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
      color: white;
    }

   .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }

    /* Content Sections */
   .section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 24px;
      overflow: hidden;
    }

   .section-title {
      text-align: center;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      margin-bottom: 48px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Image-only scroll - NO body/container scroll */
   .scroll-viewport {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      margin: 0 -24px;
      padding: 8px 24px 24px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

   .scroll-viewport::-webkit-scrollbar {
      display: none;
    }

   .image-track {
      display: flex;
      gap: 24px;
      min-width: max-content;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: grab;
      will-change: transform;
    }

   .image-track.dragging {
      cursor: grabbing;
      transition: none;
    }

   .image-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      flex: 0 0 320px;
      user-select: none;
    }

   .image-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

   .image-card .image-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

   .image-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      pointer-events: none;
      display: block;
    }

   .image-card-body {
      padding: 24px;
    }

   .image-card-body h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--dark);
    }

   .image-card-body p {
      color: var(--text-body);
      font-size: 15px;
    }

    /* Contact */
   .white-section {
      background: white;
   }

   .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

   .contact-card {
      background: white;
      padding: 32px 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

   .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 25px -5px rgb(0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

   .contact-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
    }

   .contact-card a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
    }

   .contact-card a:hover {
      text-decoration: underline;
    }

   .action-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

   .contact-form-wrap {
      max-width: 600px;
      margin: 0 auto;
    }

   .submit-button {
      width: 100%;
    }

    /* Form */
   .form-group {
      margin-bottom: 20px;
    }

   .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--dark);
    }

   .form-input {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 15px;
      transition: border 0.2s;
    }

   .form-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    /* Floating Action Buttons */
   .floating-actions {
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }

   .fab {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      transition: all 0.3s;
    }

   .fab:hover {
      transform: scale(1.1);
    }

   .fab-call {
      background: var(--primary);
    }

   .fab-whatsapp {
      background: var(--whatsapp);
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: var(--text-muted);
      padding: 48px 24px 24px;
    }

   .footer-grid {
      max-width: 1200px;
      margin: 0 auto 32px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

   .footer-title {
      color: white;
      font-weight: 600;
      margin-bottom: 16px;
    }

   .footer-links-list {
      list-style: none;
   }

   .footer-link {
      color: #94a3b8;
      text-decoration: none;
   }

   .footer-link:hover {
      color: var(--accent);
      text-decoration: underline;
   }

   .footer-copy {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid #334155;
      font-size: 14px;
    }

    .about-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 20px 64px;
    }

    .about-card {
      width: 100%;
      padding: 0 4px;
    }

    .about-card p,
    .about-card ul,
    .about-card table {
      margin-left: 0;
      padding: 0 4px;
    }

    .about-card .listing {
      padding-left: 20px;
    }

    .about-photos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      margin: 24px 0;
    }

    .about-photos img {
      width: min(220px, 100%);
      height: auto;
      border-radius: 14px;
      object-fit: cover;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    /* Mobile */
    @media (max-width: 768px) {
     .site-header {
        padding: 12px 16px;
      }

     .nav-container {
        padding: 8px 0;
      }

     .logo {
        max-width: calc(100% - 56px);
      }

     .logo img {
        width: 40px;
        height: 40px;
      }

     .logo-text h1 {
        font-size: 15px;
        line-height: 1.2;
      }

     .logo-text p {
        font-size: 10px;
      }

     .mobile-toggle {
        display: block;
        margin-left: auto;
      }

     .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 12px;
        border-radius: 12px;
        z-index: 1000;
      }

     .main-nav.active {
        display: block;
      }

     .main-nav ul {
        flex-direction: column;
        gap: 0;
      }

     .main-nav li {
        width: 100%;
        border-bottom: 1px solid #334155;
      }

     .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 0;
        background: var(--dark-lighter);
        border-top: none;
        border-left: 2px solid var(--accent);
        width: 100%;
      }

     .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

     .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

     .scroll-viewport {
        margin: 0 -16px;
        padding: 8px 16px 24px;
      }

     .image-card {
        flex: 0 0 280px;
      }

     .about-section {
        padding: 20px 16px 48px;
      }

     .about-photos {
        gap: 12px;
      }

     .about-photos img {
        width: min(100%, 220px);
      }
    }