/*
Theme Name: Agrology
Theme URI: https://agrology.co.za
Author: Agrology Team
Author URI: https://agrology.co.za
Description: Agricultural drone solutions WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agrology
*/

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
  /* Primary Colors */
  --color-primary: #030213;
  --color-primary-dark: #2d2d3a;
  --color-primary-foreground: #ffffff;

  /* Accent Colors */
  --color-gold: #dab920;
  --color-olive: #9aa22d;
  --color-olive-dark: #759230;

  /* Service Colors */
  --color-debushing: #6c3030;
  --color-soil: #6c5530;
  --color-monitoring: #f3b34c;
  --color-irrigation: #6a99bc;
  --color-biomass: #bc9c6a;
  --color-pest: #759230;

  /* Background Colors */
  --color-bg-white: #ffffff;
  --color-bg-cream: #f5f4f0;
  --color-bg-warm-gray: #a19898;
  --color-bg-olive: #79865d;

  /* Text Colors */
  --color-text-primary: #1c1c1c;
  --color-text-secondary: #555555;
  --color-text-muted: #717182;
  --color-text-light: #b0b0b0;

  /* UI Colors */
  --color-border: rgba(0, 0, 0, 0.1);
  --color-input-bg: #f3f3f5;
  --color-switch-bg: #cbced4;

  /* Typography */
  --font-primary: Arial, sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-inter: 'Inter', sans-serif;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  line-height: 1.5;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   WORDPRESS CORE STYLES
   ============================================ */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  padding: 15px 23px 14px;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-20 {
  gap: 5rem;
}

/* ============================================
   POSITION UTILITIES
   ============================================ */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

/* ============================================
   SIZING UTILITIES
   ============================================ */
.h-full {
  height: 100%;
}

.h-\[90px\] {
  height: 90px;
}

.h-\[220px\] {
  height: 220px;
}

.h-\[240px\] {
  height: 240px;
}

.h-\[300px\] {
  height: 300px;
}

.h-\[520px\] {
  height: 520px;
}

.h-\[60px\] {
  height: 60px;
}

.h-\[2px\] {
  height: 2px;
}

.h-6 {
  height: 1.5rem;
}

.h-\[16px\] {
  height: 16px;
}

.w-full {
  width: 100%;
}

.w-px {
  width: 1px;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.size-1\.5 {
  width: 0.375rem;
  height: 0.375rem;
}

.size-2 {
  width: 0.5rem;
  height: 0.5rem;
}

.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.size-8 {
  width: 2rem;
  height: 2rem;
}

.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.size-16 {
  width: 4rem;
  height: 4rem;
}

.max-w-\[400px\] {
  max-width: 400px;
}

.max-w-\[580px\] {
  max-width: 580px;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.max-w-\[620px\] {
  max-width: 620px;
}

.max-w-\[900px\] {
  max-width: 900px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.max-w-\[1300px\] {
  max-width: 1300px;
}

.max-w-\[1600px\] {
  max-width: 1600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SPACING UTILITIES
   ============================================ */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.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-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.-bottom-2 {
  bottom: -0.5rem;
}

.-bottom-1 {
  bottom: -0.25rem;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

/* ============================================
   BACKGROUND COLORS
   ============================================ */
.bg-white {
  background-color: #ffffff;
}

.bg-\[\#030213\] {
  background-color: #030213;
}

.bg-\[\#2d2d3a\] {
  background-color: #2d2d3a;
}

.bg-\[\#3d4a20\] {
  background-color: #3d4a20;
}

.bg-\[\#6c3030\] {
  background-color: #6c3030;
}

.bg-\[\#6c5530\] {
  background-color: #6c5530;
}

.bg-\[\#6a99bc\] {
  background-color: #6a99bc;
}

.bg-\[\#759230\] {
  background-color: #759230;
}

.bg-\[\#79865d\] {
  background-color: #79865d;
}

.bg-\[\#a19898\] {
  background-color: #a19898;
}

.bg-\[\#bc9c6a\] {
  background-color: #bc9c6a;
}

.bg-\[\#f3b34c\] {
  background-color: #f3b34c;
}

.bg-\[\#f5f4f0\] {
  background-color: #f5f4f0;
}

.bg-\[\#fafafa\] {
  background-color: #fafafa;
}

.bg-\[\#ececf0\] {
  background-color: #ececf0;
}

.bg-\[rgba\(218\,185\,32\,0\.9\)\] {
  background-color: rgba(218, 185, 32, 0.9);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-gray-300 {
  background-color: #d1d5db;
}

/* ============================================
   TEXT COLORS
   ============================================ */
.text-white {
  color: #ffffff;
}

.text-\[\#030213\] {
  color: #030213;
}

.text-\[\#1c1c1c\] {
  color: #1c1c1c;
}

.text-\[\#333\] {
  color: #333333;
}

.text-\[\#444\] {
  color: #444444;
}

.text-\[\#555\] {
  color: #555555;
}

.text-\[\#717182\] {
  color: #717182;
}

.text-\[\#b0b0b0\] {
  color: #b0b0b0;
}

.text-\[\#dab920\] {
  color: #dab920;
}

.text-\[\#0a0a0a\] {
  color: #0a0a0a;
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   GRADIENTS
   ============================================ */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-\[\#dab920\] {
  --tw-gradient-from: #dab920;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 185, 32, 0));
}

.from-\[rgba\(218\,185\,32\,0\.9\)\] {
  --tw-gradient-from: rgba(218, 185, 32, 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 185, 32, 0));
}

.to-\[\#9aa22d\] {
  --tw-gradient-to: #9aa22d;
}

.to-\[rgba\(154\,162\,45\,0\.9\)\] {
  --tw-gradient-to: rgba(154, 162, 45, 0.9);
}

/* ============================================
   BORDERS
   ============================================ */
.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-white {
  border-color: #ffffff;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-\[\#e0e0e0\] {
  border-color: #e0e0e0;
}

.border-\[rgba\(255\,255\,255\,0\.2\)\] {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   BORDER RADIUS
   ============================================ */
.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-none {
  border-radius: 0;
}

.rounded-full {
  border-radius: 9999px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-\[\'Arial\'\,sans-serif\],
.font-\[Arial\,sans-serif\] {
  font-family: Arial, sans-serif;
}

.font-\[\'Open_Sans\'\,sans-serif\],
.font-\[Open_Sans\,sans-serif\] {
  font-family: 'Open Sans', sans-serif;
}

.font-\[\'Inter\'\,sans-serif\],
.font-\[Inter\,sans-serif\] {
  font-family: 'Inter', sans-serif;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[17px\] {
  font-size: 17px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[20px\] {
  font-size: 20px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[24px\] {
  font-size: 24px;
}

.text-\[28px\] {
  font-size: 28px;
}

.text-\[30px\] {
  font-size: 30px;
}

.text-\[32px\] {
  font-size: 32px;
}

.text-\[34px\] {
  font-size: 34px;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-\[40px\] {
  font-size: 40px;
}

.text-\[42px\] {
  font-size: 42px;
}

.text-\[52px\] {
  font-size: 52px;
}

.text-sm {
  font-size: 0.875rem;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-\[1\.5\] {
  line-height: 1.5;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-\[1px\] {
  letter-spacing: 1px;
}

.tracking-\[2px\] {
  letter-spacing: 2px;
}

.tracking-\[4px\] {
  letter-spacing: 4px;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.text-center {
  text-align: center;
}

.hover\:underline:hover {
  text-decoration: underline;
}

/* ============================================
   SHADOWS
   ============================================ */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* ============================================
   TRANSITIONS
   ============================================ */
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:translate-y-0 {
  transform: translateY(0);
}

.opacity-0 {
  opacity: 0;
}

.translate-y-2 {
  transform: translateY(0.5rem);
}

/* ============================================
   FORMS
   ============================================ */
input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  font-size: 15px;
  color: #333;
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #dab920;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

textarea {
  resize: none;
}

.resize-none {
  resize: none;
}

.appearance-none {
  appearance: none;
}

.self-start {
  align-self: flex-start;
}

.inline-block {
  display: inline-block;
}

/* ============================================
   ASPECT RATIO
   ============================================ */
.aspect-square {
  aspect-ratio: 1 / 1;
}

.object-cover {
  object-fit: cover;
}

/* ============================================
   HIDDEN / DISPLAY UTILITIES
   ============================================ */
.hidden {
  display: none;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .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\:aspect-auto {
    aspect-ratio: auto;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:min-h-\[320px\] {
    min-height: 320px;
  }

  .md\:text-\[56px\] {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* Navigation */
nav {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav a {
  position: relative;
}

nav a span {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #dab920;
  border-radius: 9999px;
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .description,
.service-card .learn-more {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .description,
.service-card:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

/* Product Cards */
.product-card {
  overflow: hidden;
}

.product-card img {
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, #dab920, #9aa22d);
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: opacity 0.15s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  display: inline-block;
  border: 1px solid white;
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  background-color: white;
  color: #1c1c1c;
}

/* Section Divider */
.section-divider {
  width: 4rem;
  height: 2px;
  background: linear-gradient(to right, #dab920, #9aa22d);
}

/* Contact Info Icons */
.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #2d2d3a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
  background-color: #2d2d3a;
  color: white;
}

/* Additional Footer Classes */
.bg-\[\#1f1f28\] {
  background-color: #1f1f28;
}

.bg-\[rgba\(255\,255\,255\,0\.1\)\] {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-\[rgba\(218\,185\,32\,0\.3\)\]:hover {
  background-color: rgba(218, 185, 32, 0.3);
}

.border-\[rgba\(255\,255\,255\,0\.1\)\] {
  border-color: rgba(255, 255, 255, 0.1);
}

.rounded-\[20px\] {
  border-radius: 20px;
}

.rounded-\[25px\] {
  border-radius: 25px;
}

.size-\[40px\] {
  width: 40px;
  height: 40px;
}

.size-\[18px\] {
  width: 18px;
  height: 18px;
}

.leading-\[25\.5px\] {
  line-height: 25.5px;
}

.leading-\[24px\] {
  line-height: 24px;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pt-16 {
  padding-top: 4rem;
}

/* Line height utilities */
.leading-\[1\.5\] {
  line-height: 1.5;
}

/* SVG sizing */
svg {
  display: block;
}

/* Sticky positioning support */
.sticky {
  position: sticky;
}

/* Gradient backgrounds for sections */
[style*="linear-gradient(135deg, #2d2d3a 0%, #3d4a20 100%)"] {
  background: linear-gradient(135deg, #2d2d3a 0%, #3d4a20 100%);
}

[style*="linear-gradient(135deg, #2d2d3a 0%, #6c3030 100%)"] {
  background: linear-gradient(135deg, #2d2d3a 0%, #6c3030 100%);
}

[style*="linear-gradient(135deg, #3d4a20 0%, #2d2d3a 100%)"] {
  background: linear-gradient(135deg, #3d4a20 0%, #2d2d3a 100%);
}

/* Hover states for specific colors */
.hover\:text-\[\#dab920\]:hover {
  color: #dab920;
}

.hover\:border-\[\#dab920\]:hover {
  border-color: #dab920;
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:text-\[\#1c1c1c\]:hover {
  color: #1c1c1c;
}

.hover\:bg-\[rgba\(218\,185\,32\,0\.3\)\]:hover {
  background-color: rgba(218, 185, 32, 0.3);
}

/* Focus states */
.focus\:border-\[\#dab920\]:focus {
  border-color: #dab920;
}

.focus\:outline-none:focus {
  outline: none;
}

/* Additional text colors */
.text-\[\#888\] {
  color: #888888;
}

/* Transition all */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Cursor pointer */
.cursor-pointer {
  cursor: pointer;
}

/* Wrap utilities */
.flex-wrap {
  flex-wrap: wrap;
}

/* Additional border utilities */
.border-l-\[6px\] {
  border-left-width: 6px;
}
