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

 :root {
    --navy:    #0D1F3C;
    --teal:    #1B6E7A;
    --gold:    #C9A84C;
    --cream:   #F7F3EE;
    --white:   #FFFFFF;
    --gray:    #6B7280;
    --light:   #EFF4F5;
    --dark:    #111827;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(13,31,60,0.96);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1.2;
  }
  .logo-img {
    height: 160px; /* Desktop size */
    width: auto;
    border-radius:20px;
  }
  .logo span { color: var(--gold); display: block; font-size: 0.65rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    padding: 0.5rem 1.25rem; border-radius: 4px;
    font-size: 0.8rem; font-weight: 600; text-decoration: none;
    letter-spacing: 0.04em; transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
  .mobile-menu { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: var(--navy); padding: 1.5rem 5%; flex-direction: column; gap: 1rem; z-index: 999; }
  .mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu.open { display: flex; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #14425A 55%, var(--teal) 100%);
    display: flex; align-items: center;
    padding: 90px 5% 60px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/header.png') center/cover no-repeat;
    opacity: 0.12;
  }
  .hero-content { position: relative; z-index: 1; max-width: 680px; }
  .hero-eyebrow {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white); line-height: 1.18; font-weight: 700;
    margin-bottom: 1.5rem;
  }
  .hero h1 em { color: var(--gold); font-style: normal; }
  .hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 0.85rem 2rem; border-radius: 4px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    letter-spacing: 0.04em; transition: all 0.2s;
  }
  .btn-primary:hover { background: #e0b94e; transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.5); color: var(--white);
    padding: 0.85rem 2rem; border-radius: 4px;
    font-weight: 500; font-size: 0.9rem; text-decoration: none;
    letter-spacing: 0.04em; transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    display: flex; gap: 2rem; margin-top: 2.5rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
  }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
  .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

  /* ── SECTIONS ── */
  section { padding: 90px 5%; }
  .section-eyebrow { color: var(--teal); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1.2rem; }
  .section-subtitle { color: var(--gray); font-size: 1rem; line-height: 1.75; max-width: 580px; }
  .divider { width: 50px; height: 3px; background: var(--gold); margin: 1.2rem 0 2rem; }

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 6px; display: block; }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--navy); color: var(--white);
    padding: 1.2rem 1.5rem; border-radius: 6px;
    text-align: center; box-shadow: 0 8px 32px rgba(13,31,60,0.25);
  }
  .about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
  .about-badge .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
  .about-points { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
  .about-point { display: flex; gap: 1rem; align-items: flex-start; }
  .about-point .icon { width: 40px; height: 40px; background: rgba(27,110,122,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
  .about-point h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
  .about-point p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

  /* ── SERVICES ── */
  .services { background: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
  .service-card {
    border: 1px solid #E5EAF0;
    border-radius: 8px; overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
  .service-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .service-card-body { padding: 1.5rem; }
  .service-card-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
  .service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem; }
  .service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }
  .service-tag { display: inline-block; margin-top: 1rem; font-size: 0.72rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 2px solid var(--teal); padding-bottom: 1px; }

  /* ── PRODUCTS ── */
  .products { background: var(--light); }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .product-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
  .product-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
  .product-card-body { padding: 1.1rem; }
  .product-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
  .product-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

  /* ── WHY CHOOSE ── */
  .why { background: var(--navy); color: var(--white); }
  .why .section-title { color: var(--white); }
  .why .section-subtitle { color: rgba(255,255,255,0.65); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .why-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 2rem; transition: border-color 0.2s; }
  .why-card:hover { border-color: var(--gold); }
  .why-card .icon { font-size: 2rem; margin-bottom: 1rem; }
  .why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.6rem; }
  .why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

  /* ── CEO MESSAGE ── */
  .ceo { background: var(--cream); }
  .ceo-grid { display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: center; }
  .ceo-img-wrap { position: relative; }
  .ceo-img-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; display: block; filter: grayscale(15%); }
  .ceo-quote-mark { font-family: 'Playfair Display', serif; font-size: 8rem; color: var(--gold); opacity: 0.2; line-height: 0.6; margin-bottom: 1rem; }
  .ceo blockquote { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); line-height: 1.7; font-style: italic; margin-bottom: 2rem; }
  .ceo-signature { display: flex; align-items: center; gap: 1rem; }
  .ceo-signature .line { width: 40px; height: 2px; background: var(--gold); }
  .ceo-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
  .ceo-title { font-size: 0.78rem; color: var(--gray); margin-top: 0.15rem; }
  .ceo-placeholder-note { font-size: 0.75rem; color: var(--teal); margin-top: 1rem; font-style: italic; }

  /* ── PROCESS ── */
  .process { background: var(--white); }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 3rem; position: relative; }
  .process-steps::before {
    content: '';
    position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
  .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; box-shadow: 0 0 0 6px var(--white); }
  .process-step h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
  .process-step p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

  /* ── CERTIFICATIONS ── */
  .certs { background: var(--light); text-align: center; }
  .certs-row { display: flex; gap: 2rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
  .cert-badge { background: var(--white); border: 1px solid #E0E7EF; border-radius: 6px; padding: 0.8rem 1.6rem; font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; }

  /* ── CONTACT ── */
  .contact { background: var(--navy); color: var(--white); }
  .contact .section-title { color: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-item .icon { font-size: 1.3rem; margin-top: 0.1rem; }
  .contact-item h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.3rem; }
  .contact-item p, .contact-item a { font-size: 0.95rem; color: rgba(255,255,255,0.75); text-decoration: none; line-height: 1.5; }
  .contact-item a:hover { color: var(--gold); }
  .contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 2rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px; padding: 0.75rem 1rem; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-group select option { background: var(--navy); color: var(--white); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-submit { width: 100%; background: var(--gold); color: var(--navy); padding: 0.9rem; border: none; border-radius: 4px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; cursor: pointer; transition: opacity 0.2s; }
  .btn-submit:hover { opacity: 0.85; }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    background: #25D366; color: var(--white);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    text-decoration: none; transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.08); }

  /* ── FOOTER ── */
  footer { background: #080F1E; color: rgba(255,255,255,0.5); padding: 0.5rem 5% 1rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand .logo { font-size: 1.2rem; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,0.4); max-width: 280px; }
  .footer-col h4 { color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { border-top: 0px solid rgba(255,255,255,0.06); padding-top: 0.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
  .footer-bottom a { color: var(--gray);; text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
  .footer-bottom a:hover { color: var(--gray); }
   
  /* Product Page */
    /* ── PAGE HERO (shorter than homepage) ── */
  .page-hero {
    padding: 120px 5% 70px;
    background: linear-gradient(135deg, var(--navy) 0%, #14425A 55%, var(--teal) 100%);
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    /* background: url('../images/who-we-are.png?w=1600&q=60') center/cover no-repeat; */
    opacity: 0.13;
  }
  .page-hero-inner { position: relative; z-index: 1; }
  .breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; margin-top: 1.25rem;}
  .breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
  .breadcrumb .current { color: var(--gold); font-size: 0.8rem; }
  .hero-eyebrow { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.2rem; }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
  .page-hero h1 em { color: var(--gold); font-style: normal; }
  .page-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.75; max-width: 600px; margin-bottom: 2rem; }
  .hero-meta { display: flex; gap: 2.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.75rem; }
  .meta-item .num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
  .meta-item .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.1rem; }
  /* ── MAIN LAYOUT ── */
  .page-body { padding: 60px 5% 80px; }

  /* ── FEATURED PRODUCT (top spotlight) ── */
  .featured-strip {
    background: linear-gradient(135deg, var(--navy), #1a3a5c);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
  }

  /* ── PRODUCT GRID ── */
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

  .product-card {
    background: var(--white);
    border: 1px solid #E8EEF3;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    cursor: pointer;
    display: flex; flex-direction: column;
  }
  .product-card:hover { box-shadow: 0 10px 36px rgba(13,31,60,0.12); transform: translateY(-4px); }
  .product-card:hover .card-img img { transform: scale(1.05); }

  .card-img { overflow: hidden; position: relative; height: 210px; }
  .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
  .card-badge { position: absolute; top: 10px; left: 10px; background: var(--navy); color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 3px; }
  .card-badge.gold { background: var(--gold); color: var(--navy); }
  .card-badge.teal { background: var(--teal); }

  .card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
  .card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
  .card-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; flex: 1; }
  .card-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
  .spec-chip { background: var(--light); color: var(--teal); font-size: 0.68rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 10px; }

  .card-footer { padding: 0.9rem 1.25rem; border-top: 1px solid #F0F4F7; display: flex; align-items: center; justify-content: space-between; }
  .card-footer a {
    font-size: 0.78rem; font-weight: 600; color: var(--teal); text-decoration: none;
    display: flex; align-items: center; gap: 0.3rem; transition: gap 0.2s;
  }
  .card-footer a:hover { gap: 0.6rem; color: var(--navy); }
  .card-footer .wa-link { background: #E8F9EF; color: #1A7A3A; font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 12px; text-decoration: none; transition: background 0.2s; }
  .card-footer .wa-link:hover { background: #25D366; color: var(--white); }


  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .process-steps::before { display: none; }
  }
  @media (max-width: 900px) {
    .about-grid, .ceo-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-badge { position: static; margin-top: 1rem; display: inline-block; }
    .ceo-grid { grid-template-columns: 1fr; }
    .ceo-img-wrap img { height: 300px; }
  }
  @media (max-width: 700px) {
    nav .nav-links, nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    .services-grid, .why-grid, .products-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
    /* ── Product RESPONSIVE ── */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .why-strip { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .featured-strip { grid-template-columns: 1fr; }
    .featured-img { height: 220px; order: -1; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    nav .nav-links, nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    .products-grid { grid-template-columns: 1fr; }
    .why-strip { grid-template-columns: 1fr 1fr; padding: 1.5rem; gap: 1.5rem; }
    .featured-strip { padding: 1.75rem; }
    .filter-bar { padding: 1rem 5%; }
  }
  @media (max-width: 768px) {
    .logo-img {
           height: 120px; /* Desktop size */
            width: auto;
            border-radius:10px;
    }
}