/* CSS Variables for Lokker Color Palette */
:root {
  --primary-dark: #323436;
  --secondary-dark: #525456;
  --accent-green: #60690b; /* Lokker brand green */
  --accent-bright: #dff61c;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --error-red: #dc3545;
  --success-green: #28a745;
  --warning-orange: #ffc107;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border radius */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(50, 52, 54, 0.1);
  --shadow-md: 0 4px 12px rgba(50, 52, 54, 0.15);
  --shadow-lg: 0 8px 24px rgba(50, 52, 54, 0.2);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  --transition-fast: all 0.2s ease;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Clear Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--primary-dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

/* Background Image Container */
#background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

#background-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(50, 52, 54, 0.8) 0%, rgba(82, 84, 86, 0.6) 100%);
  z-index: 1;
}

/* Main Container */
.main-container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Responsive container adjustments */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 var(--spacing-xs);
  }
}

/* Hero Section */
.hero {
  padding: var(--spacing-lg) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Responsive hero section adjustments */
@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding: var(--spacing-md) 0;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 80vh;
    padding: var(--spacing-sm) 0;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--spacing-xl);
  align-items: center;
  width: 100%;
}

.hero-text {
  color: var(--white);
  animation: fadeInLeft 0.8s ease-out;
}

/* Logo Section */
.logo-section {
  padding: 0;
  margin-bottom: var(--spacing-sm);
  text-align: left;
  max-height: 200px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-logo {
  height: 250px;
  width: auto;
  max-width: 100%;
  transition: var(--transition);
}

.hero-logo:hover {
  transform: scale(1.02);
  /* filter: drop-shadow(0 0 12px rgba(223, 246, 28, 0.4)); */
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Responsive hero title adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: calc(var(--spacing-sm) * 0.8);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-sm) * 0.7);
  }
}

.highlight {
  color: var(--accent-bright);
  background: linear-gradient(45deg, var(--accent-bright), #b8d916, var(--accent-bright));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 2s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Responsive hero subtitle adjustments */
@media (max-width: 1200px) {
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-md) * 0.8);
  }
}

@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: calc(var(--spacing-md) * 0.7);
  }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-xs) * 0.7);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive hero features adjustments */
@media (max-width: 1200px) {
  .hero-features {
    gap: calc(var(--spacing-xs) * 0.8);
  }
}

@media (max-width: 1024px) {
  .hero-features {
    gap: calc(var(--spacing-xs) * 0.6);
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.feature:nth-child(1) { animation-delay: 0.8s; }
.feature:nth-child(2) { animation-delay: 1.0s; }
.feature:nth-child(3) { animation-delay: 1.2s; }

.feature:hover {
  transform: translateX(10px);
  color: var(--accent-bright);
}

.feature i {
  color: var(--accent-bright);
  width: 20px;
  transition: var(--transition);
}

.feature:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(223, 246, 28, 0.6));
}

/* Form Container */
.form-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: var(--spacing-xl);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  border: 6px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  width: 100%;
  animation: fadeInRight 0.8s ease-out 0.3s both;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Responsive form container adjustments */
@media (max-width: 1024px) {
  .form-container {
    max-width: 750px;
    padding: var(--spacing-lg);
  }
}

@media (max-width: 900px) {
  .form-container {
    max-width: 100%;
    padding: var(--spacing-lg);
    margin: 0 auto;
  }
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 195, 20, 0.5), transparent);
}

.form-container:hover {
  transform: translateY(-8px);
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  border-color: rgb(163, 195, 20);
}

.form-header {
  text-align: left;
  margin: calc(-1 * var(--spacing-xl)) calc(-1 * var(--spacing-xl)) var(--spacing-lg) calc(-1 * var(--spacing-xl));
  padding: var(--spacing-lg) var(--spacing-xl);
  background: linear-gradient(135deg, #1d221e 0%, #1e7e34 100%);
  border-radius: 15px 15px 0 0;
  position: relative;
  overflow: hidden;
}

/* Responsive form header adjustments */
@media (max-width: 1024px) {
  .form-header {
    margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-md) calc(-1 * var(--spacing-lg));
    padding: var(--spacing-md) var(--spacing-lg);
  }
}

@media (max-width: 900px) {
  .form-header {
    margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-sm) calc(-1 * var(--spacing-lg));
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}

.form-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.form-header h2 {
  color: var(--white);
  font-size: 1.526rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  animation: fadeInUp 0.6s ease-out 0.5s both;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

/* Responsive form header text adjustments */
@media (max-width: 1024px) {
  .form-header h2 {
    font-size: 1.4rem;
    margin-bottom: calc(var(--spacing-xs) * 0.8);
  }
}

@media (max-width: 900px) {
  .form-header h2 {
    font-size: 1.3rem;
    margin-bottom: calc(var(--spacing-xs) * 0.6);
  }
}

.form-header h2 i {
  transition: var(--transition);
  color: var(--accent-bright);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.form-header:hover h2 i {
  transform: rotate(10deg) scale(1.1);
  color: var(--white);
}

.form-header p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  animation: fadeInUp 0.6s ease-out 0.7s both;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

/* Responsive form header paragraph adjustments */
@media (max-width: 1024px) {
  .form-header p {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .form-header p {
    font-size: 0.8rem;
  }
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* Form row layout for side-by-side fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-sm) * 0.8);
  animation: fadeInUp 0.5s ease-out both;
}

.form-row:nth-child(1) { animation-delay: 0.9s; }
.form-row:nth-child(2) { animation-delay: 1.1s; }
.form-row:nth-child(3) { animation-delay: 1.3s; }

/* Full-width form row for single field */
.form-row-full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Responsive form row adjustments */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  .form-row {
    gap: calc(var(--spacing-xs) * 0.8);
  }
}

/* Responsive form adjustments */
@media (max-width: 1024px) {
  .contact-form {
    gap: calc(var(--spacing-sm) * 0.8);
  }
  
  .form-row {
    gap: calc(var(--spacing-sm) * 0.8);
  }
  
  .form-group {
    margin-bottom: calc(var(--spacing-xs) * 0.5);
  }
}

@media (max-width: 900px) {
  .contact-form {
    gap: var(--spacing-xs);
  }
  
  .form-row {
    gap: var(--spacing-xs);
  }
}

.form-group label {
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group label i {
  color: var(--secondary-dark);
  width: 16px;
  transition: var(--transition);
}

.form-group:hover label i {
  transform: scale(1.2);
}

.form-input {
  padding: calc(var(--spacing-sm) * 0.9);
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  position: relative;
}

/* Responsive form input adjustments */
@media (max-width: 1024px) {
  .form-input {
    padding: calc(var(--spacing-sm) * 0.8);
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .form-input {
    padding: calc(var(--spacing-sm) * 0.7);
    font-size: 0.9rem;
  }
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(96, 105, 11, 0.1);
  transform: translateY(-2px);
}

.form-input:hover {
  border-color: var(--accent-green);
  transform: translateY(-1px);
}

.form-input.error {
  border-color: var(--error-red);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message {
  color: var(--error-red);
  font-size: 0.8rem;
  margin-top: var(--spacing-xs);
  display: none;
  animation: fadeInUp 0.3s ease-out;
}

.error-message.show {
  display: block;
}

.form-help-text {
  color: var(--medium-gray);
  font-size: 0.8rem;
  margin-top: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  opacity: 0.8;
  transition: var(--transition);
}

.form-help-text::before {
  content: "ℹ️";
  font-size: 0.7rem;
}

.form-group:hover .form-help-text {
  opacity: 1;
  color: var(--secondary-dark);
}

.submit-btn {
  background: linear-gradient(135deg, #1d221e 0%, #1e7e34 100%);
  color: var(--white);
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out 1.5s both;
  box-shadow: 
    0 8px 16px rgba(50, 52, 54, 0.15),
    0 4px 8px rgba(50, 52, 54, 0.1);
  letter-spacing: 0.01em;
}

/* Responsive submit button adjustments */
@media (max-width: 1024px) {
  .submit-btn {
    padding: calc(var(--spacing-md) * 0.8) calc(var(--spacing-lg) * 0.8);
    font-size: 1rem;
    margin-top: calc(var(--spacing-md) * 0.8);
  }
}

@media (max-width: 900px) {
  .submit-btn {
    padding: calc(var(--spacing-md) * 0.7) calc(var(--spacing-lg) * 0.7);
    font-size: 0.95rem;
    margin-top: calc(var(--spacing-md) * 0.7);
  }
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(50, 52, 54, 0.2),
    0 6px 12px rgba(50, 52, 54, 0.15);
  background: linear-gradient(135deg, #1e7e34  0%, #1d221e 100%);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn i {
  transition: var(--transition);
}

.submit-btn:hover i {
  transform: rotate(10deg);
}

.form-footer {
  text-align: center;
  margin-top: var(--spacing-sm);
  animation: fadeInUp 0.6s ease-out 1.7s both;
}

/* Responsive form footer adjustments */
@media (max-width: 1024px) {
  .form-footer {
    margin-top: calc(var(--spacing-sm) * 0.8);
  }
}

@media (max-width: 900px) {
  .form-footer {
    margin-top: calc(var(--spacing-sm) * 0.6);
  }
}

.form-footer p {
  color: var(--medium-gray);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

/* Responsive form footer text adjustments */
@media (max-width: 1024px) {
  .form-footer p {
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .form-footer p {
    font-size: 0.7rem;
  }
}

/* About Section */
.about {
  /* background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%); */
  padding: var(--spacing-xxl) 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='0.5' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cuse fill='%23fcfcfc' href='%23s' y='2'/%3E%3Cuse fill='%23fcfcfc' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='2'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23f2f2f2'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23efefef'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23DFF61C'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23DFF61C'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='scale(21.35) translate(-953.16 -714.87)'%3E%3Cg fill='%23DFF61C'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 195, 20, 0.3), transparent);
}

.about-content h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary-dark);
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  letter-spacing: -0.02em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.benefit {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  transition: var(--transition-slow);
  border: 1px solid rgba(50, 52, 54, 0.08);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 6px rgba(50, 52, 54, 0.07),
    0 1px 3px rgba(50, 52, 54, 0.06);
}

.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #277839;
  opacity: 0;
  transition: var(--transition);
}

.benefit:hover::before {
  opacity: 1;
}

.benefit:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(50, 52, 54, 0.15),
    0 8px 16px rgba(50, 52, 54, 0.1),
    0 0 0 1px rgba(163, 195, 20, 0.1);
  border-color: rgba(163, 195, 20, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #fcfcfc 100%);
}

.benefit-icon {
  width: 77px;
  height: 77px;
  background: #525456;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto var(--spacing-lg);
  transition: var(--transition);
  animation: floatUp 3s ease-in-out infinite;
  box-shadow: 
    0 8px 16px rgba(96, 105, 11, 0.2),
    0 4px 8px rgba(96, 105, 11, 0.15);
  position: relative;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.benefit:hover .benefit-icon::before {
  opacity: 1;
}

.benefit:hover .benefit-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--accent-bright);
  transition: var(--transition);
}

.benefit:hover .benefit-icon i {
  transform: scale(1.1);
}

.benefit h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: var(--spacing-sm);
  transition: var(--transition);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.benefit:hover h3 {
  color: var(--accent-green);
}

.benefit p {
  color: var(--medium-gray);
  line-height: 1.6;
  transition: var(--transition);
}

.benefit:hover p {
  color: var(--secondary-dark);
}

.benefit:nth-child(1) { animation-delay: 0.2s; }
.benefit:nth-child(2) { animation-delay: 0.4s; }
.benefit:nth-child(3) { animation-delay: 0.6s; }
.benefit:nth-child(4) { animation-delay: 0.8s; }
.benefit:nth-child(5) { animation-delay: 1.0s; }
.benefit:nth-child(6) { animation-delay: 1.2s; }
.benefit:nth-child(7) { animation-delay: 1.4s; }

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.modal-header i {
  font-size: 3rem;
  color: var(--success-green);
  margin-bottom: var(--spacing-sm);
}

.modal-header.error i {
  color: var(--error-red);
}

.modal-header h2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body {
  padding: var(--spacing-lg);
}

.modal-body p {
  margin-bottom: var(--spacing-sm);
  color: var(--medium-gray);
}

.modal-body ul {
  list-style: none;
  padding: 0;
}

.modal-body li {
  color: var(--error-red);
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.modal-body li::before {
  content: '•';
  color: var(--error-red);
}

.modal-footer {
  padding: var(--spacing-lg);
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none !important;
}

.btn:hover {
  text-decoration: none !important;
}

.btn-primary {
  background: var(--accent-green);
  color: var(--white);
  text-decoration: none !important;
}

.btn-primary:hover {
  background: #218838;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.btn-secondary {
  background: var(--medium-gray);
  color: var(--white);
  text-decoration: none !important;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Compact button variants for sales dashboard */
.btn-sm {
  padding: 6px 12px !important;
  font-size: 0.875rem;
  text-decoration: none !important;
}

/* Sales dashboard specific button styling */
.dashboard-card .btn {
  padding: 8px 16px !important;
  text-decoration: none !important;
}

/* Loading Overlay */
.loading-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.loading-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  text-align: center;
  color: var(--white);
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 90%;
}

.loading-spinner i {
  font-size: 3rem;
  color: var(--accent-bright);
  margin-bottom: var(--spacing-sm);
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-spinner h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.loading-spinner p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
}

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 6px;
  background-color: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-bright));
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.progress-bar {
  background: linear-gradient(
    90deg,
    var(--accent-green) 0%,
    var(--accent-bright) 50%,
    var(--accent-green) 100%
  );
  background-size: 200px 100%;
  animation: progressShimmer 2s ease-in-out infinite;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--medium-gray);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  opacity: 0.5;
  transition: var(--transition);
}

.progress-step.active {
  opacity: 1;
  color: var(--accent-green);
  font-weight: 600;
}

.progress-step.completed {
  opacity: 1;
  color: var(--success-green);
}

.progress-step i {
  font-size: 0.8rem;
}

/* Submit Button Loading State */
.submit-btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */

/* Large laptops and smaller desktops */
@media (max-width: 1200px) {
  .hero-content {
    gap: var(--spacing-lg);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .form-container {
    max-width: 700px;
  }
}

/* Medium laptops and smaller screens */
@media (max-width: 1100px) {
  .hero-content {
    gap: var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .form-container {
    max-width: 680px;
  }
  
  .hero-logo {
    height: 220px;
  }
}

/* Laptops and tablets in landscape */
@media (max-width: 1024px) {
  .hero-content {
    gap: var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .form-container {
    max-width: 680px;
    padding: var(--spacing-lg);
  }
  
  .hero-logo {
    height: 200px;
  }
}

/* Tablets and small laptops */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .hero-text {
    order: 1;
  }
  
  .form-container {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 60px; /* Add space below form to prevent overlap */
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    justify-content: center;
  }
  
  .hero-logo {
    height: 150px;
  }
  
  .hero {
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
    padding-bottom: 80px; /* Add extra padding at bottom */
  }
  
  /* Make form more compact on smaller screens */
  .form-container {
    padding: var(--spacing-md);
  }
  
  .form-header {
    margin: calc(-1 * var(--spacing-md)) calc(-1 * var(--spacing-md)) var(--spacing-sm) calc(-1 * var(--spacing-md));
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .contact-form {
    gap: calc(var(--spacing-sm) * 0.8);
  }
  
  .form-row {
    gap: calc(var(--spacing-sm) * 0.8);
  }
  
  /* Ensure scroll indicator doesn't overlap with form */
  .scroll-indicator {
    bottom: 30px;
    opacity: 0.8;
  }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    justify-content: flex-start;
  }
  
  .form-container {
    padding: var(--spacing-md);
    max-width: 100%;
    margin-bottom: 50px; /* Add space below form to prevent overlap */
  }
  
  .hero-logo {
    height: 45px;
  }
  
  .logo-section {
    margin-bottom: var(--spacing-xs);
  }
  
  .hero {
    min-height: auto;
    padding: var(--spacing-md) 0;
    padding-bottom: 70px; /* Add extra padding at bottom */
  }
  
  /* Make scroll indicator less intrusive on mobile */
  .scroll-indicator {
    bottom: 20px;
    opacity: 0.6;
  }
  
  .scroll-prompt {
    font-size: 0.75rem;
  }
  
  .scroll-arrow {
    font-size: 0.9rem;
  }
  
  /* Make form more compact on mobile */
  .form-container {
    padding: var(--spacing-sm);
  }
  
  .form-header {
    margin: calc(-1 * var(--spacing-sm)) calc(-1 * var(--spacing-sm)) var(--spacing-sm) calc(-1 * var(--spacing-sm));
    padding: var(--spacing-sm);
  }
  
  .contact-form {
    gap: calc(var(--spacing-sm) * 0.7);
  }
  
  .form-row {
    gap: calc(var(--spacing-sm) * 0.7);
  }
  
  .form-input {
    padding: calc(var(--spacing-sm) * 0.8);
  }
  
  .submit-btn {
    padding: calc(var(--spacing-md) * 0.8) calc(var(--spacing-lg) * 0.8);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero {
    padding: var(--spacing-sm) 0;
    min-height: auto;
    padding-bottom: 60px; /* Add extra padding at bottom */
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: var(--spacing-sm);
    margin-bottom: 40px; /* Add space below form to prevent overlap */
  }
  
  .modal-content {
    width: 95%;
  }
  
  .hero-logo {
    height: 35px;
  }
  
  .form-header h2 {
    font-size: 1.3rem;
  }
  
  .hero-content {
    gap: var(--spacing-md);
  }
  
  /* Additional mobile optimizations */
  .form-input {
    padding: calc(var(--spacing-sm) * 0.6);
    font-size: 0.85rem;
  }
  
  .submit-btn {
    padding: calc(var(--spacing-md) * 0.6) calc(var(--spacing-lg) * 0.6);
    font-size: 0.9rem;
  }
  
  .form-header {
    padding: calc(var(--spacing-sm) * 0.8) var(--spacing-sm);
  }
  
  .form-header h2 {
    font-size: 1.2rem;
  }
  
  .form-header p {
    font-size: 0.75rem;
  }
  
  /* Make scroll indicator very subtle on small mobile */
  .scroll-indicator {
    bottom: 15px;
    opacity: 0.4;
  }
  
  .scroll-prompt {
    font-size: 0.7rem;
  }
  
  .scroll-arrow {
    font-size: 0.8rem;
  }
}

/* Dashboard Card */
.dashboard-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  width: 95%;
  max-width: 1600px;
}

.dashboard-card table {
  width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  animation: fadeInUpCentered 1s ease-out 1.5s both;
}

/* Responsive scroll indicator adjustments */
@media (max-width: 1024px) {
  .scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 900px) {
  .scroll-indicator {
    bottom: 15px;
    opacity: 0.8;
  }
  
  .scroll-prompt {
    font-size: 0.85rem;
  }
  
  .scroll-arrow {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 10px;
    opacity: 0.7;
  }
  
  .scroll-prompt {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    font-size: 1rem;
  }
}

/* Custom animation that preserves horizontal centering */
@keyframes fadeInUpCentered {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-prompt {
  color: var(--white);
  margin-bottom: 15px;
  opacity: 0.9;
  transition: var(--transition);
}

.scroll-prompt:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.scroll-prompt span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.scroll-arrow {
  font-size: 1.5rem;
  animation: bounceDown 2s ease-in-out infinite;
  color: var(--accent-bright);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.scroll-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-bright);
  box-shadow: 0 0 10px rgba(163, 195, 20, 0.6);
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Make scroll indicator clickable */
.scroll-indicator {
  cursor: pointer;
}

/* Dashboard KPI Cards - Condensed Styling */
.kpi-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.kpi-card {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.kpi-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

/* Pastel color themes for each card */
.kpi-card:nth-child(1) {
  background: #fff8dc; /* Light cream/vanilla */
  border-color: #f4e4bc;
}

.kpi-card:nth-child(1):hover {
  box-shadow: 0 8px 20px rgba(244, 228, 188, 0.3);
}

.kpi-card:nth-child(2) {
  background: #f0fff0; /* Light mint green */
  border-color: #d4f1d4;
}

.kpi-card:nth-child(2):hover {
  box-shadow: 0 8px 20px rgba(212, 241, 212, 0.3);
}

.kpi-card:nth-child(3) {
  background: #ffe4e1; /* Light coral/pink */
  border-color: #ffc1cc;
}

.kpi-card:nth-child(3):hover {
  box-shadow: 0 8px 20px rgba(255, 193, 204, 0.3);
}

.kpi-card:nth-child(4) {
  background: #e6f3ff; /* Light sky blue */
  border-color: #b3d9ff;
}

.kpi-card:nth-child(4):hover {
  box-shadow: 0 8px 20px rgba(179, 217, 255, 0.3);
}

.kpi-card:nth-child(5) {
  background: #f0f8ff; /* Light alice blue */
  border-color: #b8ddf0;
}

.kpi-card:nth-child(5):hover {
  box-shadow: 0 8px 20px rgba(184, 221, 240, 0.3);
}

/* Icon styling */
.kpi-card > div:first-child {
  font-size: 18px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  line-height: 1;
}

.kpi-card:hover > div:first-child {
  transform: rotate(360deg) scale(1.05);
}

/* Number styling */
.kpi-card > div:nth-child(2) {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  line-height: 1;
}

.kpi-card:hover > div:nth-child(2) {
  transform: scale(1.03);
}

/* Label styling */
.kpi-card small {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  line-height: 1.2;
  display: block;
}

.kpi-card:hover small {
  opacity: 1;
}

/* Load animation */
.kpi-card {
  animation: kpiCardFadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.kpi-card:nth-child(1) { animation-delay: 0.05s; }
.kpi-card:nth-child(2) { animation-delay: 0.1s; }
.kpi-card:nth-child(3) { animation-delay: 0.15s; }
.kpi-card:nth-child(4) { animation-delay: 0.2s; }
.kpi-card:nth-child(5) { animation-delay: 0.25s; }

@keyframes kpiCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .kpi-card {
    min-width: 120px;
    padding: 10px 12px;
  }
  
  .kpi-card > div:first-child {
    font-size: 16px;
  }
  
  .kpi-card > div:nth-child(2) {
    font-size: 20px;
  }
  
  .kpi-card small {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .kpi-row {
    gap: 8px;
  }
  
  .kpi-card {
    min-width: 100px;
    padding: 8px 10px;
  }
  
  .kpi-card > div:first-child {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .kpi-card > div:nth-child(2) {
    font-size: 18px;
  }
  
  .kpi-card small {
    font-size: 8px;
  }
}

/* Checkbox Group Styles */
.checkbox-group {
  align-items: flex-start !important;
}

.checkbox-label {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: var(--spacing-xs) !important;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"] {
  margin: 0 !important;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent-green);
}

.checkbox-text {
  flex: 1;
  line-height: 1.4;
} 