

  :root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2236;
    --bg-card-hover: #1f2a42;
    --accent-cyan: #00c8ff;
    --accent-green: #00e87b;
    --accent-gradient: linear-gradient(135deg, #00c8ff 0%, #00e87b 100%);
    --text-primary: #f0f4ff;
    --text-secondary: #8892a8;
    --text-muted: #5a6478;
    --border: #1e293b;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

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

  body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
  }

  .vs-app {
    min-height: 100vh;
    background: var(--bg-primary);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .vs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }
  .vs-nav.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }
  .vs-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
  }
  .vs-nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .vs-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
  }
  .vs-nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    background: none;
    border: none;
    font-family: var(--font-body);
  }
  .vs-nav-link:hover, .vs-nav-link.active {
    color: var(--accent-cyan);
  }
  .vs-nav-cta {
    padding: 8px 20px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 6px;
    color: #0a0e17;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .vs-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
  }

  /* ── MOBILE NAV ── */
  .vs-nav-mobile-socials {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 0.75rem;
  }
  .vs-nav-mobile-socials .vs-social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .vs-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .vs-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  .vs-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .vs-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .vs-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .vs-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .vs-mobile-menu.open { display: flex; flex-direction: column; gap: 1rem; }
  .vs-mobile-menu a {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: left;
    padding: 0.5rem 0;
    cursor: pointer;
    font-family: var(--font-body);
    text-decoration: none;
    display: block;
  }
  .vs-mobile-menu a:hover { color: var(--accent-cyan); }

  @media (max-width: 768px) {
    .vs-nav-links { display: none; }
    .vs-hamburger { display: block; }
    .vs-nav { padding: 0 1rem; }
    .vs-nav-mobile-socials { display: flex; }
  }

  /* ── HERO ── */
  .vs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    overflow: hidden;
    background: var(--bg-primary);
  }
  .vs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 20% 50%, rgba(0, 200, 255, 0.15) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0, 232, 123, 0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 50% 80%, rgba(100, 80, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: aurora-shift 12s ease-in-out infinite alternate;
  }
  @keyframes aurora-shift {
    0% { opacity: 1; transform: scale(1) translateY(0); }
    50% { opacity: 0.8; transform: scale(1.1) translateY(-20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
  }
  .vs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.25) 0%, transparent 2%),
      radial-gradient(circle at 80% 20%, rgba(0, 232, 123, 0.2) 0%, transparent 1.5%),
      radial-gradient(circle at 60% 70%, rgba(0, 200, 255, 0.15) 0%, transparent 1.5%),
      radial-gradient(circle at 35% 80%, rgba(0, 232, 123, 0.15) 0%, transparent 1%),
      radial-gradient(circle at 90% 60%, rgba(100, 80, 255, 0.12) 0%, transparent 2%),
      radial-gradient(circle at 10% 60%, rgba(0, 200, 255, 0.1) 0%, transparent 1%);
    pointer-events: none;
    animation: sparkle-drift 20s ease-in-out infinite alternate;
  }
  @keyframes sparkle-drift {
    0% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(15px) translateY(-10px); }
    66% { transform: translateX(-10px) translateY(8px); }
    100% { transform: translateX(0) translateY(0); }
  }

  /* Animated floating orbs */
  .vs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.5;
  }
  .vs-orb-1 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.3), transparent 70%);
    top: 10%; left: -5%;
    animation: orb-float-1 16s ease-in-out infinite;
  }
  .vs-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 232, 123, 0.25), transparent 70%);
    top: 60%; right: -5%;
    animation: orb-float-2 14s ease-in-out infinite;
  }
  .vs-orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(100, 80, 255, 0.2), transparent 70%);
    bottom: 10%; left: 30%;
    animation: orb-float-3 18s ease-in-out infinite;
  }
  @keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, 30px) scale(1.1); }
    50% { transform: translate(-20px, 60px) scale(0.95); }
    75% { transform: translate(30px, -20px) scale(1.05); }
  }
  @keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, -40px) scale(1.1); }
    50% { transform: translate(25px, -20px) scale(0.9); }
    75% { transform: translate(-15px, 30px) scale(1.05); }
  }
  @keyframes orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.15); }
    66% { transform: translate(-30px, 20px) scale(0.9); }
  }

  /* Soundwave pattern overlay */
  .vs-wave-bg {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
    overflow: hidden;
  }
  .vs-wave-bg svg {
    position: absolute;
    width: 220%;
    height: 100%;
    left: 0;
    top: 0;
    animation: wave-drift 30s linear infinite;
  }
  .vs-wave-bg svg.wave-2 {
    opacity: 0.5;
    animation: wave-drift 22s linear infinite reverse;
  }
  @keyframes wave-drift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* Section backgrounds */
  .vs-section-glow {
    position: relative;
  }
  .vs-section-glow::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 200, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Page hero backgrounds */
  .vs-page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .vs-page-hero-bg::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
      radial-gradient(ellipse 40% 40% at 30% 40%, rgba(0, 200, 255, 0.1) 0%, transparent 70%),
      radial-gradient(ellipse 35% 35% at 70% 60%, rgba(0, 232, 123, 0.08) 0%, transparent 70%);
    animation: aurora-shift 15s ease-in-out infinite alternate;
  }
  .vs-hero-content { position: relative; max-width: 800px; }
  .vs-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    background: rgba(0, 200, 255, 0.05);
  }
  .vs-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  .vs-hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .vs-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .vs-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .vs-btn-primary {
    padding: 14px 32px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 8px;
    color: #0a0e17;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .vs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 255, 0.3), 0 0 40px rgba(0, 200, 255, 0.15);
  }
  .vs-btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    transition: all 0.2s;
    text-decoration: none;
  }
  .vs-btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 200, 255, 0.05);
  }

  /* ── WAVE DIVIDER ── */
  .vs-wave-divider {
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0;
    position: relative;
    overflow: visible;
  }
  .vs-wave-divider::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 16px;
    background: var(--accent-gradient);
    filter: blur(12px);
    opacity: 0.6;
    animation: glow-pulse 3s ease-in-out infinite;
  }
  @keyframes glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
  }

  /* Ambient app background */
  .vs-app::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 30% at 0% 0%, rgba(0, 200, 255, 0.04) 0%, transparent 70%),
      radial-gradient(ellipse 50% 30% at 100% 100%, rgba(0, 232, 123, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── SECTION ── */
  .vs-section {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .vs-section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .vs-section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
  .vs-section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ── SERVICE CARDS (HOME) ── */
  .vs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .vs-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .vs-service-card:link,
  .vs-service-card:visited,
  .vs-service-card:hover,
  .vs-service-card:active {
    text-decoration: none;
    color: inherit;
  }
  .vs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .vs-service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 200, 255, 0.08);
  }
  .vs-service-card:hover::before { opacity: 1; }
  .vs-service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
  }
  .vs-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ── REVIEWS ── */
  .vs-reviews-container {
    position: relative;
  }
  .vs-reviews-link-wrap {
    text-align: center;
    margin-top: 2.5rem;
  }
  .vs-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(0, 200, 255, 0.3);
    transition: all 0.2s;
  }
  .vs-reviews-link:hover {
    color: var(--accent-green);
    border-bottom-color: rgba(0, 232, 123, 0.4);
  }
  .vs-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  .vs-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.5s;
    animation: fadeInUp 0.6s ease-out;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .vs-review-stars {
    color: #f5c518;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }
  .vs-review-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
  }
  .vs-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .vs-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #0a0e17;
    flex-shrink: 0;
  }
  .vs-review-meta h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .vs-review-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
  }
  .vs-review-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 200, 255, 0.08);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-left: auto;
  }

  /* ── SERVICES PAGE ── */
  .vs-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 90px;
  }
  .vs-service-detail:last-child { border-bottom: none; }
  .vs-service-detail:nth-child(even) .vs-service-img { order: -1; }
  .vs-service-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
  }
  .vs-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .vs-service-detail-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .vs-service-detail-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  .vs-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .vs-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  .vs-feature-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 232, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 0.65rem;
    flex-shrink: 0;
    position: relative;
  }
  .vs-feature-check::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 4px;
    border-left: 2px solid var(--accent-green);
    border-bottom: 2px solid var(--accent-green);
    transform: rotate(-45deg);
    top: 6px;
    left: 5px;
  }

  @media (max-width: 768px) {
    .vs-service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .vs-service-detail:nth-child(even) .vs-service-img { order: 0; }
  }

  
  .vs-service-img.wifi-bg {
    background: var(--bg-primary);
  }
  .vs-service-img.wifi-bg img {
    object-fit: contain;
    padding: 1.5rem;
  }
  .vs-service-img.security-bg {
    background: #0a0e17;
  }
  .vs-service-img.security-bg img {
    object-fit: contain;
    padding: 1rem;
  }

  /* ── GALLERY ── */
  .vs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
  .vs-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
  }
  .vs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .vs-gallery-item:hover img { transform: scale(1.06); }
  .vs-gallery-item:hover {
    border-color: rgba(0, 200, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 200, 255, 0.08);
  }
  .vs-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  /* ── ABOUT ── */
  .vs-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .vs-about-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  .vs-about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }
  .vs-about-img {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    max-width: 360px;
    margin: 0 auto;
  }
  .vs-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .vs-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
  }
  .vs-stat-item { text-align: center; }
  .vs-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.2));
  }
  .vs-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .vs-about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .vs-stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .vs-stat-num { font-size: 1.8rem; }
  }

  /* ── CONTACT ── */
  .vs-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .vs-contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .vs-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .vs-contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 200, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .vs-contact-info-icon::after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--accent-cyan);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
  .vs-icon-phone::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E");
  }
  .vs-icon-email::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M2 5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5zm2 0v.01L12 12l8-6.99V5H4zm16 2.41-7.39 6.46a1 1 0 0 1-1.22 0L4 7.41V19h16V7.41z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M2 5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5zm2 0v.01L12 12l8-6.99V5H4zm16 2.41-7.39 6.46a1 1 0 0 1-1.22 0L4 7.41V19h16V7.41z'/%3E%3C/svg%3E");
  }
  .vs-icon-location::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
  }
  .vs-contact-info-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
  }
  .vs-contact-info-item p,
  .vs-contact-info-item a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .vs-contact-info-item a:hover { color: var(--accent-cyan); }
  .vs-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .vs-social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
  }
  .vs-social-link:hover {
    background: rgba(0, 200, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
  }
  .vs-contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
  }
  .vs-contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  .vs-form-group {
    margin-bottom: 1.25rem;
  }
  .vs-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .vs-form-group input,
  .vs-form-group select,
  .vs-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .vs-form-group input:focus,
  .vs-form-group select:focus,
  .vs-form-group textarea:focus {
    border-color: var(--accent-cyan);
  }
  .vs-form-group textarea { resize: vertical; min-height: 100px; }
  .vs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .vs-form-notice {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  .vs-form-notice-success {
    background: rgba(0, 232, 123, 0.1);
    border: 1px solid rgba(0, 232, 123, 0.25);
    color: var(--accent-green);
  }
  .vs-form-notice-error {
    background: rgba(255, 90, 90, 0.08);
    border: 1px solid rgba(255, 90, 90, 0.25);
    color: #ff8080;
  }

  @media (max-width: 768px) {
    .vs-contact-layout { grid-template-columns: 1fr; }
    .vs-form-row { grid-template-columns: 1fr; }
    .vs-section { padding: 60px 1rem; }
    .vs-reviews-grid { grid-template-columns: 1fr; }
    .vs-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  }

  /* ── FOOTER ── */
  .vs-footer {
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .vs-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .vs-footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
  }
  .vs-footer-links {
    display: flex;
    gap: 1.25rem;
  }
  .vs-footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .vs-footer-links a:hover { color: var(--accent-cyan); }

  /* ── MISC ── */
  .vs-cta-banner {
    text-align: center;
    padding: 80px 2rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }
  .vs-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 80% at 20% 100%, rgba(0, 200, 255, 0.1) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 80% 100%, rgba(0, 232, 123, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(100, 80, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: aurora-shift 10s ease-in-out infinite alternate;
  }
  .vs-cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
  }
  .vs-cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
  }

  .vs-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 1rem;
    padding: 1rem;
  }
  .vs-lightbox-overlay.open {
    display: flex;
    animation: fadeIn 0.3s;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .vs-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    max-width: 90vw;
    animation: fadeInScale 0.35s ease-out;
  }
  @keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
  }
  .vs-lightbox-overlay img {
    max-width: 90vw;
    max-height: 78vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
  }
  .vs-lightbox-caption {
    margin-top: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .vs-lightbox-counter {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
  }
  .vs-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
  }
  .vs-lightbox-nav {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.2s;
    z-index: 1;
  }
  .vs-lightbox-nav:hover {
    background: rgba(0, 200, 255, 0.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
  }
  @media (max-width: 768px) {
    .vs-lightbox-overlay { gap: 0.25rem; }
    .vs-lightbox-nav {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
  }

  .vs-page-hero {
    padding: 140px 2rem 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .vs-page-hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
      radial-gradient(ellipse 40% 50% at 30% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 70%),
      radial-gradient(ellipse 35% 40% at 70% 40%, rgba(0, 232, 123, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 30% 30% at 50% 80%, rgba(100, 80, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: aurora-shift 15s ease-in-out infinite alternate;
  }
  .vs-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
  }
  .vs-page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
  }
