:root {
    --gold: #c7921e;
    --gray: #4b463d;
  }
  
  /* ================= PRIMARY HEADER ================= */
  .primary-header {
    display: flex;
    align-items: center;
    padding: 18px 50px;
    background: #f2f2f2;
  }
  
  .logo img {
    height: 66px;
  }
  
  .nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    flex: 0 0 65%;
  }
  
  .nav-links a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: #000;
  }
  
  .nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
  }
  
  .header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    flex: 0 0 30%;
  }
  /* LANGUAGE DROPDOWN */
.lang-dropdown {
    position: relative;
    user-select: none;
  }
  
  .lang-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 500;
  }
  
  .lang-selected img {
    width: 20px;
    height: 14px;
    object-fit: cover;
  }
  
  .lang-selected i {
    font-size: 12px;
  }
  
  /* OPTIONS */
  .lang-options {
    position: absolute;
    top: 110%;
    right: 0;
    width: 160px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    list-style: none;
    padding: 6px 0;
    display: none;
    z-index: 1000;
  }
  
  .lang-dropdown.open .lang-options {
    display: block;
  }
  
  .lang-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .lang-options li:hover {
    background: #f5f5f5;
  }
  
  .lang-options img {
    width: 20px;
    height: 14px;
  }
  
  
  .contact-btn {
    background: var(--gold);
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
  }
  
  .menu-btn {
    display: none;
    font-size: 22px;
    cursor: pointer;
  }
  
  /* ================= SECONDARY HEADER ================= */
  .secHead {
    background: #f2f2f2;
  }
  
  .secondary-header {
    margin: 0 80px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #b8860b, #d4a017);
  }
  
  .secondary-header ul {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 14px;
    list-style: none;
    font-weight: 500;
  }
  
  /* ================= MOBILE MENU ================= */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    padding: 24px 20px 30px;
    transform: translateX(-100%);
    transition: 0.35s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-menu.active {
    transform: translateX(0);
  }
  
  .mobile-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
  }
  
  .mobile-logo {
    height: 52px;
  }
  
  .close-btn {
    font-size: 22px;
    cursor: pointer;
  }
  
  .mobile-nav a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 2px solid #eee;
    text-decoration: none;
    color: #000;
  }
  
  .mobile-nav a.active {
    background: var(--gold);
    border-radius: 6px;
    margin-bottom: 6px;
  }
  
  .mobile-secondary {
    margin-top: 0px;
  }
  
  .mobile-secondary p {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 2px solid #eee;
    margin: 0;
  }

  .secondary-header li,
  .mobile-secondary p {
    cursor: pointer;
  }
  
  .secondary-header li.active,
  .mobile-secondary p.active {
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 6px 14px;
  }
  
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 992px) {
    .nav-links {
      display: none;
    }
  
    .menu-btn {
      display: block;
    }
  
    .header-actions .contact-btn {
      display: none;
    }
    .contact-btn.mobile {
        display: inline-block;
      }
  
    .secondary-header {
      display: none;
    }
  }
  
  @media (max-width: 992px) {

    /* PRIMARY HEADER MOBILE LAYOUT */
    .primary-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
    }
  
    /* LOGO LEFT */
    .logo {
      flex: 0 0 auto;
    }
  
    .logo img {
      height: 44px;
    }
  
    /* HIDE DESKTOP NAV */
    .nav-links {
      display: none;
    }
  
    /* HEADER ACTIONS RIGHT */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 0;
    }
  
    /* LANGUAGE DROPDOWN */
    .lang-dropdown {
      order: 1;
    }
  
    .lang-selected {
      padding: 6px 12px;
      font-size: 14px;
    }
  
    .lang-selected img {
      width: 18px;
      height: 12px;
    }
  
    /* HIDE CONTACT BUTTON (mobile) */
    .header-actions .contact-btn {
      display: none;
    }
  
    /* MENU ICON LAST */
    .menu-btn {
      display: block;
      font-size: 24px;
      order: 2;
    }
  }
  









.site-footer {
    background: radial-gradient(circle at top right, #c79a10 0%, #000 45%);
    color: #fff;
    padding: 80px 40px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 50px;
  }
  
  /* BRAND */
  .footer-logo {
    width: 90px;
    margin-bottom: 10px;
  }
  
  .brand-subtitle {
    font-size: 12px;
    letter-spacing: 0.8px;
    opacity: 0.85;
    margin-bottom: 18px;
  }
  
  .footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
  }
  
  .footer-socials a:hover {
    background: #c79a10;
  }
  
  /* COLUMNS */
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.9;
  }
  
  .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #c79a10;
  }
  
  /* CONTACT */
  .contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .contact-list i {
    color: #c79a10;
  }
  
  /* BOTTOM */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 50px;
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .contact-list li {
      justify-content: center;
    }
  }
  