
.hero-section {
  background: linear-gradient(135deg, #006A4E 0%, #FFD700 100%);
  padding: 0 0 40px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-section h1, .hero-section p, .hero-section small {
  color: white !important;
  position: relative;
  z-index: 2;
}

.min-vh-50 {
  min-height: 50vh;
}

/* Australian-themed button styling */
.btn-success {
  background-color: #006A4E;
  border-color: #006A4E;
  box-shadow: 0 4px 8px rgba(0, 106, 78, 0.3);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #005a42;
  border-color: #005a42;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 106, 78, 0.4);
}

.btn-outline-light {
  border-width: 2px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* Australian-themed feature cards */
.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 106, 78, 0.15);
}

.feature-icon {
  background: linear-gradient(135deg, #006A4E 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Australian-themed pricing cards */
.pricing-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 106, 78, 0.2);
}

.pricing-card.featured {
  border-color: #006A4E;
  box-shadow: 0 10px 30px rgba(0, 106, 78, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 40px rgba(0, 106, 78, 0.25);
}

/* Australian-themed form styling */
.form-control:focus {
  border-color: #006A4E;
  box-shadow: 0 0 0 0.2rem rgba(0, 106, 78, 0.25);
}

/* Australian-themed alert styling */
.alert-info {
  background-color: #FFF8DC;
  border-color: #FFD700;
  color: #2C3E50;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Card hover effects */
.card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease-in-out;
}

/* Button hover effects */
.btn:hover {
  transform: translateY(-1px);
  transition: transform 0.1s ease-in-out;
}

/* Australian-themed text colors */
.text-australian-green {
  color: #006A4E !important;
}

.text-australian-gold {
  color: #FFD700 !important;
}

.bg-australian-light {
  background-color: #e8f5e8 !important;
}

.bg-australian-cream {
  background-color: #FFF8DC !important;
}
