:root {
      --navy: #0d2847;
      --navy-mid: #1a3a5c;
      --gold: #d4920a;
      --gold-bg: #fef9ee;
      --white: #ffffff;
      --bg: #fafbfc;
      --text: #1a2332;
      --text-muted: #5a6a7e;
      --border: #e2e8f0;
      --light-navy: #f0f4f8;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    /* TOP BAR */
    .top-bar {
      background: var(--navy);
      color: rgba(255,255,255,0.8);
      font-size: 0.78rem;
      padding: 0.5rem 0;
    }
    .top-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .top-bar a { color: var(--gold); text-decoration: none; }
    .top-bar-left { display: flex; gap: 2rem; }
    .top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
    .iso-badge {
      background: rgba(212,146,10,0.2);
      border: 1px solid rgba(212,146,10,0.4);
      padding: 0.2rem 0.6rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--gold);
    }

    /* NAV */
    .header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0.75rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo img { height: 58px; }
    .nav-menu {
      display: flex;
      gap: 0.25rem;
      list-style: none;
    }
    .nav-menu a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      padding: 0.5rem 0.9rem;
      border-radius: 4px;
      transition: all 0.2s;
    }
    .nav-menu a:hover, .nav-menu a.active {
      background: var(--light-navy);
      color: var(--navy);
    }
    .header-actions { display: flex; gap: 0.75rem; align-items: center; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.65rem 1.25rem;
      font-size: 0.82rem;
      font-weight: 600;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-navy { background: var(--navy); color: white; }
    .btn-navy:hover { background: var(--navy-mid); }
    .btn-gold { background: var(--gold); color: white; }
    .btn-gold:hover { background: #b87d08; }
    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--text);
    }
    .btn-outline:hover { border-color: var(--navy); color: var(--navy); }

    /* HERO */
    .hero {
      max-width: 1280px;
      margin: 0 auto;
      padding: 3rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      min-height: 80vh;
    }
    .hero-text .eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4.5vw, 3.75rem);
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 1.25rem;
    }
    .hero-text h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-text p {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .hero-trust {
      display: flex;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .trust-item strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      color: var(--navy);
      line-height: 1;
    }
    .trust-item span { font-size: 0.78rem; color: var(--text-muted); }
    .hero-visual {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      height: 520px;
    }
    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-visual-card {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      padding: 1.25rem 1.5rem;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-left: 4px solid var(--gold);
    }
    .hero-visual-card .icon {
      width: 44px; height: 44px;
      background: var(--gold-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .hero-visual-card strong { display: block; font-size: 0.9rem; color: var(--navy); }
    .hero-visual-card span { font-size: 0.8rem; color: var(--text-muted); }

    /* STATS RIBBON */
    .stats-ribbon {
      background: var(--navy);
      padding: 2.5rem 2rem;
    }
    .stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.25rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

    /* SECTION COMMON */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 5rem 0; }
    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }
    .section-header .eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .section-header p { color: var(--text-muted); font-size: 0.95rem; }

    /* ABOUT BENTO */
    .about-bento {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1.25rem;
    }
    .bento-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem;
      transition: border-color 0.3s;
    }
    .bento-card:hover { border-color: var(--gold); }
    .bento-card.large {
      grid-row: span 2;
      background: var(--navy);
      color: white;
      border: none;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      min-height: 380px;
    }
    .bento-card.large::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../assets/electrical-infrastructure.png') center/cover;
      opacity: 0.45;
    }
    .bento-card.large::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 40, 71, 0.95) 0%, rgba(13, 40, 71, 0.55) 55%, rgba(13, 40, 71, 0.2) 100%);
      z-index: 0;
    }
    .bento-card.large .content { position: relative; z-index: 1; }
    .bento-card.large h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      color: #ffffff;
    }
    .bento-card.large p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.92); line-height: 1.7; }
    .bento-icon {
      width: 48px; height: 48px;
      background: var(--gold-bg);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    .bento-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
    .bento-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* SERVICES TABS STYLE */
    .services-section { background: var(--white); }
    .services-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .service-item {
      display: flex;
      gap: 1.25rem;
      padding: 1.75rem;
      background: var(--bg);
      border-radius: 8px;
      border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .service-item:hover {
      background: var(--white);
      border-color: var(--gold);
      transform: translateX(4px);
    }
    .service-icon {
      width: 52px; height: 52px;
      background: var(--navy);
      color: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .service-item h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
    .service-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

    /* PRODUCTS GRID */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .product-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .product-thumb {
      height: 180px;
      background-size: cover;
      background-position: center;
    }
    .product-info { padding: 1.5rem; }
    .product-info h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
    .product-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.55; }
    .product-features {
      list-style: none;
      margin-bottom: 1rem;
    }
    .product-features li {
      font-size: 0.78rem;
      color: var(--text-muted);
      padding: 0.2rem 0;
      padding-left: 1rem;
      position: relative;
    }
    .product-features li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.55rem;
      width: 5px; height: 5px;
      background: var(--gold);
      border-radius: 50%;
    }
    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }
    .por {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .btn-sm {
      font-size: 0.75rem;
      padding: 0.45rem 1rem;
      background: var(--navy);
      color: white;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
    }
    .btn-sm:hover { background: var(--navy-mid); }

    /* EXPORT STRIP */
    .export-strip {
      background: var(--gold-bg);
      border-top: 1px solid #f0dfa8;
      border-bottom: 1px solid #f0dfa8;
      padding: 3rem 0;
    }
    .export-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2rem;
      align-items: center;
    }
    .export-globe {
      width: 80px; height: 80px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
    }
    .export-inner h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }
    .export-inner p { font-size: 0.88rem; color: var(--text-muted); }
    .export-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .export-tag {
      background: white;
      border: 1px solid #f0dfa8;
      padding: 0.4rem 0.9rem;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--navy);
    }

    /* PROJECTS SHOWCASE */
    .projects-showcase {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 1.25rem;
    }
    .project-featured {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      min-height: 400px;
    }
    .project-featured img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .project-featured-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(13,40,71,0.95), transparent);
      padding: 2rem;
      color: white;
    }
    .project-featured-content .tag {
      display: inline-block;
      background: var(--gold);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.25rem 0.6rem;
      border-radius: 3px;
      margin-bottom: 0.75rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .project-featured-content h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
    .project-featured-content p { font-size: 0.85rem; opacity: 0.8; }
    .project-list { display: flex; flex-direction: column; gap: 1.25rem; }
    .project-mini {
      display: flex;
      gap: 1rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.3s;
      cursor: pointer;
    }
    .project-mini:hover { border-color: var(--gold); }
    .project-mini img { width: 120px; object-fit: cover; flex-shrink: 0; }
    .project-mini-info { padding: 1rem 1rem 1rem 0; }
    .project-mini-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
    .project-mini-info p { font-size: 0.78rem; color: var(--text-muted); }
    .project-mini-info .year { font-size: 0.72rem; font-weight: 700; color: var(--gold); margin-top: 0.4rem; }

    /* ?? TESTIMONIALS (separate) ?? */
    .testimonials-section { background: var(--light-navy); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .testimonial-box {
      background: var(--white);
      border-radius: 8px;
      padding: 2rem;
      border: 1px solid var(--border);
      position: relative;
    }
    .testimonial-box .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testimonial-box blockquote {
      font-size: 0.92rem;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .author-avatar {
      width: 44px; height: 44px;
      background: var(--navy);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
    }
    .author-info strong { display: block; font-size: 0.88rem; color: var(--navy); }
    .author-info span { font-size: 0.78rem; color: var(--text-muted); }

    /* INDUSTRIES */
    .industries-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }
    .industry-pill {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 0.75rem 1.25rem;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--navy);
      transition: all 0.2s;
      cursor: default;
    }
    .industry-pill:hover {
      background: var(--navy);
      color: white;
      border-color: var(--navy);
    }

    /* CLIENTS */
    .clients-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .clients-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      opacity: 0.55;
      filter: grayscale(100%);
    }
    .clients-logos img { height: 36px; object-fit: contain; }

    /* CONTACT CTA */
    .contact-cta {
      background: var(--navy);
      border-radius: 12px;
      padding: 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      color: white;
    }
    .contact-cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .contact-cta p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 1.5rem; }
    .contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
    .contact-details a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .contact-details a:hover { color: var(--gold); }
    .contact-form {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 2rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 4px;
      color: white;
      font-family: inherit;
      font-size: 0.85rem;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-group.full { grid-column: span 2; }

    /* FOOTER */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.7);
      padding: 3.5rem 0 1.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand img {
      height: 64px;
      margin-bottom: 1rem;
      background: #ffffff;
      border-radius: 50%;
      padding: 8px;
      display: block;
    }
    .footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.5rem; }
    .footer-col a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.83rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-visual { height: 360px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .about-bento { grid-template-columns: 1fr 1fr; }
      .bento-card.large { grid-row: span 1; min-height: 280px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .projects-showcase { grid-template-columns: 1fr; }
      .contact-cta { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .top-bar-left { display: none; }
      .nav-menu { display: none; }
      .services-list { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .about-bento { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .export-inner { grid-template-columns: 1fr; text-align: center; }
      .export-globe { margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .form-group.full { grid-column: span 1; }
    }

/* INNER PAGE HERO */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 4rem 0 3.5rem;
}
.page-hero .container { display: flex; flex-direction: column; gap: 0.75rem; }
.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 0.95rem; }

/* CONTENT BLOCKS */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img { width: 100%; border-radius: 8px; object-fit: cover; }
.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.content-block p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1rem; }
.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* VISION MISSION */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  border-top: 4px solid var(--gold);
}
.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.vm-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* MD MESSAGE */
.md-message {
  background: var(--light-navy);
  border-radius: 12px;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.md-avatar {
  width: 100px; height: 100px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.md-message blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.md-message cite { font-style: normal; font-size: 0.88rem; color: var(--navy); font-weight: 600; display: block; }
.md-message cite span { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.82rem; margin-top: 0.25rem; }

/* MACHINERY */
.machinery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.machinery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.machinery-card:hover { border-color: var(--gold); }
.machinery-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.machinery-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* SERVICE DETAIL */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail img { width: 100%; border-radius: 8px; object-fit: cover; max-height: 320px; }
.service-detail h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-detail p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }

/* PRODUCT SECTION */
.product-section { margin-bottom: 4rem; }
.product-section:last-child { margin-bottom: 0; }
.product-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.product-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
}

/* PROJECT CARD FULL */
.projects-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.project-card-full:hover { border-color: var(--gold); transform: translateY(-4px); }
.project-card-full img { width: 100%; height: 200px; object-fit: cover; }
.project-card-body { padding: 1.5rem; }
.project-card-body .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.project-card-body h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.project-card-meta { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.project-card-meta strong { color: var(--text); }

/* INDUSTRY CARDS */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover { border-color: var(--gold); background: var(--light-navy); }
.industry-card .icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.industry-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* CAREERS */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.job-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.job-card p { font-size: 0.85rem; color: var(--text-muted); }
.job-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }
.job-meta span { background: var(--light-navy); padding: 0.2rem 0.6rem; border-radius: 3px; }

.apply-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.apply-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.apply-form .form-group input,
.apply-form .form-group textarea,
.apply-form .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg);
}
.apply-form .form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.file-upload {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload:hover { border-color: var(--gold); }
.file-upload input { display: none; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.contact-info-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.8;
  display: block;
}
.contact-info-card a:hover { color: var(--navy); }
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
  background: var(--light-navy);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.whatsapp-btn:hover { background: #1fb855; }

/* CLIENTS GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.client-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .content-block, .service-detail, .contact-grid, .vm-grid { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .machinery-grid, .projects-grid-full, .industry-grid, .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .md-message { grid-template-columns: 1fr; text-align: center; }
  .md-avatar { margin: 0 auto; }
}
@media (max-width: 768px) {
  .machinery-grid, .projects-grid-full, .industry-grid, .clients-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
