/* ===== CUSTOM FONTS ===== */

  /* -------------------------------
   1️⃣ Font Imports
--------------------------------*/
  @font-face {
    font-family: 'Maharlika';
    src: url('../font/MaharlikaFont/Maharlika-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Garet';
    src: url('../font/GaretFont/Garet-Book.woff2') format('woff2'),
         url('../font/GaretFont/Garet-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  /* @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap'); */

  /* -------------------------------
   2️⃣ Global Reset
--------------------------------*/
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* -------------------------------
   3️⃣ Base Styles
--------------------------------*/
  html,
  body {
    font-family: 'garet', sans-serif;
    /* Default font for body and general text */
    color: #333;
    background: linear-gradient(180deg, #e9eff5 0%, #f7f7f7 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  /* -------------------------------
   4️⃣ Headings
--------------------------------*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Maharlika', sans-serif;
    font-weight: bold;
    color: #111;
  }

  .footer_heading h6 {
    font-weight: bolder;
    color: black;
  }

  .footer_heading ul a {
    color: white;
    font-weight: normal;
  }

  .footer_heading p {
    color: white;

  }

  .footer_heading ul a:hover {
    text-decoration: underline;
  }


  /* -------------------------------
   5️⃣ Other Text Elements
--------------------------------*/
  p,
  input,
  textarea,
  button,
  nav a,
  span {
    font-family: 'Garet', sans-serif;
    color: black;
  }


  /* Layout */
  .left-section {
    background: url('../images/bg.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    text-align: center;
    padding: 40px;
  }

  .right-section {
    background: linear-gradient(135deg, #f8fbff, #eaf3ff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
  }

  .logo {
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .iconmenu {
    max-width: 10%;
  }

  .tagline {
    font-size: 1.1rem;
    color: #444;
    border: 1px solid #c7c7c7;
    display: inline-block;
    border-radius: 25px;
    padding: 6px 18px;
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }

  .home-title {
    color: #D46F41;
    border-radius: 25px;
    padding: 6px 18px;
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }

  .home-subtitle {
    border-radius: 25px;
    padding: 6px 18px;
    width: 32rem;
    margin: 0 auto;
    text-align: justify;
  }

  .menu-btn {
    border: 1px solid #ccc;
    border-radius: 50px;
    background: #fff;
    color: #333;
    width: 300px;
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 15px;
    margin: 15px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
  }

  .menu-btn:hover {
    border-color: #D46F41;
    transform: translateX(5px);
  }

  .menu-btn span {
    font-size: 1.1rem;
    color: #777;
    margin-left: auto;
  }

  section {
    padding: 80px 20px;
    margin: 0 auto;
  }

  h2 {
    color: #0d3b66;
    font-weight: 200;
    font-size: 28px;
    margin-bottom: 20px;
  }

  p {
    font-size: 14px;
  }

  li {
    font-size: 14px;
  }

  footer {
    background: #0d3b66;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
  }

  .section-bg {
    background: linear-gradient(to bottom, #f0f2f5, #ffffff);
    padding: 40px 0;
  }

  .who-are-we h2 {
    color: #D46F41;
    font-weight: 200;
  }

  .category-btns .btn {
    border: 1px solid #D46F41;
    color: #D46F41;
    background: transparent;
    margin-right: 10px;
    margin-top: 30px;
    font-size: 1.25rem;
    border-radius: 50px;
    padding: 7px 30px;
  }

  .category-btns .btn:hover {
    background: #D46F41;
    color: #fff;
  }

  .philosophy,
  .partnerships {
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    margin-top: 30px;
  }

  .philosophy {
    background: #9B934B;
  }

  .partnerships {
    background: #D46F41;
  }

  .section-image {
    text-align: center;
  }

  .section-image img {
    max-width: 100%;
    height: auto;
  }

  .content-title {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
  }

  .content-text {
    margin-top: 10px;
  }

  .icon-img {
    width: 40px;
    vertical-align: middle;
    margin-right: 10px;
  }

  .picon-img {
    width: 60px;
    vertical-align: middle;
    margin-right: 10px;
  }

  /* ===== HEADER ===== */
  header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
  }

  header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  header .logo img {
    height: 47px;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  nav ul.desktop-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
  }

  nav ul.desktop-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
  }

  nav ul.desktop-menu li a:hover,
  nav ul.desktop-menu li a.active {
    color: #D46F41;
  }

  /* Ensure proper pointer events for all navigation elements */
  nav ul.desktop-menu li,
  nav ul.desktop-menu li a,
  nav ul.desktop-menu .signup-btn {
    pointer-events: auto;
    position: relative;
    z-index: 1;
  }

  /* Prevent any parent element from blocking clicks */
  nav ul.desktop-menu {
    pointer-events: auto;
  }

  /* Ensure desktop menu signup-btn has proper spacing and alignment */
  nav ul.desktop-menu .signup-btn {
    margin-left: 10px;
    padding: 8px 18px;
  }

  .signup-btn {
    background-color: #9B934B;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }

  .signup-btn:hover {
    background-color: #a64920;
    color: #fff !important;
    text-decoration: none;
  }

  .signup-btn:focus {
    outline: 2px solid #D46F41;
    outline-offset: 2px;
  }

  .signup-btn:active {
    transform: scale(0.98);
    background-color: #8A823A;
  }

  /* Ensure button is clickable and not blocked */
  .signup-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* Off-canvas menu */
  .side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 200;
  }

  .side-menu.show {
    right: 0;
  }

  .side-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
  }

  .side-menu a:hover,
  .side-menu a.active {
    color: #D46F41;
  }

  .side-menu .signup-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 10px;
    background-color: #9B934B;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }

  .side-menu .signup-btn:hover {
    background-color: #a64920;
    color: #fff !important;
    text-decoration: none;
  }

  .side-menu .signup-btn:active {
    transform: scale(0.98);
    background-color: #8A823A;
  }

  /* Ensure mobile menu button is clickable */
  .side-menu .signup-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 150;
  }

  .overlay.show {
    display: block;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 60px 0;
  }

  .left {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px 60px 120px;
    border-right: 1px solid #e0e0e0;
  }

  .left h2 {
    color: #D46F41;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .left p {
    line-height: 1.6;
    color: #555;
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 300px;
  }

  .contact-info {
    margin-top: 30px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
  }

  .contact-item i {
    font-size: 14px;
    color: #fff;
    background-color: #D46F41;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .right {
    flex: 2;
    min-width: 400px;
    padding: 80px 120px 80px 60px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
  }

  input,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
  }

  input:focus,
  textarea:focus {
    border-color: #D46F41;
  }

  textarea {
    resize: vertical;
    height: 150px;
  }

  .form-actions {
    text-align: right;
    margin-top: 10px;
  }

  button {
    background: #D46F41;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;   
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
  }

  button:hover {
    background: #a64920;
  }

  /* ===== MOBILE ===== */
  @media (max-width:991px) {
    header {
      padding: 15px 20px;
      justify-content: space-between;
    }

    .hamburger {
      display: block;
      order: 2;
    }

    nav ul.desktop-menu {
      display: none;
    }

    .contact-section {
      flex-direction: column;
    }

    .left,
    .right {
      border: none;
      padding: 40px 20px;
    }

    .form-actions {
      text-align: center;
    }

    .home-title {
      color: #D46F41;
      border-radius: 25px;
      padding: 6px 18px;
      width: 100%;
      margin: 0 auto;
      text-align: center;
    }

    .home-subtitle {
      border-radius: 25px;
      padding: 6px 18px;
      width: 35rem;
      margin: 0 auto;
      text-align: justify;
    }

    .foottagline {
      font-size: 0.8rem;
      width: 85%;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 25px;
      padding: 6px 18px;
      margin: 0 auto;
      text-align: center;
    }
  }

  @media (max-width: 600px) {
    .home-subtitle {
      width: 100%;
    }
  }
  .footer {
    background-color: #9B934B;
    /* Similar color to the image */
    color: white;
    padding: 85px 0 1px 0;
  }

  .footer .social-icons a {
    margin-right: 15px;
    font-size: 20px;
  }

  .foottagline {
    font-size: 0.8rem;
    width: 60%;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 6px 18px;
    margin: 0 auto;
    text-align: center;
  }

  .footlogo {
    width: 50%;
    margin: 0 auto 2px;
  }

  @media (max-width: 992px) {
    .left-section {
      min-height: 50vh;
    }

    .right-section {
      min-height: 50vh;
    }

    .tagline {
      font-size: 1rem;
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .row-flex {
      flex-direction: column-reverse;
    }

    .category-btns .btn {
      width: 100%;
      text-align: center;
    }
  }