/* Custom styles for Romega Solutions website */
* {
  box-sizing: border-box;
}
/* Additional custom styles can be added here */
body {
  font-family: "Source Sans 3", sans-serif;
}

.mobile-menu {
  transition: all 0.3s ease-in-out;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom focus styles */
.focus-ring:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Form styling enhancements */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* font styles section */
.text-preset-hero {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
}
/* Set Source Sans 3 as the default font family */
* {
  font-family: "Source Sans 3", sans-serif;
}

/* ================================
   ROMEGA SOLUTIONS COLOR SYSTEM
   ================================ */

/* PRIMARY & ACCENT COLORS */
:root {
  /* Primary Blues */
  --rs-primary-50: hsla(207, 77%, 95%, 1); /* Very light blue */
  --rs-primary-100: hsla(209, 84%, 88%, 1); /* Light blue */
  --rs-primary-200: hsla(209, 89%, 78%, 1); /* Lighter blue */
  --rs-primary-300: hsla(209, 96%, 65%, 1); /* Light blue */
  --rs-primary-400: hsla(209, 100%, 55%, 1); /* Medium blue */
  --rs-primary-500: hsla(209, 100%, 45%, 1); /* Primary blue (main brand) */
  --rs-primary-600: hsla(209, 80%, 35%, 1); /* Darker blue */
  --rs-primary-700: hsla(209, 100%, 28%, 1); /* Dark blue */
  --rs-primary-800: hsla(209, 100%, 23%, 1); /* Very dark blue */
  --rs-primary-900: hsla(209, 90%, 18%, 1); /* Darkest blue */
  --rs-primary-950: hsla(209, 70%, 12%, 1); /* Darkest blue */

  /* Accent Yellows/Oranges */
  --rs-accent-50: hsla(42, 77%, 95%, 1); /* Very light yellow */
  --rs-accent-100: hsla(42, 100%, 88%, 1); /* Very light yellow */
  --rs-accent-200: hsla(42, 95%, 76%, 1); /* Light yellow */
  --rs-accent-300: hsla(42, 95%, 62%, 1); /* Medium yellow */
  --rs-accent-400: hsla(42, 95%, 52%, 1); /* Orange-yellow */
  --rs-accent-500: hsla(42, 94%, 45%, 1); /* Primary orange */
  --rs-accent-600: hsla(42, 94%, 43%, 1); /* Dark orange */
  --rs-accent-700: hsla(42, 94%, 38%, 1); /* Very dark orange */
  --rs-accent-800: hsla(42, 86%, 30%, 1); /* Very dark orange */
  --rs-accent-900: hsla(43, 76%, 18%, 1); /* Very dark orange */
  --rs-accent-950: hsla(42, 60%, 10%, 1); /* Very dark orange */

  /* Neutral Colors */
  --rs-neutral-50: hsla(208, 87%, 97%, 1); /* Almost white */
  --rs-neutral-100: hsla(209, 69%, 90%, 1); /* Very light gray */
  --rs-neutral-200: hsla(209, 60%, 80%, 1); /* Light gray */
  --rs-neutral-300: hsla(209, 50%, 70%, 1); /* Medium light gray */
  --rs-neutral-400: hsla(209, 40%, 60%, 1); /* Medium gray */
  --rs-neutral-500: hsla(209, 35%, 50%, 1); /* Gray */
  --rs-neutral-600: hsla(209, 40%, 35%, 1); /* Dark gray */
  --rs-neutral-700: hsla(209, 50%, 25%, 1); /* Very dark gray */
  --rs-neutral-800: hsla(208, 60%, 18%, 1); /* Almost black */
  --rs-neutral-900: hsla(209, 67%, 13%, 1); /* Black */
  --rs-neutral-950: hsla(208, 74%, 9%, 1); /* Darkest blue */

  /* Neutral Grey Colors */
  --rs-neutral-grey-50: hsla(220, 20%, 97%, 1); /* Very light gray */
  --rs-neutral-grey-100: hsla(213, 18%, 90%, 1); /* Light gray */
  --rs-neutral-grey-200: hsla(217, 18%, 80%, 1); /* Medium light gray */
  --rs-neutral-grey-300: hsla(216, 17%, 70%, 1); /* Medium gray */
  --rs-neutral-grey-400: hsla(215, 17%, 60%, 1); /* Gray */
  --rs-neutral-grey-500: hsla(216, 17%, 50%, 1); /* Dark gray */
  --rs-neutral-grey-600: hsla(217, 18%, 40%, 1); /* Very dark gray */
  --rs-neutral-grey-700: hsla(217, 20%, 30%, 1); /* Almost black */
  --rs-neutral-grey-800: hsla(215, 22%, 20%, 1); /* Black */
  --rs-neutral-grey-900: hsla(218, 24%, 13%, 1); /* Darkest blue */
  --rs-neutral-grey-950: hsla(217, 32%, 8%, 1); /* Darkest blue */

  /* Semantic Colors */
  --rs-success: #10b981; /* Green for success */
  --rs-warning: #f59e0b; /* Orange for warnings */
  --rs-error: #ef4444; /* Red for errors */
  --rs-info: #3b82f6; /* Blue for information */
}

/* UTILITY CLASSES FOR EASY USE */
/* Background Colors */
.bg-rs-primary {
  background-color: var(--rs-primary-50);
}
.bg-rs-primary-light {
  background-color: var(--rs-primary-100);
}
.bg-rs-primary-dark {
  background-color: var(--rs-primary-700);
}
.bg-rs-accent {
  background-color: var(--rs-accent-500);
}
.bg-rs-neutral {
  background-color: var(--rs-neutral-100);
}

/* Text Colors */
.text-rs-primary {
  color: var(--rs-primary-500);
}
.text-rs-primary-dark {
  color: var(--rs-primary-700);
}
.text-rs-accent {
  color: var(--rs-accent-500);
}
.text-rs-neutral {
  color: var(--rs-neutral-600);
}
.text-rs-neutral-dark {
  color: var(--rs-neutral-800);
}

.text-rs-neutral-700 {
  color: var(--rs-neutral-700);
}
.text-rs-neutral-900 {
  color: var(--rs-neutral-900);
}

/* Text Colors */
.text-rs-primary {
  color: var(--rs-primary-500);
}
.text-rs-primary-700 {
  color: var(--rs-primary-700);
}
.text-rs-primary-dark {
  color: var(--rs-primary-700);
}
.text-rs-accent {
  color: var(--rs-accent-500);
}
.text-rs-neutral {
  color: var(--rs-neutral-700);
}
.text-rs-neutral-dark {
  color: var(--rs-neutral-800);
}

.hover {
  color: var(--rs-primary-600);
}

/* Border Colors */
.border-rs-primary {
  border-color: var(--rs-primary-500);
}

.border-rs-primary-600 {
  border-color: var(--rs-primary-600);
}

.border-rs-accent {
  border-color: var(--rs-accent-500);
}
.border-rs-neutral {
  border-color: var(--rs-neutral-300);
}
.border-rs-neutral-100 {
  border-color: var(--rs-neutral-100);
}
.border-rs-neutral-200 {
  border-color: var(--rs-neutral-200);
}

/* EXAMPLE COMPONENT STYLES USING THE COLOR SYSTEM */
.rs-button-primary {
  background-color: var(--rs-primary-500);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.rs-button-primary:hover {
  background-color: var(--rs-primary-600);
}

.rs-button-secondary {
  background-color: transparent;
  color: var(--rs-primary-500);
  border: 2px solid var(--rs-primary-500);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.rs-button-secondary:hover {
  background-color: var(--rs-primary-500);
  color: white;
}

.rs-card {
  background-color: white;
  border: 1px solid var(--rs-neutral-200);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.rs-alert-success {
  background-color: #ecfdf5;
  border: 1px solid var(--rs-success);
  color: #065f46;
  padding: 1rem;
  border-radius: 0.5rem;
}

.rs-alert-warning {
  background-color: #fffbeb;
  border: 1px solid var(--rs-warning);
  color: #92400e;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* ================================
   END COLOR SYSTEM
   ================================ */

/* Navigation Bar Styles */
.navbar-custom {
  /* Layout */
  align-items: center;

  /* Add horizontal padding for spacing between links */

  /* Typography */
  font-family: "Source Sans 3", sans-serif;

  /* Fill */
  color: var(--rs-neutral-500);
}

/* Book a Call Button Styles */
.book-call-btn {
  /* Layout */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 28px;
  margin-left: 1rem; /* Add some space from nav links */

  /* Typography */
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;

  /* Rest of styles remain the same... */
  background-color: var(--rs-primary-500);
  color: white;
  border-radius: 1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Mobile responsiveness - hide button on small screens */
@media (max-width: 768px) {
  .book-call-btn {
    display: none !important;
  }
}

/* Show button only on medium screens and up */
@media (min-width: 769px) {
  .book-call-btn {
    display: inline-flex !important;
  }
}

.flash {
  animation: flash 0.3s ease-in-out;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.text-merriweather {
  font-family: "Merriweather", serif;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expandable-content.expanded {
  max-height: 800px;
}

.bg-pattern {
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.03) 0%,
      transparent 50%
    );
}

.bg-logo-pattern {
  background-image: radial-gradient(
    circle at 10% 10%,
    rgba(59, 130, 246, 0.05) 0%,
    transparent 40%
  );
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-bg {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.solution-bg {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.result-bg {
  background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
}

.text-merriweather-careers {
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.text-source-sans {
  font-family: "Source Sans 3", sans-serif;
}

/* Merriweather Text Presets */
.text-merriweather-h1 {
  font-family: "Merriweather", serif;
  font-size: 3.75rem; /* 48px */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.text-merriweather-h2 {
  font-family: "Merriweather", serif;
  font-size: 2rem; /* 32px */
  font-weight: 600;
  line-height: 1.2;
}

.text-merriweather-h3 {
  font-family: "Merriweather", serif;
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  line-height: 1.3;
}

.text-merriweather-body {
  font-family: "Merriweather", serif;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.6;
}

.text-merriweather-value-h1 {
  font-family: "Merriweather", serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  line-height: 1.1;
}

.text-rs-value-primary-blue {
  color: var(--rs-primary-600);
}

.text-rs-value-secondary-blue {
  color: var(--rs-primary-500);
}

.text-rs-value-primary-neutral {
  color: var(--rs-neutral-600);
}

.text-rs-value-source-sans {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.text-rs-service-source {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1rem;
}

.text-rs-service-source-sans {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1rem;
  color: var(--rs-primary-900);
}

.text-rs-service-source-sans-sm {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 14px;
  color: var(--rs-primary-600);
}

.bg-services {
  background-color: var(--rs-neutral-100);
}

.bg-services-tags {
  background-color: var(--rs-primary-700);
}

.bg-services-card {
  background-color: var(--rs-primary-800);
}

.bg-case {
  background-color: var(--rs-neutral-900);
}

.text-rs-case-primary-color {
  color: var(--rs-neutral-50);
}

.text-rs-case-secondary-color {
  color: var(--rs-neutral-200);
}

.text-rs-case-source-sans {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.2;
  color: var(--rs-neutral-200);
  font-weight: 300;
}

.text-rs-case-link {
  color: var(--rs-primary-200);
  text-decoration: underline;
  font-size: 19px;
  font-weight: 400;
}

.text-rs-linked {
  color: var(--rs-primary-600);
  font-weight: 400;
}

.text-rs-linked-neutral {
  color: var(--rs-neutral-600);
  font-weight: 400;
}

.text-footer-neutral {
  color: var(--rs-neutral-600);
  font-family: "Source Sans 3", sans-serif;
}
.text-career-neutral {
  color: var(--rs-primary-600);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
}

/* ✅ Primary Blue (--rs-primary-*) */

.text-rs-primary-50 {
  color: var(--rs-primary-50);
}
.text-rs-primary-100 {
  color: var(--rs-primary-100);
}
.text-rs-primary-200 {
  color: var(--rs-primary-200);
}
.text-rs-primary-300 {
  color: var(--rs-primary-300);
}
.text-rs-primary-400 {
  color: var(--rs-primary-400);
}
.text-rs-primary-500 {
  color: var(--rs-primary-500);
}
.text-rs-primary-600 {
  color: var(--rs-primary-600);
}
.text-rs-primary-700 {
  color: var(--rs-primary-700);
}
.text-rs-primary-800 {
  color: var(--rs-primary-800);
}
.text-rs-primary-900 {
  color: var(--rs-primary-900);
}
.text-rs-primary-950 {
  color: var(--rs-primary-950);
}

.bg-rs-primary-50 {
  background-color: var(--rs-primary-50);
}
.bg-rs-primary-100 {
  background-color: var(--rs-primary-100);
}
.bg-rs-primary-200 {
  background-color: var(--rs-primary-200);
}
.bg-rs-primary-300 {
  background-color: var(--rs-primary-300);
}
.bg-rs-primary-400 {
  background-color: var(--rs-primary-400);
}
.bg-rs-primary-500 {
  background-color: var(--rs-primary-500);
}
.bg-rs-primary-600 {
  background-color: var(--rs-primary-600);
}
.bg-rs-primary-700 {
  background-color: var(--rs-primary-700);
}
.bg-rs-primary-800 {
  background-color: var(--rs-primary-800);
}
.bg-rs-primary-900 {
  background-color: var(--rs-primary-900);
}
.bg-rs-primary-950 {
  background-color: var(--rs-primary-950);
}

/* ✅ Accent Yellow/Orange (--rs-accent-*) */
.text-rs-accent-50 {
  color: var(--rs-accent-50);
}
.text-rs-accent-100 {
  color: var(--rs-accent-100);
}
.text-rs-accent-200 {
  color: var(--rs-accent-200);
}
.text-rs-accent-300 {
  color: var(--rs-accent-300);
}
.text-rs-accent-400 {
  color: var(--rs-accent-400);
}
.text-rs-accent-500 {
  color: var(--rs-accent-500);
}
.text-rs-accent-600 {
  color: var(--rs-accent-600);
}
.text-rs-accent-700 {
  color: var(--rs-accent-700);
}
.text-rs-accent-800 {
  color: var(--rs-accent-800);
}
.text-rs-accent-900 {
  color: var(--rs-accent-900);
}
.text-rs-accent-950 {
  color: var(--rs-accent-950);
}

.bg-rs-accent-50 {
  background-color: var(--rs-accent-50);
}
.bg-rs-accent-100 {
  background-color: var(--rs-accent-100);
}
.bg-rs-accent-200 {
  background-color: var(--rs-accent-200);
}
.bg-rs-accent-300 {
  background-color: var(--rs-accent-300);
}
.bg-rs-accent-400 {
  background-color: var(--rs-accent-400);
}
.bg-rs-accent-500 {
  background-color: var(--rs-accent-500);
}
.bg-rs-accent-600 {
  background-color: var(--rs-accent-600);
}
.bg-rs-accent-700 {
  background-color: var(--rs-accent-700);
}
.bg-rs-accent-800 {
  background-color: var(--rs-accent-800);
}
.bg-rs-accent-900 {
  background-color: var(--rs-accent-900);
}
.bg-rs-accent-950 {
  background-color: var(--rs-accent-950);
}

/* ✅ Neutral Colors (--rs-neutral-*) */
.text-rs-neutral-50 {
  color: var(--rs-neutral-50);
}
.text-rs-neutral-100 {
  color: var(--rs-neutral-100);
}
.text-rs-neutral-200 {
  color: var(--rs-neutral-200);
}
.text-rs-neutral-300 {
  color: var(--rs-neutral-300);
}
.text-rs-neutral-400 {
  color: var(--rs-neutral-400);
}
.text-rs-neutral-500 {
  color: var(--rs-neutral-500);
}
.text-rs-neutral-600 {
  color: var(--rs-neutral-600);
}
.text-rs-neutral-700 {
  color: var(--rs-neutral-700);
}
.text-rs-neutral-800 {
  color: var(--rs-neutral-800);
}
.text-rs-neutral-900 {
  color: var(--rs-neutral-900);
}
.text-rs-neutral-950 {
  color: var(--rs-neutral-950);
}

.bg-rs-neutral-50 {
  background-color: var(--rs-neutral-50);
}
.bg-rs-neutral-100 {
  background-color: var(--rs-neutral-100);
}
.bg-rs-neutral-200 {
  background-color: var(--rs-neutral-200);
}
.bg-rs-neutral-300 {
  background-color: var(--rs-neutral-300);
}
.bg-rs-neutral-400 {
  background-color: var(--rs-neutral-400);
}
.bg-rs-neutral-500 {
  background-color: var(--rs-neutral-500);
}
.bg-rs-neutral-600 {
  background-color: var(--rs-neutral-600);
}
.bg-rs-neutral-700 {
  background-color: var(--rs-neutral-700);
}
.bg-rs-neutral-800 {
  background-color: var(--rs-neutral-800);
}
.bg-rs-neutral-900 {
  background-color: var(--rs-neutral-900);
}
.bg-rs-neutral-950 {
  background-color: var(--rs-neutral-950);
}

/* ✅ Neutral Grey Colors (--rs-neutral-grey-*) */
.text-rs-neutral-grey-50 {
  color: var(--rs-neutral-grey-50);
}
.text-rs-neutral-grey-100 {
  color: var(--rs-neutral-grey-100);
}
.text-rs-neutral-grey-200 {
  color: var(--rs-neutral-grey-200);
}
.text-rs-neutral-grey-300 {
  color: var(--rs-neutral-grey-300);
}
.text-rs-neutral-grey-400 {
  color: var(--rs-neutral-grey-400);
}
.text-rs-neutral-grey-500 {
  color: var(--rs-neutral-grey-500);
}
.text-rs-neutral-grey-600 {
  color: var(--rs-neutral-grey-600);
}
.text-rs-neutral-grey-700 {
  color: var(--rs-neutral-grey-700);
}
.text-rs-neutral-grey-800 {
  color: var(--rs-neutral-grey-800);
}
.text-rs-neutral-grey-900 {
  color: var(--rs-neutral-grey-900);
}
.text-rs-neutral-grey-950 {
  color: var(--rs-neutral-grey-950);
}

.bg-rs-neutral-grey-50 {
  background-color: var(--rs-neutral-grey-50);
}
.bg-rs-neutral-grey-100 {
  background-color: var(--rs-neutral-grey-100);
}
.bg-rs-neutral-grey-200 {
  background-color: var(--rs-neutral-grey-200);
}
.bg-rs-neutral-grey-300 {
  background-color: var(--rs-neutral-grey-300);
}
.bg-rs-neutral-grey-400 {
  background-color: var(--rs-neutral-grey-400);
}
.bg-rs-neutral-grey-500 {
  background-color: var(--rs-neutral-grey-500);
}
.bg-rs-neutral-grey-600 {
  background-color: var(--rs-neutral-grey-600);
}
.bg-rs-neutral-grey-700 {
  background-color: var(--rs-neutral-grey-700);
}
.bg-rs-neutral-grey-800 {
  background-color: var(--rs-neutral-grey-800);
}
.bg-rs-neutral-grey-900 {
  background-color: var(--rs-neutral-grey-900);
}
.bg-rs-neutral-grey-950 {
  background-color: var(--rs-neutral-grey-950);
}

/* Border Colors */
.border-rs-neutral-50 {
  border-color: var(--rs-neutral-50);
}
.border-rs-neutral-100 {
  border-color: var(--rs-neutral-100);
}
.border-rs-neutral-200 {
  border-color: var(--rs-neutral-200);
}
.border-rs-neutral-300 {
  border-color: var(--rs-neutral-300);
}
.border-rs-neutral-400 {
  border-color: var(--rs-neutral-400);
}
.border-rs-neutral-500 {
  border-color: var(--rs-neutral-500);
}

.border-rs-grey-400 {
  border-color: var(--rs-neutral-grey-400);
}

.outline-rs-neutral-400 {
  outline-color: var(--rs-neutral-400);
}

/* Custom Scrollbar Styles */
#testimonial-track::-webkit-scrollbar {
  height: 8px;
}

#testimonial-track::-webkit-scrollbar-track {
  background-color: var(--rs-neutral-200);
  border-radius: 10px;
}

#testimonial-track::-webkit-scrollbar-thumb {
  background-color: var(--rs-primary-500);
  border-radius: 10px;
}

#testimonial-track::-webkit-scrollbar-thumb:hover {
  background-color: var(--rs-accent-500);
}

textarea:focus ~ label,
textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-1.85rem) scale(0.875);
  color: var(--rs-primary-600);
  background-color: var(--rs-neutral-50);
  padding: 0 0.25rem;
}

@media (min-width: 400px) {
  .xs\:flex-row {
    flex-direction: row !important;
  }
}
