/* Base Tailwind-like Styles */
:root {
    --color-clariz-teal: #1a5e63;
    --color-clariz-green: #0e8f44;
    --color-clariz-dark: #152232;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
  }
  
  /* General Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--color-gray-700);
    background-color: var(--color-white);
  }
  
  /* Containers and Layout */
  .container {
    width: 100%;
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .pt-12 {
    padding-top: 3rem;
  }
  
  .pt-16 {
    padding-top: 4rem;
  }
  
  .pt-20 {
    padding-top: 5rem;
  }
  
  .pb-8 {
    padding-bottom: 2rem;
  }
  
  .pb-16 {
    padding-bottom: 4rem;
  }
  
  .mt-12 {
    margin-top: 3rem;
  }
  
  .mb-1 {
    margin-bottom: 0.25rem;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .mb-3 {
    margin-bottom: 0.75rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  .mb-12 {
    margin-bottom: 3rem;
  }
  
  .mb-16 {
    margin-bottom: 4rem;
  }
  
  .ml-2 {
    margin-left: 0.5rem;
  }
  
  .space-x-4 {
    display: flex;
    gap: 1rem;
  }
  
  .space-y-2 > * + * {
    margin-top: 0.5rem;
  }
  
  .space-y-3 > * + * {
    margin-top: 0.75rem;
  }
  
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  .gap-3 {
    gap: 0.75rem;
  }
  
  .gap-4 {
    gap: 1rem;
  }
  
  .gap-6 {
    gap: 1.5rem;
  }
  
  .gap-8 {
    gap: 2rem;
  }
  
  .gap-12 {
    gap: 3rem;
  }
  
  /* Flex and Grid */
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .items-center {
    align-items: center;
  }
  
  .items-start {
    align-items: flex-start;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .grid {
    display: grid;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  /* Typography */
  .text-center {
    text-align: center;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .opacity-90 {
    opacity: 0.9;
  }
  
  /* Colors */
  .text-white {
    color: var(--color-white);
  }
  
  .text-clariz-teal {
    color: var(--color-clariz-teal);
  }
  
  .text-clariz-green {
    color: var(--color-clariz-green);
  }
  
  .text-gray-100 {
    color: var(--color-gray-100);
  }
  
  .text-gray-300 {
    color: var(--color-gray-300);
  }
  
  .text-gray-400 {
    color: var(--color-gray-400);
  }
  
  .text-gray-600 {
    color: var(--color-gray-600);
  }
  
  .text-gray-700 {
    color: var(--color-gray-700);
  }
  
  .bg-white {
    background-color: var(--color-white);
  }
  
  .bg-clariz-teal {
    background-color: var(--color-clariz-teal);
  }
  
  .bg-clariz-green {
    background-color: var(--color-clariz-green);
  }
  
  .bg-clariz-dark {
    background-color: var(--color-clariz-dark);
  }
  
  .bg-gray-50 {
    background-color: var(--color-gray-50);
  }
  
  .bg-gray-200 {
    background-color: var(--color-gray-200);
  }
  
  .bg-opacity-10 {
    background-opacity: 0.1;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .border-gray-800 {
    border-color: var(--color-gray-800);
  }
  
  /* Components */
  .section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-clariz-teal);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    background-color: var(--color-clariz-green);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .btn-primary {
    background-color: var(--color-clariz-green);
    color: var(--color-white);
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  .btn-teal {
    background-color: var(--color-clariz-teal);
    color: var(--color-white);
  }
  
  .btn-teal:hover {
    background-color: var(--color-clariz-green);
  }
  
  .btn-green {
    background-color: var(--color-clariz-green);
    color: var(--color-white);
  }
  
  .btn-green:hover {
    opacity: 0.9;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
  }
  
  .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-clariz-teal);
  }
  
  /* Form Elements */
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--color-clariz-teal);
  }
  
  .form-textarea {
    resize: vertical;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-clariz-dark), var(--color-clariz-teal));
    opacity: 0.8;
    z-index: 0;
  }
  
  /* Service Cards */
  .service-card {
    background-color: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
  }
  
  .service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s;
  }
  
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .navbar-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .navbar-menu {
    display: none;
    list-style: none;
  }
  
  .navbar-menu li {
    display: inline-block;
    margin-left: 1.5rem;
  }
  
  .navbar-menu a {
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar-menu a:hover,
  .navbar-menu a.active {
    color: var(--color-clariz-teal);
  }
  
  .mobile-menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray-700);
  }
  
  .mobile-menu {
    display: none;
    padding: 1rem;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .mobile-menu ul {
    list-style: none;
  }
  
  .mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 500;
  }
  
  .mobile-menu a:hover {
    color: var(--color-clariz-teal);
  }
  
  /* Utility Classes */
  .aspect-video {
    position: relative;
    padding-bottom: 56.25%;
  }
  
  .aspect-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .aspect-square {
    position: relative;
    padding-bottom: 100%;
  }
  
  .aspect-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .aspect-\[4\/3\] {
    position: relative;
    padding-bottom: 75%;
  }
  
  .aspect-\[4\/3\] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .object-cover {
    object-fit: cover;
  }
  
  .w-full {
    width: 100%;
  }
  
  .h-full {
    height: 100%;
  }
  
  .h-14, .w-14 {
    height: 3.5rem;
    width: 3.5rem;
  }
  
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .z-0 {
    z-index: 0;
  }
  
  .z-10 {
    z-index: 10;
  }
  
  .border-t {
    border-top-width: 1px;
    border-top-style: solid;
  }
  
  .transition-colors {
    transition-property: color, background-color, border-color;
    transition-duration: 0.3s;
  }
  
  .transition-transform {
    transition-property: transform;
    transition-duration: 0.3s;
  }
  
  .hover\:scale-110:hover {
    transform: scale(1.1);
  }
  
  .hover\:text-white:hover {
    color: var(--color-white);
  }
  
  .hover\:text-clariz-green:hover {
    color: var(--color-clariz-green);
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 768px) {
    .md\:w-1\/2 {
      width: 50%;
    }
  
    .md\:w-2\/5 {
      width: 40%;
    }
  
    .md\:w-3\/5 {
      width: 60%;
    }
  
    .md\:flex-row {
      flex-direction: row;
    }
    
    .md\:flex-row-reverse {
      flex-direction: row-reverse;
    }
  
    .md\:pl-12 {
      padding-left: 3rem;
    }
  
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .md\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:mb-0 {
      margin-bottom: 0;
    }
    
    .md\:pt-0 {
      padding-top: 0;
    }
    
    .md\:py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
    
    .md\:text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }
    
    .md\:text-5xl {
      font-size: 3rem;
      line-height: 1;
    }
    
    .navbar-menu {
      display: flex;
    }
    
    .mobile-menu-button {
      display: none;
    }
  }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .lg\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:text-6xl {
      font-size: 3.75rem;
      line-height: 1;
    }
  }
  
  /* Animation Keyframes */
  @keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  