/* ====== Base Resets ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.5;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ====== Container ====== */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* ====== Header ====== */
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo img {
    height: 40px;
    width: auto;
  }
  
  .nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  .nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav a:hover {
    color: #06BCC1;
  }
  
  /* ====== Hero Section ====== */
  #hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem; /* To offset fixed header */
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
  }
  
  #hero .relative {
    text-align: center;
  }
  
  /* ====== Buttons ====== */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #06BCC1;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #02393B;
    transform: scale(1.05);
  }
  
  /* ====== Sections ====== */
  section {
    padding: 5rem 0;
  }
  
  /* ====== Grid & Card Utilities ====== */
  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  @media (min-width: 640px) {
    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 768px) {
    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .bg-white {
    background-color: #fff;
  }
  
  .p-6 {
    padding: 1.5rem;
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  .shadow {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .hover\:shadow-lg:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .transition {
    transition: all 0.3s ease;
  }
  
  .transform {
    transform: translateY(0);
  }
  
  .hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-gray-600 {
    color: #555;
  }
  
  .text-gray-800 {
    color: #333;
  }
  
  .text-teal-500 {
    color: #06BCC1;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  /* ====== Footer ====== */
  footer {
    background-color: #02393B;
    color: #fff;
    padding: 1rem 0;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
  }
  
  /* ====== Inquiry Section ====== */
  .inquiry-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .inquiry-info {
    flex: 1;
    min-width: 320px;
    background-color: #06BCC1;
    color: #fff;
    padding: 2rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .inquiry-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .inquiry-info p {
    margin-bottom: 1rem;
  }
  
  .inquiry-form {
    flex: 1;
    min-width: 320px;
    padding: 2rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  /* ====== Form Elements ====== */
  input, select, textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: #06BCC1;
    outline: none;
  }
  
  textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  /* ====== Responsive Utilities ====== */
  @media (max-width: 768px) {
    .flex-col {
      flex-direction: column;
    }
  }
  