/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-color: #2c5530;
  --primary-light: #4a7c59;
  --primary-dark: #1a3d1f;
  --secondary-color: #8fbc8f;
  --secondary-light: #a8d1a8;
  --secondary-dark: #6b8e6b;

  /* Neutral Colors */
  --background-color: #fafafa;
  --surface-color: #ffffff;
  --text-primary: #222222;
  --text-secondary: #333333;
  --text-muted: #666666;
  --text-light: #888888;

  /* Accent Colors */
  --accent-green: #27ae60;
  --accent-blue: #3498db;
  --accent-orange: #f39c12;
  --accent-red: #e74c3c;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.9) 0%,
    rgba(74, 124, 89, 0.8) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );

  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 6px 25px rgba(44, 85, 48, 0.2);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Merriweather", serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--background-color);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.title,
.subtitle {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.title.is-1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
}
.title.is-2 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
}
.title.is-3 {
  font-size: 2.2rem;
}
.title.is-4 {
  font-size: 1.8rem;
}
.title.is-5 {
  font-size: 1.4rem;
}
.title.is-6 {
  font-size: 1.2rem;
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Button Styles */
.btn,
.button,
input[type="submit"],
button {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.button.is-primary,
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.button.is-primary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
}

.button.is-large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.2rem;
}

.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
}

.cta-button:hover::before {
  left: 100%;
}

.submit-btn {
  background: var(--gradient-primary);
  color: white;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Navigation */
.header-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
}

.navbar {
  padding: var(--spacing-sm) 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: all var(--transition-medium);
  padding: var(--spacing-xs) var(--spacing-sm);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--spacing-xxl) 0;
}

.hero-title {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-xl);
  font-size: 1.3rem;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Statistics Section */
.statistics-section {
  padding: var(--spacing-xxl) 0;
  background: var(--surface-color);
}

.stat-card {
  background: var(--surface-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  border: 1px solid rgba(44, 85, 48, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.progress-container {
  margin-top: var(--spacing-md);
}

.progress {
  height: 8px;
  border-radius: var(--radius-sm);
}

.progress.is-primary::-webkit-progress-value {
  background: var(--gradient-primary);
}

/* Success Stories Section */
.success-stories-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(
    145deg,
    var(--background-color) 0%,
    rgba(143, 188, 143, 0.1) 100%
  );
}

.success-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.success-card .image-container {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.success-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.success-card .title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.success-card .subtitle {
  color: var(--accent-green);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

/* Accolades Section */
.accolades-section {
  padding: var(--spacing-xxl) 0;
  background: var(--surface-color);
}

.accolade-card {
  padding: var(--spacing-xl);
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.accolade-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.accolade-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  border: 3px solid var(--secondary-color);
}

.accolade-card .title {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

/* Clientele Section */
.clientele-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(
    145deg,
    rgba(143, 188, 143, 0.05) 0%,
    var(--background-color) 100%
  );
}

.client-card {
  background: var(--surface-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.client-card img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
}

.client-card .title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

/* External Resources Section */
.external-resources-section {
  padding: var(--spacing-xxl) 0;
  background: var(--surface-color);
}

.resource-links {
  background: var(--surface-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-color);
}

.resource-list {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-md);
}

.resource-list li {
  margin-bottom: var(--spacing-sm);
}

.external-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-medium);
  position: relative;
}

.external-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.external-link::after {
  content: "↗";
  margin-left: var(--spacing-xs);
  font-size: 0.9rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(
    145deg,
    var(--background-color) 0%,
    rgba(143, 188, 143, 0.1) 100%
  );
}

.process-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
}

.process-card:hover {
  box-shadow: var(--shadow-medium);
}

.process-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.process-content {
  padding: var(--spacing-lg);
}

.process-content .title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--surface-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
}

.step-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.step-item .title {
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
}

/* Blog Section */
.blog-section {
  padding: var(--spacing-xxl) 0;
  background: var(--surface-color);
}

.blog-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.blog-card .image-container {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-heading);
  margin-top: auto;
  transition: all var(--transition-medium);
  position: relative;
}

.blog-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.blog-link::after {
  content: "→";
  margin-left: var(--spacing-xs);
  transition: transform var(--transition-medium);
}

.blog-link:hover::after {
  transform: translateX(3px);
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(
    145deg,
    rgba(143, 188, 143, 0.05) 0%,
    var(--background-color) 100%
  );
}

.faq-container {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-medium);
  background: var(--surface-color);
}

.faq-question:hover {
  background: rgba(143, 188, 143, 0.05);
}

.faq-question .title {
  margin-bottom: 0;
  color: var(--primary-color);
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  transition: transform var(--transition-medium);
  width: 30px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: var(--spacing-lg);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--surface-color);
}

.contact-form-container {
  background: var(--surface-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(44, 85, 48, 0.1);
}

.field {
  margin-bottom: var(--spacing-lg);
}

.label {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.input,
.textarea,
.select select {
  border: 2px solid rgba(44, 85, 48, 0.2);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  font-family: var(--font-body);
  transition: all var(--transition-medium);
  background: var(--surface-color);
  color: var(--text-secondary);
}

.input:focus,
.textarea:focus,
.select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
  outline: none;
}

.select {
  position: relative;
}

.select::after {
  content: "▼";
  position: absolute;
  right: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
}

.select.is-fullwidth {
  width: 100%;
}

.select select {
  width: 100%;
  appearance: none;
  background: var(--surface-color);
}

/* Footer */
.footer-section {
  background: linear-gradient(
    145deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-section .title {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-medium);
  font-family: var(--font-heading);
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-medium);
  padding: var(--spacing-xs) 0;
}

.social-links a:hover {
  color: white;
  transform: translateX(3px);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

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

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 1;
  animation: modalSlideIn var(--transition-medium);
}

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

.modal-card-head {
  padding: var(--spacing-lg);
  border-bottom: 1px solid rgba(44, 85, 48, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-card-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin: 0;
}

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

.modal-card-foot {
  padding: var(--spacing-lg);
  border-top: 1px solid rgba(44, 85, 48, 0.1);
  display: flex;
  justify-content: flex-end;
}

.delete {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-medium);
}

.delete:hover {
  color: var(--text-primary);
}

/* Success Page Styles */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  background: linear-gradient(
    135deg,
    var(--background-color) 0%,
    rgba(143, 188, 143, 0.1) 100%
  );
}

.success-content {
  text-align: center;
  background: var(--surface-color);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  max-width: 600px;
  width: 100%;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 3rem;
  color: white;
  animation: successPulse 2s infinite;
}

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

/* Page Specific Styles */
.page-content {
  padding-top: 100px;
  min-height: 100vh;
}

.page-header {
  background: var(--gradient-primary);
  color: white;
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.page-body {
  padding: var(--spacing-xxl) 0;
}

.content-section {
  background: var(--surface-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-lg);
}

.content-section h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.content-section h3 {
  color: var(--primary-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.content-section ul {
  padding-left: var(--spacing-lg);
}

.content-section li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

/* Cookie Consent */
.cookie-consent {
  font-family: var(--font-body);
  background: rgba(44, 85, 48, 0.95) !important;
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--secondary-color);
}

.cookie-consent p {
  margin-bottom: 15px;
  color: white !important;
  font-size: 1rem;
}

.cookie-consent button {
  background: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  font-weight: var(--font-weight-bold);
  transition: all var(--transition-medium);
}

.cookie-consent button:hover {
  background: var(--secondary-light) !important;
  transform: translateY(-1px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .title.is-1 {
    font-size: 2.8rem;
  }
  .title.is-2 {
    font-size: 2.2rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .process-steps {
    margin-top: var(--spacing-lg);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
  }

  .title.is-1 {
    font-size: 2.2rem;
  }
  .title.is-2 {
    font-size: 1.8rem;
  }

  .hero-section {
    background-attachment: scroll;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .button {
    width: 100%;
    max-width: 300px;
  }

  .navbar-burger {
    color: var(--primary-color);
  }

  .navbar-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
  }

  .stat-card,
  .success-card,
  .blog-card {
    margin-bottom: var(--spacing-lg);
  }

  .columns.is-multiline .column {
    margin-bottom: var(--spacing-md);
  }

  .contact-form-container {
    padding: var(--spacing-lg);
  }

  .modal-card {
    width: 95%;
    margin: var(--spacing-md);
  }

  .success-content {
    padding: var(--spacing-lg);
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }
}

@media screen and (max-width: 480px) {
  .title.is-1 {
    font-size: 1.8rem;
  }
  .title.is-2 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

  .stat-number {
    font-size: 2rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    padding: var(--spacing-md);
  }

  .faq-question .title {
    font-size: 1.1rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-6 {
  margin-bottom: var(--spacing-xxl);
}
.mt-6 {
  margin-top: var(--spacing-xxl);
}
.py-6 {
  padding: var(--spacing-xxl) 0;
}
.px-6 {
  padding: 0 var(--spacing-xxl);
}

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

.is-hidden-mobile {
  @media screen and (max-width: 768px) {
    display: none !important;
  }
}

.is-hidden-desktop {
  @media screen and (min-width: 769px) {
    display: none !important;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bounce-in {
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Scroll Animations */
.aos-init.aos-animate {
  transition-duration: 0.8s;
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Print Styles */
@media print {
  .header-section,
  .footer-section,
  .cookie-consent {
    display: none;
  }

  .page-content {
    padding-top: 0;
  }

  * {
    box-shadow: none !important;
  }
}
.container {
  padding-inline: 15px;
}
footer * {
  color: #fff !important;
}
:root {
  scroll-behavior: smooth;
}
