 /* ===========================
       CSS VARIABLES
    =========================== */
    :root {
      --primary: #1e6b3c;
      --primary-dark: #144d2b;
      --primary-light: #e8f5ee;
      --primary-mid: #2d8a52;
      --gold: #c9a227;
      --gold-light: #f5ecd7;
      --gold-dark: #a07c10;
      --bg: #ffffff;
      --bg-alt: #f7f9f7;
      --bg-dark: #0f2a1a;
      --text: #1a2533;
      --text-muted: #6b7280;
      --text-light: #9ca3af;
      --border: #e2e8f0;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
      --shadow-lg: 0 20px 48px rgba(0,0,0,0.14);
      --radius: 12px;
      --radius-sm: 8px;
      --transition: all 0.3s ease;
    }

    /* ===========================
       BASE STYLES
    =========================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
    a { text-decoration: none; transition: var(--transition); }
    img { max-width: 100%; }
    section { scroll-margin-top: 80px; }

    .section-pad { padding: 96px 0; }
    .section-pad-sm { padding: 72px 0; }
    .bg-alt { background-color: var(--bg-alt); }

    .section-badge {
      display: inline-block;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--primary); }
    .section-subtitle {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 620px;
    }
    .divider {
      width: 56px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      border-radius: 2px;
      margin: 16px 0 32px;
    }
    .divider-center { margin: 16px auto 32px; }

    .btn-primary-cta {
      background: var(--primary);
      color: #fff;
      border: 2px solid var(--primary);
      padding: 14px 36px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.3px;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary-cta:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(30,107,60,0.3);
    }
    .btn-outline-cta {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.7);
      padding: 14px 36px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      transition: var(--transition);
    }
    .btn-outline-cta:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
      color: #fff;
    }
    .btn-gold {
      background: var(--gold);
      color: #fff;
      border: 2px solid var(--gold);
      padding: 14px 40px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 15px;
      transition: var(--transition);
    }
    .btn-gold:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,162,39,0.35);
    }

    /* ===========================
       NAVBAR
    =========================== */
    #mainNav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 14px 0;
      transition: var(--transition);
      background: #ffffff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    #mainNav.scrolled {
      background: #ffffff;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      padding: 10px 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    }
    .navbar-brand {
      background: transparent;
      border-radius: 0;
      padding: 0 !important;
      box-shadow: none;
      transition: var(--transition);
    }
    .navbar-brand img {
      height: 75px;
      width: auto;
      transition: var(--transition);
    }
    #mainNav.scrolled .navbar-brand img { height: 57px; }
    .nav-link {
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.3px;
      color: var(--text) !important;
      padding: 8px 16px !important;
      border-radius: 6px;
      transition: var(--transition);
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--primary) !important;
      background: var(--primary-light);
    }
    .navbar-toggler {
      border: 1.5px solid var(--primary);
      padding: 6px 10px;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830,107,60,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .nav-cta {
      background: var(--gold);
      color: #fff !important;
      padding: 8px 20px !important;
      border-radius: 100px;
      font-weight: 600;
    }
    .nav-cta:hover { background: var(--gold-dark); color: #fff !important; }
    #mainNav.scrolled .nav-cta { color: #fff !important; }

    /* ===========================
       HERO
    =========================== */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    /* Layer 1 — real photo background */
    #hero-photo-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=85');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
      transform: scale(1.04);
      transition: transform 8s ease;
      z-index: 0;
    }
    #hero:hover #hero-photo-bg { transform: scale(1.08); }

    /* Layer 2 — dark green gradient overlay for text legibility */
    #hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(160deg,
          rgba(8, 25, 15, 0.90) 0%,
          rgba(18, 65, 38, 0.82) 40%,
          rgba(12, 45, 25, 0.88) 100%);
      z-index: 1;
    }

    /* Layer 3 — gold/warm accent vignette */
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 15% 55%, rgba(201,162,39,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.35) 0%, transparent 60%);
      pointer-events: none;
      z-index: 2;
    }
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 3;
    }
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      animation: float-particle linear infinite;
    }
    @keyframes float-particle {
      0% { transform: translateY(100vh) scale(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10px) scale(1); opacity: 0; }
    }
    .hero-content {
      position: relative;
      z-index: 4;
      padding: 120px 20px 60px;
      max-width: 900px;
    }
    .hero-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      animation: hero-fade-up 0.9s ease 0.1s both;
    }
    .hero-title {
      font-size: clamp(32px, 5.5vw, 62px);
      font-weight: 700;
      line-height: 1.18;
      color: #fff;
      margin-bottom: 20px;
      animation: hero-fade-up 1s ease 0.2s both;
    }
    .hero-title em { color: var(--gold); font-style: normal; }
    .hero-subtitle {
      font-size: clamp(16px, 2.2vw, 20px);
      font-weight: 300;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 40px;
      animation: hero-fade-up 1s ease 0.3s both;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: hero-fade-up 1s ease 0.4s both;
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 72px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.12);
      animation: hero-fade-up 1s ease 0.5s both;
    }
    .hero-stat { text-align: center; }
    .hero-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      font-weight: 500;
      margin-top: 4px;
      letter-spacing: 0.5px;
    }
    @keyframes hero-fade-up {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: bounce-scroll 2s infinite;
    }
    @keyframes bounce-scroll {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ===========================
       ABOUT US
    =========================== */
    .about-content p {
      font-size: 16px;
      line-height: 1.85;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .about-highlight {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-left: 4px solid var(--primary);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      margin-bottom: 12px;
      transition: var(--transition);
    }
    .about-highlight:hover { border-left-color: var(--gold); box-shadow: var(--shadow-sm); }
    .about-highlight-icon {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 17px;
    }
    .about-highlight h6 {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      margin-bottom: 2px;
    }
    .about-highlight p { font-size: 13.5px; margin: 0; }
    .stat-card {
      background: linear-gradient(135deg, var(--primary), var(--primary-mid));
      color: #fff;
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: var(--transition);
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .stat-card-number {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-card-label {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      margin-top: 6px;
      font-weight: 500;
    }
    .countries-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }
    .country-pill {
      background: var(--primary-light);
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid rgba(30,107,60,0.15);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }
    .country-pill:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ===========================
       WHAT WE DO
    =========================== */
    .service-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      transform: scaleX(0);
      transition: var(--transition);
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--primary);
      margin: 0 auto 20px;
      transition: var(--transition);
    }
    .service-card:hover .service-icon { background: var(--primary); color: #fff; transform: rotateY(15deg) scale(1.08); }
    .service-card h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
    }
    .service-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* ===========================
       PRODUCTS
    =========================== */
    .product-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .product-tab-btn {
      background: var(--bg);
      color: var(--text-muted);
      border: 1.5px solid var(--border);
      padding: 10px 24px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .product-tab-btn:hover, .product-tab-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 4px 16px rgba(30,107,60,0.25);
    }
    .product-category { display: none; }
    .product-category.active { display: block; }
    .product-image-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }
    .product-img-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }
    .product-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-img-card:hover img { transform: scale(1.08); }
    .product-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,42,26,0.85) 0%, transparent 55%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .product-img-card:hover .product-img-overlay { opacity: 1; }
    .product-img-overlay span {
      color: #fff;
      font-weight: 600;
      font-size: 15px;
    }
    .product-grades-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 14px;
    }
    .grade-item {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      transition: var(--transition);
    }
    .grade-item:hover { border-color: var(--primary); background: var(--primary-light); box-shadow: var(--shadow-sm); }
    .grade-dot {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      margin-top: 6px;
      flex-shrink: 0;
    }
    .grade-item h6 {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2px;
    }
    .grade-item p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
    .compound-card {
      background: linear-gradient(135deg, var(--bg) 0%, var(--primary-light) 100%);
      border: 1px solid rgba(30,107,60,0.15);
      border-radius: var(--radius);
      padding: 28px;
      transition: var(--transition);
      height: 100%;
    }
    .compound-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .compound-card .badge-tag {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 14px;
      letter-spacing: 0.5px;
    }
    .compound-card h5 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .compound-card .sub { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
    .compound-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.65; }
    .polymer-badge {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 20px;
      text-align: center;
      transition: var(--transition);
    }
    .polymer-badge:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-4px); }
    .polymer-badge .icon { font-size: 32px; color: var(--primary); margin-bottom: 10px; }
    .polymer-badge h5 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
    .polymer-badge p { font-size: 13px; color: var(--text-muted); margin: 0; }

    /* ===========================
       WHY CHOOSE US
    =========================== */
    .why-section {
      background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .why-section .section-badge { background: rgba(201,162,39,0.15); color: var(--gold); }
    .why-section .section-title { color: #fff; }
    .why-section .section-subtitle { color: rgba(255,255,255,0.65); }
    .why-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      position: relative;
    }
    .why-card:hover {
      background: rgba(255,255,255,0.10);
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    }
    .why-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      margin: 0 auto 20px;
    }
    .why-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .why-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }

    /* ===========================
       MANAGEMENT
    =========================== */
    .mgmt-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .mgmt-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .mgmt-img-wrap {
      position: relative;
      height: 340px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
    }
    .mgmt-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 0.5s ease;
    }
    .mgmt-card:hover .mgmt-img-wrap img { transform: scale(1.04); }
    .mgmt-img-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(15,42,26,0.9) 0%, transparent 60%);
      padding: 24px 24px 20px;
    }
    .mgmt-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .mgmt-designation {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .mgmt-body { padding: 28px; }
    .mgmt-quote {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
      font-style: italic;
      position: relative;
      padding-left: 20px;
      border-left: 3px solid var(--gold);
    }

    /* ===========================
       INQUIRY FORM
    =========================== */
    .inquiry-section {
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--gold-light) 100%);
    }
    .inquiry-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 48px 40px;
      box-shadow: var(--shadow-lg);
    }
    .form-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
      letter-spacing: 0.3px;
    }
    .form-control {
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-size: 14.5px;
      color: var(--text);
      transition: var(--transition);
    }
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(30,107,60,0.12);
      outline: none;
    }
    .form-control.is-invalid { border-color: #dc2626; }
    .invalid-feedback { font-size: 12.5px; }
    .inquiry-info-card {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
      border-radius: var(--radius);
      padding: 40px 32px;
      color: #fff;
      height: 100%;
    }
    .inquiry-info-card h4 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .inquiry-info-card p { color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.75; margin-bottom: 32px; }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
    }
    .info-icon {
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .info-item h6 { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
    .info-item p { font-size: 14px; color: #fff; margin: 0; line-height: 1.5; }

    /* ===========================
       CONTACT
    =========================== */
    /* ===========================
       CONTACT SECTION — redesigned
    =========================== */

    /* HQ Featured Card (India) */
    .contact-hq-card {
      background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 60%, #1a5c3a 100%);
      border-radius: var(--radius);
      padding: 44px 40px;
      color: #fff;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }
    .contact-hq-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .contact-hq-card::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(201,162,39,0.08);
      pointer-events: none;
    }
    .contact-hq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .hq-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(201,162,39,0.18);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid rgba(201,162,39,0.3);
      margin-bottom: 16px;
    }
    .hq-flag {
      font-size: 36px;
      margin-bottom: 4px;
      display: block;
    }
    .hq-office-name {
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .hq-tagline {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 28px;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    .hq-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .hq-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 16px;
    }
    .hq-detail-icon {
      width: 38px;
      height: 38px;
      background: rgba(255,255,255,0.10);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .hq-detail-text { flex: 1; }
    .hq-detail-text label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .hq-detail-text span {
      font-size: 14px;
      color: rgba(255,255,255,0.9);
      line-height: 1.55;
    }
    .hq-social {
      display: flex;
      gap: 10px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hq-social a {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.8);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: var(--transition);
    }
    .hq-social a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
    .hq-social a.wa:hover { background: #25d366; }
    .hq-social a.li:hover { background: #0a66c2; }
    .hq-social a.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }

    /* Regional Office Cards (UAE, Kenya) */
    .contact-regional-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 28px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: var(--transition);
      height: 100%;
    }
    .contact-regional-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }
    .regional-flag-wrap {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      flex-shrink: 0;
    }
    .regional-body { flex: 1; }
    .regional-body h5 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }
    .regional-detail {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 9px;
    }
    .regional-detail i { color: var(--primary); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
    .regional-detail span { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

    /* Quick Contact Bar */
    .contact-quick-bar {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      border-radius: var(--radius);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 48px;
    }
    .quick-bar-label {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .quick-bar-item { display: flex; align-items: center; gap: 14px; }
    .quick-bar-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.12);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .quick-bar-text { }
    .quick-bar-value {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
    }
    .contact-quick-bar .divider-line {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,0.15);
      flex-shrink: 0;
    }
    @media (max-width: 767px) {
      .contact-quick-bar { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
      .contact-quick-bar .divider-line { display: none; }
    }

    /* Keep old social-link for footer */
    .social-links { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
    .social-link {
      width: 40px; height: 40px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: var(--transition);
    }
    .social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
    .social-link.wa:hover { background: #25d366; }
    .social-link.li:hover { background: #0a66c2; }
    .social-link.tw:hover { background: #1da1f2; }
    .social-link.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }

    /* ===========================
       FOOTER
    =========================== */
    footer {
      background: var(--bg-dark);
      color: rgba(255,255,255,0.75);
    }
    .footer-top { padding: 72px 0 48px; }
    .footer-logo img { height: 80px; width: auto; margin-bottom: 16px; }
    .footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 260px; }
    .footer-heading {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.65);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }
    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-links a i { font-size: 10px; color: var(--primary-mid); }
    .footer-contact-item { display: flex; gap: 12px; margin-bottom: 12px; }
    .footer-contact-item i { color: var(--gold); font-size: 14px; margin-top: 2px; }
    .footer-contact-item span { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.5; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 24px 0;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
    .footer-social { display: flex; gap: 8px; justify-content: flex-end; }
    .footer-social a {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.65);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: var(--transition);
    }
    .footer-social a:hover { background: var(--primary); color: #fff; }

    /* ===========================
       SCROLL TO TOP
    =========================== */
    #scrollTop {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 48px;
      height: 48px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      opacity: 0;
      pointer-events: none;
      z-index: 999;
    }
    #scrollTop.show { opacity: 1; pointer-events: all; }
    #scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

    /* ===========================
       ANIMATIONS (intersection)
    =========================== */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 991px) {
      .product-image-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { gap: 24px; }
    }
    @media (max-width: 767px) {
      .section-pad { padding: 64px 0; }
      .product-image-grid { grid-template-columns: 1fr 1fr; }
      .hero-stat-number { font-size: 28px; }
      .inquiry-card { padding: 32px 20px; }
      .footer-social { justify-content: flex-start; margin-top: 12px; }
      #scrollTop { bottom: 20px; right: 20px; }
    }
    @media (max-width: 480px) {
      .product-image-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: center; }
      .product-tabs { gap: 6px; }
      .product-tab-btn { padding: 8px 16px; font-size: 13px; }
    }