.container {
    max-width:1400px;
    margin:0 auto;
  }

  nav { position:sticky; top:0; z-index:100; display:flex; align-items:center; justify-content:space-between; padding:10px 22px; background:#fff; border-bottom:3px solid var(--blue); box-shadow:0 2px 12px rgba(35,35,168,0.08); }
  .logo-area img { height:52px; width:auto; }
  .nav-toggle { display:none; background:transparent; border:none; cursor:pointer; padding:10px; margin-left:8px; }
  .nav-toggle img { width:34px; height:34px; display:block; }
  .nav-toggle .bar { display:none; }
  .nav-links { display:flex; align-items:center; gap:14px; }
  .nav-link { font-size:0.76rem; padding-bottom: 10px; font-weight:700; color:var(--blue); text-decoration:none; text-transform:uppercase; letter-spacing:0.04em; }
  .nav-link:hover { color:var(--gold); }
  .btn-quote { background:var(--blue); color:#fff; border:none; padding:9px 16px; border-radius:5px; font-weight:700; font-size:0.78rem; cursor:pointer; }
  .btn-quote:hover { background:var(--blue-dark); }

  @media (max-width: 820px) {
    nav { flex-wrap: wrap; position: relative; }
    .nav-toggle { display:inline-flex; align-items:center; justify-content:center; }
    .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 14px 22px 16px;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 28px rgba(0,0,0,0.12);
      z-index: 999;
    }
    nav.nav-open .nav-links { display:flex; }
    .btn-quote { width:95%; text-align:center; }
    .staff-grid {
        grid-template-columns: repeat(2, 1fr) !important; 
    }
  }

  .hero { position:relative; min-height:380px; display:flex; align-items:flex-end; overflow:hidden; background:linear-gradient(120deg,var(--blue-dark),var(--blue) 60%,#4444dd); }
  .hero-bg { position:absolute; inset:0; background:url("https://images.unsplash.com/photo-1531983412531-1f49a365ffed?w=900&q=80") center/cover no-repeat; opacity:0.22; }
  .hero-content { position:relative; z-index:2; padding:44px 36px; max-width:360px; }
  .hero-content h2 { font-family:"Playfair Display",serif; font-size:2.1rem; font-weight:800; color:#fff; line-height:1.15; text-transform:uppercase; margin-bottom:14px; }
  .hero-content p { color:rgba(255,255,255,0.85); font-size:0.9rem; line-height:1.6; margin-bottom:26px; }
  .hero-buttons { display:flex; gap:12px; flex-wrap:wrap; }
  .btn-primary { background:var(--gold); color:#fff; padding:11px 24px; border-radius:6px; font-weight:700; font-size:0.85rem; border:none; cursor:pointer; }
  .btn-outline { background:transparent; color:#fff; padding:10px 22px; border-radius:6px; font-weight:700; font-size:0.85rem; border:2px solid rgba(255,255,255,0.65); cursor:pointer; }

  .section { padding:52px 28px; }
  .section-title { text-align:center; font-family:"Playfair Display",serif; font-size:1.5rem; font-weight:800; color:var(--blue); letter-spacing:0.05em; text-transform:uppercase; margin-bottom:8px; }
  .title-rule { width:56px; height:3px; background:var(--gold); border-radius:2px; margin:10px auto 28px; }
  .section-sub { text-align:center; font-size:0.85rem; color:var(--subtext); margin-bottom:36px; }

  .services { background:#fff; }
  .services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px 16px; margin-bottom:24px; }
  .services-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px 16px; margin:0 auto; }
  /* Mobile-only services grid (hidden on desktop by default) */
  .services-grid-mobile { display:none; grid-template-columns:repeat(2,1fr); gap:24px 16px; margin-bottom:24px; }

  @media (max-width: 820px) {
    .services-grid,
    .services-grid-2 { display:none; }
    .services-grid-mobile { display:grid; }
  }

  .service-card { text-align:center; padding:20px 12px; border-radius:10px; border:1.5px solid var(--border); transition:all 0.25s; }
  .service-card:hover { border-color:var(--blue); box-shadow:0 6px 24px rgba(35,35,168,0.10); transform:translateY(-3px); }
  .service-icon { width:52px; height:52px; margin:0 auto 12px; display:flex; align-items:center; justify-content:center; }
  .service-icon svg { width:100%; height:100%; }
  .service-card h3 { font-size: 17px; font-weight:800; color:var(--blue); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:7px; line-height:1.3; }
  .service-card p { font-size:14px; color:var(--subtext); line-height:1.55; }

  .why { background:var(--blue); padding:52px 28px; }
  .why .section-title { color:#fff; }
  .why .title-rule { background:var(--gold); }
  .why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
  .why-card { background:rgba(255,255,255,0.1); border-radius:10px; padding:22px 18px; text-align:center; border:1px solid rgba(255,255,255,0.15); }
  .why-card .icon { font-size:2rem; margin-bottom:10px; }
  .why-card h3 { font-size:17px; font-weight:700; color:#fff; margin-bottom:6px; }
  .why-card p { font-size:14px; color:rgba(255,255,255,0.78); line-height:1.55; }

  .about { display:grid; grid-template-columns:1fr 1fr; min-height: 500px; }
  .about-image { background:url("about.jpg") center/cover no-repeat; min-height:240px; }
  .about-content { padding:36px 24px; background: #fff; }
  .about-content h2 { font-family:"Playfair Display",serif; font-size:1.3rem; font-weight:800; color:var(--blue); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:14px; }
  .about-content p { font-size:14px; color:var(--subtext); line-height:1.75; margin-bottom:12px; }
  .badge { display:inline-block; background:var(--blue); color:#fff; font-size:16px; font-weight:800; padding:4px 10px; border-radius:4px; letter-spacing:0.08em; }

  .branches { background:var(--gray); }
  .branch-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
  .branch-card { background:#fff; border-radius:10px; padding:22px 18px; border:1.5px solid var(--border); }
  .branch-card.head-office { grid-column:1/-1; border-color:var(--blue); border-width:2px; }
  .branch-tag { display:inline-block; font-size:0.6rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; padding:3px 9px; border-radius:3px; margin-bottom:10px; }
  .tag-hq { background:var(--blue); color:#fff; }
  .tag-branch { background:var(--blue-light); color:var(--blue); }
  .branch-card h3 { font-size:0.95rem; font-weight:800; color:var(--blue); margin-bottom:10px; font-family:"Playfair Display",serif; }
  .branch-info { display:flex; flex-direction:column; gap:6px; }
  .branch-info-row { display:flex; gap:8px; align-items:flex-start; font-size:0.75rem; color:var(--subtext); line-height:1.5; }
  .branch-info-row .lbl { font-weight:700; color:var(--blue); min-width:20px; flex-shrink:0; }

  .contact-section { background:#fff; }
  .tabs { display:flex; gap:0; border-bottom:2px solid var(--border); margin-bottom:32px; overflow-x:auto; overflow-y:hidden; }
  .tabs-select { display:none; margin: 0 0 18px; }
  .tabs-select-label { display:block; font-size:0.74rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:var(--blue); margin:0 0 8px; }
  .tabs-select-control { width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:10px; background:#fff; font-size:0.9rem; font-family:inherit; color:var(--text); }
  .tab-btn { padding:10px 16px; font-size:0.74rem; font-weight:700; color:var(--subtext); text-transform:uppercase; letter-spacing:0.04em; border:none; background:transparent; cursor:pointer; white-space:nowrap; border-bottom:3px solid transparent; margin-bottom:-2px; transition:all 0.2s; }
  .tab-btn.active { color:var(--blue); border-bottom-color:var(--blue); }
  .tab-btn:hover { color:var(--blue); }
  .tab-pane { display:none; }
  .tab-pane.active { display:block; }

  @media (max-width: 820px) {
    .tabs { display:none; }
    .tabs-select { display:block; }
  }
  .dept-title { font-size:0.7rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:var(--blue); margin:24px 0 14px; padding-bottom:6px; border-bottom:2px solid var(--blue-light); }
  .dept-title:first-child { margin-top:0; }
  .staff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
  .staff-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
  .staff-card { text-align:center; border:1.5px solid var(--border); border-radius:10px; padding:16px 10px; transition:all 0.2s; }
  .staff-card:hover { border-color:var(--blue); box-shadow:0 4px 16px rgba(35,35,168,0.08); }
  .staff-photo { width:62px; height:62px; border-radius:50%; background:var(--blue-light); margin:0 auto 10px; display:flex; align-items:center; justify-content:center; border:2px solid var(--blue); }
  .staff-photo svg { width:38px; height:38px; }
  .staff-card h4 { font-size:0.74rem; font-weight:700; color:var(--blue); margin-bottom:3px; }
  .staff-card .role { font-size:0.63rem; color:var(--subtext); font-style:italic; margin-bottom:8px; }
  .staff-contact { font-size:0.63rem; color:var(--subtext); line-height:1.7; }
  .staff-contact a { color:var(--blue); text-decoration:none; }

  .contact-form-section { background:var(--gray); padding:52px 28px; }
  .contact-form-section .section-title { text-align:left; }
  .contact-form-section .title-rule { margin:10px 0 28px; }
  .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .form-group { display:flex; flex-direction:column; gap:6px; }
  .form-group.full { grid-column:1/-1; }
  .form-group label { font-size:0.74rem; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:0.04em; }
  .form-group input, .form-group select, .form-group textarea { padding:10px 14px; border:1.5px solid var(--border); border-radius:6px; font-size:0.85rem; font-family:inherit; color:var(--text); background:#fff; transition:border-color 0.2s; outline:none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--blue); }
  .form-group textarea { resize:vertical; min-height:100px; }
  .btn-submit { background:var(--blue); color:#fff; padding:12px 32px; border:none; border-radius:6px; font-weight:700; font-size:0.9rem; cursor:pointer; margin-top:8px; }
  .btn-submit:hover { background:var(--blue-dark); }
  .btn-submit:disabled { opacity:0.65; cursor:not-allowed; }
  .form-status { font-size:0.85rem; margin:12px 0 0; min-height:1.25em; }
  .form-status--success { color:#1a7f37; }
  .form-status--error { color:#b42318; }

  footer { background:var(--blue-dark); color:rgba(255,255,255,0.8); padding:40px 28px 24px; }
  .footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:28px; margin-bottom:28px; }
  .footer-brand p { font-size:0.75rem; line-height:1.6; color:rgba(255,255,255,0.65); margin-top:10px; }
  .footer-brand .tagline { font-style:italic; font-size:0.8rem; color:var(--gold); margin-bottom:8px; font-weight:600; }
  .footer-col h4 { font-size:0.74rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:#fff; margin-bottom:14px; }
  .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
  .footer-col ul li a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:0.75rem; }
  .footer-col ul li a:hover { color:var(--gold); }
  .footer-bottom { border-top:1px solid rgba(255,255,255,0.15); padding-top:18px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
  .footer-bottom p { font-size:0.7rem; color:rgba(255,255,255,0.5); }

  .floating-cta { position:fixed; bottom:24px; right:24px; z-index:200; }
  .floating-cta button { background:var(--gold); color:#fff; border:none; padding:13px 22px; border-radius:50px; font-weight:800; font-size:0.85rem; cursor:pointer; box-shadow:0 4px 20px rgba(245,166,35,0.45); }
  .floating-cta button:hover { background:#e09415; transform:scale(1.04); }

  /* ===== PRODUCT CAROUSEL ===== */
  .carousel-section {
    position: relative; overflow: hidden; background: #111;
  }
  .carousel-track {
    display: flex; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
    will-change: transform;
    width: 100%;
  }
  .carousel-slide {
    width: 100%;
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    height: 420px;
  }
  .carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.55);
  }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,26,128,0.75) 0%, rgba(26,26,128,0.25) 60%, transparent 100%);
  }
  .slide-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 36px 36px 40px;
    z-index: 2;
  }
  .slide-tag {
    display: inline-block; background: var(--gold); color: #fff;
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 3px; margin-bottom: 10px;
  }
  .slide-content h2 {
    font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 800;
    color: #fff; line-height: 1.2; max-width: 300px; margin-bottom: 10px;
  }
  .slide-content p {
    font-size: 0.85rem; color: rgba(255,255,255,0.85); max-width: 280px; line-height: 1.55; margin-bottom: 18px;
  }
  .slide-btn {
    background: var(--gold); color: #fff; border: none;
    padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 0.82rem;
    cursor: pointer; transition: background 0.2s;
  }
  .slide-btn:hover { background: #e09415; }

  /* Dots */
  .carousel-dots {
    position: absolute; bottom: 14px; right: 20px; display: flex; gap: 7px; z-index: 10;
  }
  .dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
    cursor: pointer; transition: all 0.3s; border: none;
  }
  .dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

  /* Arrows */
  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.4);
    color: #fff; width: 38px; height: 38px; border-radius: 50%;
    font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; backdrop-filter: blur(4px);
  }
  .carousel-arrow:hover { background: rgba(255,255,255,0.32); }
  .carousel-arrow.prev { left: 12px; }
  .carousel-arrow.next { right: 12px; }

  /* ===== CHAT WIDGET ===== */
  .chat-bubble {
    position: fixed; bottom: 26px; left: 24px; z-index: 300;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--blue); color: #fff;
    border: none; cursor: pointer; font-size: 1.4rem;
    box-shadow: 0 4px 18px rgba(35,35,168,0.45);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, background 0.2s;
  }
  .chat-bubble:hover { background: var(--blue-dark); transform: scale(1.08); }
  .chat-bubble .badge-dot {
    position: absolute; top: 4px; right: 4px;
    width: 10px; height: 10px; background: #22cc66; border-radius: 50%;
    border: 2px solid #fff;
  }

  .chat-window {
    position: fixed; bottom: 90px; left: 24px; z-index: 300;
    width: 300px; background: #fff; border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    display: none; flex-direction: column; overflow: hidden;
    animation: slideUp 0.25s ease;
    border: 1px solid var(--border);
  }
  .chat-window.open { display: flex; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .chat-header {
    background: var(--blue); color: #fff;
    padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
  }
  .chat-header-info { display: flex; align-items: center; gap: 10px; }
  .chat-avatar {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  }
  .chat-header h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 1px; }
  .chat-header p { font-size: 0.65rem; color: rgba(255,255,255,0.75); }
  .chat-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 1.1rem; cursor: pointer; }
  .chat-close:hover { color: #fff; }

  .chat-messages {
    flex: 1; overflow-y: auto; padding: 14px 14px 8px;
    display: flex; flex-direction: column; gap: 10px;
    max-height: 240px; background: #f8f9ff;
  }
  .chat-msg {
    max-width: 85%; padding: 9px 12px; border-radius: 12px;
    font-size: 0.78rem; line-height: 1.5;
  }
  .chat-msg.bot {
    background: var(--blue-light); color: var(--text);
    border-bottom-left-radius: 3px; align-self: flex-start;
  }
  .chat-msg.user {
    background: var(--blue); color: #fff;
    border-bottom-right-radius: 3px; align-self: flex-end;
  }
  .chat-msg-time { font-size: 0.6rem; color: #aaa; margin-top: 4px; }
  .typing-dots span {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue); margin: 0 2px;
    animation: bounce 1.2s infinite;
  }
  .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

  .chat-quick-replies {
    display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px;
    border-top: 1px solid var(--border); background: #fff;
  }
  .quick-reply {
    font-size: 0.7rem; padding: 5px 10px; border-radius: 20px;
    border: 1.5px solid var(--blue); color: var(--blue);
    background: #fff; cursor: pointer; transition: all 0.15s; white-space: nowrap;
  }
  .quick-reply:hover { background: var(--blue); color: #fff; }

  .chat-input-area {
    display: flex; gap: 8px; padding: 10px 12px;
    border-top: 1px solid var(--border); background: #fff; align-items: center;
  }
  .chat-input {
    flex: 1; border: 1.5px solid var(--border); border-radius: 20px;
    padding: 8px 14px; font-size: 0.8rem; outline: none; font-family: inherit;
  }
  .chat-input:focus { border-color: var(--blue); }
  .chat-send {
    background: var(--blue); color: #fff; border: none;
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
    flex-shrink: 0; transition: background 0.2s;
  }
  .chat-send:hover { background: var(--blue-dark); }
  .powered-by { text-align: center; font-size: 0.6rem; color: #bbb; padding: 4px 0 8px; background: #fff; }
