/* ════════════════════════════════════════
       CSS VARIABLES — BRAND IDENTITY
    ════════════════════════════════════════ */
    :root {
      --navy:        #1A237E;
      --navy-dark:   #0D1657;
      --navy-light:  #283593;
      --saffron:     #FF8F00;
      --saffron-light: #FFB300;
      --saffron-dark:  #E65100;
      --white:       #FFFFFF;
      --off-white:   #F8F9FF;
      --gray-light:  #F1F3F9;
      --gray:        #9EA7C0;
      --gray-dark:   #4A5180;
      --text:        #1C2340;
      --text-light:  #5A6282;

      --font-head: 'Montserrat', sans-serif;
      --font-body: 'Inter', sans-serif;

      --radius-sm:  8px;
      --radius-md:  16px;
      --radius-lg:  24px;
      --radius-xl:  40px;

      --shadow-sm:  0 2px 12px rgba(26,35,126,0.08);
      --shadow-md:  0 8px 32px rgba(26,35,126,0.13);
      --shadow-lg:  0 16px 48px rgba(26,35,126,0.18);

      --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
      --max-width: 1180px;
    }

    /* ════════════════════════════════════════
       GLOBAL RESETS
    ════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ════════════════════════════════════════
       UTILITY CLASSES
    ════════════════════════════════════════ */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      font-family: var(--font-head);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 12px;
      display: block;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 580px;
      line-height: 1.7;
    }
    .section-header {
      margin-bottom: 56px;
    }
    .section-header.center {
      text-align: center;
    }
    .section-header.center .section-sub {
      margin: 0 auto;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      padding: 14px 28px;
      border-radius: var(--radius-xl);
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--saffron);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(255,143,0,0.35);
    }
    .btn-primary:hover {
      background: var(--saffron-dark);
      box-shadow: 0 6px 28px rgba(255,143,0,0.45);
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--navy);
    }
    .btn-outline:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
    }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.5);
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,0.15);
      border-color: var(--white);
    }
    section { overflow: hidden; }

    /* ════════════════════════════════════════
       NAVBAR
    ════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(26,35,126,0.08);
      transition: box-shadow var(--transition);
    }
    #navbar.scrolled {
      box-shadow: var(--shadow-md);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-icon {
      width: 38px; height: 38px;
      background: var(--navy);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-logo-icon svg { width: 22px; height: 22px; fill: var(--saffron); }
    .nav-logo-text {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 1.4rem;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .nav-logo-text span { color: var(--saffron); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a {
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--navy);
      background: var(--gray-light);
    }
    .nav-cta { margin-left: 12px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2.5px;
      background: var(--navy);
      border-radius: 2px;
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: var(--white);
      border-top: 1px solid var(--gray-light);
      padding: 20px 24px 28px;
      z-index: 999;
      box-shadow: var(--shadow-lg);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      padding: 14px 0;
      border-bottom: 1px solid var(--gray-light);
    }
    .mobile-menu .btn {
      margin-top: 20px;
      width: 100%;
      justify-content: center;
    }

    /* ════════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 70px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(255,143,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,143,0,0.05) 0%, transparent 40%);
    }
    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 80px 24px 60px;
      max-width: var(--max-width);
      margin: 0 auto;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,143,0,0.15);
      border: 1px solid rgba(255,143,0,0.3);
      color: var(--saffron-light);
      font-family: var(--font-head);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: var(--radius-xl);
      margin-bottom: 28px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--saffron);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }
    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      max-width: 780px;
    }
    .hero-title .highlight {
      color: var(--saffron);
      position: relative;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.18rem);
      color: rgba(255,255,255,0.75);
      max-width: 580px;
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }
    .hero-stats {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(8px);
      overflow: hidden;
      max-width: 700px;
    }
    .hero-stat {
      flex: 1;
      min-width: 140px;
      padding: 20px 28px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--saffron-light);
      line-height: 1;
      margin-bottom: 4px;
    }
    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.4);
      font-size: 0.72rem;
      font-family: var(--font-head);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: scrollBounce 2.5s infinite;
    }
    .hero-scroll svg { width: 20px; height: 20px; stroke: currentColor; }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ════════════════════════════════════════
       TRUST BAR
    ════════════════════════════════════════ */
    #trust-bar {
      background: var(--saffron);
      padding: 0;
      overflow: hidden;
    }
    .trust-bar-inner {
      display: flex;
      align-items: center;
      height: 52px;
      overflow: hidden;
    }
    .trust-bar-track {
      display: flex;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }
    .trust-bar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 32px;
      font-family: var(--font-head);
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.03em;
    }
    .trust-bar-item svg {
      width: 16px; height: 16px;
      fill: rgba(255,255,255,0.7);
      flex-shrink: 0;
    }
    .trust-bar-dot {
      width: 4px; height: 4px;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ════════════════════════════════════════
       PRODUCTS SECTION
    ════════════════════════════════════════ */
    #products {
      padding: 100px 0;
      background: var(--white);
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
    }
    .product-card {
      background: var(--white);
      border: 1.5px solid rgba(26,35,126,0.09);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--saffron));
      transform: scaleX(0);
      transition: var(--transition);
      transform-origin: left;
    }
    .product-card:hover {
      border-color: rgba(26,35,126,0.18);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .product-card:hover::before { transform: scaleX(1); }
    .product-icon {
      width: 56px; height: 56px;
      background: var(--off-white);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      font-size: 1.6rem;
      transition: var(--transition);
    }
    .product-card:hover .product-icon {
      background: rgba(26,35,126,0.07);
    }
    .product-name {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .product-desc {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }
    .tag {
      font-size: 0.72rem;
      font-weight: 600;
      font-family: var(--font-head);
      padding: 4px 10px;
      border-radius: 20px;
      background: var(--off-white);
      color: var(--navy);
      border: 1px solid rgba(26,35,126,0.1);
    }
    .product-link {
      font-family: var(--font-head);
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--saffron);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }
    .product-link:hover { gap: 10px; }
    .product-card.featured {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-color: transparent;
      color: var(--white);
    }
    .product-card.featured .product-name { color: var(--white); }
    .product-card.featured .product-desc { color: rgba(255,255,255,0.7); }
    .product-card.featured .product-icon {
      background: rgba(255,255,255,0.12);
    }
    .product-card.featured .tag {
      background: rgba(255,255,255,0.12);
      color: var(--white);
      border-color: rgba(255,255,255,0.2);
    }
    .product-card.featured .product-link { color: var(--saffron-light); }
    .product-card.featured::before {
      background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
    }

    /* ════════════════════════════════════════
       PRINTING METHODS
    ════════════════════════════════════════ */
    #printing {
      padding: 100px 0;
      background: var(--off-white);
    }
    .printing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }
    .print-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .print-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .print-header {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .print-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .print-name {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }
    .print-short {
      font-size: 0.8rem;
      color: var(--saffron);
      font-weight: 600;
    }
    .print-desc {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.65;
    }
    .print-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }
    .print-badge {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      font-family: var(--font-head);
    }
    .badge-green { background: #E8F5E9; color: #2E7D32; }
    .badge-blue  { background: #E3F2FD; color: #1565C0; }
    .badge-orange{ background: #FFF3E0; color: #E65100; }

    /* ════════════════════════════════════════
       WHY VASTRAA
    ════════════════════════════════════════ */
    #why {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
    }
    #why::before {
      content: '';
      position: absolute;
      top: -50%; left: -20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,143,0,0.08) 0%, transparent 70%);
    }
    #why .section-title { color: var(--white); }
    #why .section-sub { color: rgba(255,255,255,0.65); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      position: relative;
      z-index: 1;
    }
    .why-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 28px;
      transition: var(--transition);
      backdrop-filter: blur(4px);
    }
    .why-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,143,0,0.3);
      transform: translateY(-4px);
    }
    .why-icon {
      font-size: 1.8rem;
      margin-bottom: 16px;
      display: block;
    }
    .why-title {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .why-desc {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }
    .why-tag {
      display: inline-block;
      margin-top: 12px;
      font-size: 0.72rem;
      font-weight: 700;
      font-family: var(--font-head);
      color: var(--saffron);
      background: rgba(255,143,0,0.12);
      border: 1px solid rgba(255,143,0,0.2);
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* ════════════════════════════════════════
       WHO WE SERVE
    ════════════════════════════════════════ */
    #serve {
      padding: 100px 0;
      background: var(--white);
    }
    .serve-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
    }
    .serve-card {
      border: 1.5px solid rgba(26,35,126,0.09);
      border-radius: var(--radius-md);
      padding: 28px;
      transition: var(--transition);
      position: relative;
    }
    .serve-card:hover {
      border-color: var(--saffron);
      box-shadow: 0 8px 32px rgba(255,143,0,0.12);
      transform: translateY(-3px);
    }
    .serve-emoji {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block;
    }
    .serve-title {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .serve-desc {
      font-size: 0.87rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ════════════════════════════════════════
       GALLERY
    ════════════════════════════════════════ */
    #gallery {
      padding: 100px 0;
      background: var(--off-white);
    }
    .gallery-filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .filter-btn {
      font-family: var(--font-head);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: var(--radius-xl);
      border: 2px solid rgba(26,35,126,0.12);
      color: var(--text-light);
      background: var(--white);
      transition: var(--transition);
      cursor: pointer;
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    .gallery-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      cursor: pointer;
    }
    .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
    .gallery-placeholder {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: var(--font-head);
      color: rgba(255,255,255,0.5);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
    }
    .gallery-placeholder.alt {
      background: linear-gradient(135deg, #1A3A3A 0%, #2D5A5A 100%);
    }
    .gallery-placeholder.alt2 {
      background: linear-gradient(135deg, #3A1A1A 0%, #5A2D2D 100%);
    }
    .gallery-placeholder span { font-size: 2.5rem; }

    /* Real photo images inside gallery items */
    .gallery-item img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
      padding: 20px 16px 16px;
      opacity: 0;
      transition: var(--transition);
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-cat {
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--saffron-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .gallery-item-title {
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
      margin-top: 4px;
    }

    /* ════════════════════════════════════════
       TESTIMONIALS — MARQUEE
    ════════════════════════════════════════ */
    #testimonials {
      padding: 100px 0 80px;
      background: var(--off-white);
      overflow: hidden;
    }

    /* Rating summary */
    .testi-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 52px;
      background: var(--white);
      border: 1.5px solid rgba(26,35,126,0.09);
      border-radius: var(--radius-lg);
      padding: 24px 36px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: var(--shadow-sm);
    }
    .testi-summary-score {
      font-family: var(--font-head);
      font-size: 3.8rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
    }
    .testi-summary-stars {
      font-size: 1.4rem;
      color: var(--saffron);
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .testi-summary-count {
      font-family: var(--font-head);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }
    .testi-summary-platforms {
      display: flex;
      gap: 6px;
      font-size: 0.75rem;
      color: var(--text-light);
      font-weight: 500;
    }

    /* Track wrapper — masks overflow + fade edges */
    .review-track-wrap {
      position: relative;
      overflow: hidden;
    }
    .review-track-wrap::before,
    .review-track-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .review-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--off-white), transparent);
    }
    .review-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--off-white), transparent);
    }

    /* Marquee tracks */
    .review-track {
      display: flex;
      gap: 20px;
      width: max-content;
      padding: 8px 10px;
    }
    .review-track--left {
      animation: reviewLeft 40s linear infinite;
    }
    .review-track--right {
      animation: reviewRight 40s linear infinite;
    }
    .review-track--left:hover,
    .review-track--right:hover {
      animation-play-state: paused;
    }
    @keyframes reviewLeft {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes reviewRight {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    /* Individual review card */
    .review-card {
      background: var(--white);
      border: 1.5px solid rgba(26,35,126,0.08);
      border-radius: var(--radius-md);
      padding: 24px 26px;
      width: 340px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .review-card::before {
      content: '"';
      position: absolute;
      top: -8px; right: 16px;
      font-size: 5rem;
      font-family: Georgia, serif;
      color: rgba(255,143,0,0.12);
      line-height: 1;
      pointer-events: none;
    }
    .review-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .review-card--dark {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-color: transparent;
    }
    .review-card--dark::before {
      color: rgba(255,255,255,0.08);
    }
    .review-stars {
      color: var(--saffron);
      font-size: 0.95rem;
      letter-spacing: 2px;
    }
    .review-card--dark .review-stars { color: var(--saffron-light); }
    .review-quote {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--text);
      font-style: italic;
      flex: 1;
    }
    .review-card--dark .review-quote { color: rgba(255,255,255,0.82); }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px;
    }
    .review-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 0.85rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .review-name {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--navy);
    }
    .review-card--dark .review-name { color: var(--white); }
    .review-role {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-top: 2px;
    }
    .review-card--dark .review-role { color: rgba(255,255,255,0.55); }

    /* Mobile overrides for reviews */
    @media (max-width: 768px) {
      .review-card { width: 280px; padding: 20px; }
      .testi-summary { padding: 18px 20px; gap: 14px; }
      .testi-summary-score { font-size: 3rem; }
      .review-track-wrap::before,
      .review-track-wrap::after { width: 40px; }
      /* Slow down a bit on mobile to be readable */
      .review-track--left  { animation-duration: 30s; }
      .review-track--right { animation-duration: 35s; }
    }
    @media (max-width: 480px) {
      .review-card { width: 260px; }
    }

    /* ════════════════════════════════════════
       CONTACT / QUOTE FORM
    ════════════════════════════════════════ */
    #contact {
      padding: 100px 0;
      background: var(--off-white);
    }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      align-items: start;
    }
    .contact-info { }
    .contact-info .section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: var(--navy);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }
    .contact-item-label {
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--saffron);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }
    .contact-item-value {
      font-size: 0.95rem;
      color: var(--text);
      font-weight: 500;
    }
    .contact-item-value a { color: var(--navy); font-weight: 600; }
    .whatsapp-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      color: var(--white);
      padding: 16px 28px;
      border-radius: var(--radius-xl);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.95rem;
      margin-top: 32px;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    }
    .whatsapp-btn:hover {
      background: #128C7E;
      box-shadow: 0 6px 28px rgba(37,211,102,0.4);
      transform: translateY(-2px);
    }
    .whatsapp-btn svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
    .map-embed iframe {
      width: 100%;
      height: 200px;
      display: block;
      border: 0;
    }
    .quote-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .form-title {
      font-family: var(--font-head);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 28px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group.full { grid-column: 1 / -1; }
    .form-label {
      display: block;
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
      letter-spacing: 0.03em;
    }
    .form-label span { color: var(--saffron); }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid rgba(26,35,126,0.12);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--text);
      background: var(--white);
      transition: var(--transition);
      outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(26,35,126,0.08);
    }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239EA7C0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--navy);
      color: var(--white);
      border-radius: var(--radius-xl);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      margin-top: 8px;
    }
    .form-submit:hover {
      background: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .form-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--gray);
      margin-top: 12px;
    }

    /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
    #footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.65);
      padding: 64px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }
    .footer-brand .nav-logo-text {
      color: var(--white);
      font-size: 1.5rem;
    }
    .footer-brand .nav-logo-text span { color: var(--saffron); }
    .footer-tagline {
      font-size: 0.87rem;
      line-height: 1.7;
      margin-top: 16px;
      color: rgba(255,255,255,0.55);
    }
    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }
    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      transition: var(--transition);
      color: rgba(255,255,255,0.6);
    }
    .social-btn:hover {
      background: var(--saffron);
      color: var(--white);
    }
    .footer-col-title {
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
      transition: var(--transition);
    }
    .footer-links a:hover { color: var(--saffron); padding-left: 4px; }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 0.87rem;
      color: rgba(255,255,255,0.55);
    }
    .footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.35);
      font-size: 0.8rem;
      transition: var(--transition);
    }
    .footer-bottom-links a:hover { color: var(--saffron); }

    /* ════════════════════════════════════════
       STICKY WHATSAPP BUTTON
    ════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .wa-bubble {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      box-shadow: var(--shadow-lg);
      font-family: var(--font-head);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text);
      max-width: 200px;
      display: none;
    }
    .wa-float:hover .wa-bubble { display: block; }
    .wa-btn {
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      transition: var(--transition);
      animation: waPulse 3s infinite;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
    .wa-btn svg { width: 28px; height: 28px; fill: var(--white); }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
    }

    /* ════════════════════════════════════════
       SCROLL TO TOP
    ════════════════════════════════════════ */
    .scroll-top {
      position: fixed;
      bottom: 28px;
      left: 28px;
      z-index: 999;
      width: 44px; height: 44px;
      background: var(--navy);
      color: var(--white);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: var(--transition);
      opacity: 0;
      pointer-events: none;
    }
    .scroll-top.visible { opacity: 1; pointer-events: all; }
    .scroll-top:hover { background: var(--saffron); transform: translateY(-3px); }
    .scroll-top svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2.5; }

    /* ════════════════════════════════════════
       RESPONSIVE — MOBILE FIRST
    ════════════════════════════════════════ */

    /* ── Tablet: 1024px ── */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .contact-layout { grid-template-columns: 1fr; gap: 40px; }
      .printing-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── Mobile: 768px ── */
    @media (max-width: 768px) {
      /* Global section spacing */
      section { padding: 64px 0 !important; }
      .section-header { margin-bottom: 36px; }
      .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
      .section-sub { font-size: 0.95rem; }

      /* Navbar */
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .nav-inner { height: 62px; }

      /* Mobile menu — full screen, better touch targets */
      .mobile-menu {
        top: 62px;
        padding: 12px 20px 32px;
      }
      .mobile-menu a {
        padding: 16px 4px;
        font-size: 1.05rem;
      }
      .mobile-menu .btn {
        padding: 16px;
        font-size: 1rem;
        border-radius: 12px;
      }

      /* Hero */
      #hero { min-height: 100svh; padding-top: 62px; }
      .hero-inner { padding: 48px 20px 48px; }
      .hero-badge { font-size: 0.7rem; padding: 7px 14px; }
      .hero-title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 18px; }
      .hero-sub { font-size: 0.97rem; margin-bottom: 28px; }
      .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
      }
      .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 14px;
      }
      /* Stats: 2x2 grid on mobile */
      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
      }
      .hero-stat {
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 16px 18px;
      }
      .hero-stat:nth-child(2) { border-right: none; }
      .hero-stat:nth-child(3) { border-bottom: none; }
      .hero-stat:nth-child(4) { border-right: none; border-bottom: none; }
      .hero-stat-num { font-size: 1.4rem; }
      .hero-stat-label { font-size: 0.72rem; }
      .hero-scroll { display: none; }

      /* Trust bar — slightly smaller text */
      .trust-bar-item { font-size: 0.78rem; padding: 0 20px; }

      /* Products */
      .products-grid { grid-template-columns: 1fr; gap: 16px; }
      .product-card { padding: 24px 20px; }

      /* Printing */
      .printing-grid { grid-template-columns: 1fr; gap: 16px; }
      .print-card { padding: 24px 20px; }

      /* Why Vastraa */
      .why-grid { grid-template-columns: 1fr; gap: 14px; }
      .why-card { padding: 22px 20px; }

      /* Who We Serve */
      .serve-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .serve-card { padding: 20px 16px; }
      .serve-emoji { font-size: 1.8rem; margin-bottom: 10px; }
      .serve-title { font-size: 0.9rem; }
      .serve-desc { font-size: 0.82rem; }

      /* Gallery */
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .gallery-filters { gap: 8px; }
      .filter-btn { font-size: 0.78rem; padding: 9px 16px; }

      /* Testimonials marquee handled in its own block above */

      /* Contact */
      .contact-layout { grid-template-columns: 1fr; gap: 32px; }
      .quote-form { padding: 24px 18px; border-radius: 16px; }
      .form-title { font-size: 1.1rem; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .form-input, .form-select, .form-textarea {
        padding: 15px 14px;
        font-size: 1rem; /* prevents iOS zoom-in on focus */
        border-radius: 10px;
      }
      .form-submit { padding: 18px; font-size: 1rem; }
      .whatsapp-btn { padding: 15px 22px; font-size: 0.92rem; }
      .map-placeholder { height: 160px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      #footer { padding-top: 48px; }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 0;
      }
      .footer-bottom-links { justify-content: center; gap: 16px; }

      /* Floating buttons — move WA button up on iOS to avoid home indicator */
      .wa-float { bottom: calc(20px + env(safe-area-inset-bottom)); right: 20px; }
      .wa-btn { width: 52px; height: 52px; }
      .wa-btn svg { width: 24px; height: 24px; }
      .scroll-top { bottom: calc(20px + env(safe-area-inset-bottom)); left: 20px; }
    }

    /* ── Small mobile: 480px ── */
    @media (max-width: 480px) {
      .container { padding: 0 16px; }

      /* Hero tweaks */
      .hero-inner { padding: 36px 16px 40px; }
      .hero-title { font-size: clamp(1.85rem, 10vw, 2.5rem); }

      /* Serve: stack to 1 col on very small screens */
      .serve-grid { grid-template-columns: 1fr; }

      /* Gallery: 1 col on tiny screens */
      .gallery-grid { grid-template-columns: 1fr; }

      /* Print cards */
      .print-icon { width: 44px; height: 44px; font-size: 1.2rem; }

      /* Contact info items */
      .contact-item-icon { width: 38px; height: 38px; font-size: 1rem; }

      /* Footer links inline */
      .footer-bottom-links { flex-wrap: wrap; gap: 12px; }

      /* Ensure all tappable elements meet 44px minimum touch target */
      .btn, .filter-btn, .whatsapp-btn, .form-submit,
      .nav-links a, .mobile-menu a, .social-btn {
        min-height: 44px;
      }
    }

    /* ── iPhone SE / very narrow: 360px ── */
    @media (max-width: 360px) {
      .hero-title { font-size: 1.75rem; }
      .hero-badge { font-size: 0.65rem; }
      .hero-stat-num { font-size: 1.2rem; }
      .section-title { font-size: 1.5rem; }
      .quote-form { padding: 20px 14px; }
    }

    /* ── Safe area for notched iPhones (iOS 11+) ── */
    @supports (padding: max(0px)) {
      #navbar {
        padding-top: env(safe-area-inset-top);
      }
      body {
        padding-bottom: env(safe-area-inset-bottom);
      }
    }

    /* ── Touch: remove hover effects that feel broken on mobile ── */
    @media (hover: none) {
      .product-card:hover,
      .print-card:hover,
      .why-card:hover,
      .serve-card:hover,
      .review-card:hover,
      .gallery-item:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
      }
      .btn:hover { transform: none; }
      .gallery-overlay { opacity: 1; } /* always show label on touch */
    }