/* src/styles.css */
:root {
  --bg:#ffffff;
  --bg-secondary:#f8fafc;
  --card:#ffffff;
  --border:#e2e8f0;
  --border-light:#f1f5f9;
  --shadow:0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius:8px;
  --radius-lg:12px;
  --transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --primary: #2c7bac;
  --primary-dark: #255f86;
  --primary-rgb:
    44,
    123,
    172;
  --secondary: #f79f0a;
  --secondary-light: #f79f0a;
  --secondary-rgb:
    247,
    159,
    10;
  --text: #000000;
  --muted: #5c6276;
  --muted-rgb:
    92,
    98,
    118;
  --accent: #2c7bac;
  --accent-hover: #255f86;
  --accent-light: rgba(44, 123, 172, 0.12);
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
.headerctabutton {
  background-color: #94bdd6;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 80px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background:
    linear-gradient(
      135deg,
      var(--card) 0%,
      var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}
.brand-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.brand-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
  text-align: left;
}
.brand-subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
  text-align: left;
}
.main-nav {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  position: relative;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: var(--transition);
  border-radius: var(--radius);
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--accent-light);
}
.nav-links a.active {
  color: var(--primary);
  background: var(--accent-light);
  font-weight: 600;
}
.cta-button {
  background:
    linear-gradient(
      135deg,
      var(--accent) 0%,
      var(--accent-hover) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: white;
}
.lang-switcher {
  margin-right: 12px;
}
.lang-switcher select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}
.lang-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.5rem;
}
.lang-links a {
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}
.lang-links a:hover {
  color: var(--primary);
  background: var(--accent-light);
}
.lang-links a.active {
  color: var(--primary);
  background: var(--accent-light);
  font-weight: 600;
}
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle:hover span {
  background: var(--primary);
}
.mobile-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.mobile-toggle.active {
  background: var(--accent-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.footer {
  background:
    linear-gradient(
      135deg,
      var(--bg-secondary) 0%,
      #e2e8f0 100%);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.footer-section {
  min-width: 0;
}
.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-text {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.footer-contact strong {
  color: var(--text);
}
.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--primary-dark);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 0.25rem 0;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.25rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  color: var(--muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--primary);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 40px 0;
}
.hero h1 {
  font-size: 32px;
  margin: 0 0 12px;
}
.hero p {
  color: var(--muted);
  margin: 0 0 18px;
}
.features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.feature {
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  min-width: 160px;
}
.card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
section {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
h2 {
  margin: 0 0 12px;
}
.cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      #fff,
      #fbfdff);
}
.service h3 {
  margin: 0 0 6px;
}
.service p {
  margin: 0;
  color: var(--muted);
}
.links a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed var(--border);
  text-decoration: none;
  color: var(--accent);
  margin-bottom: 10px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
input[type=text],
input[type=email],
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
button {
  background: var(--accent);
  color: white;
  padding: 12px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}
@property --glow-intensity { syntax: "<number>"; inherits: false; initial-value: 1; }
.contact-card {
  position: relative;
  z-index: 10;
  border-radius: 20px;
  padding: 24px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.98) 25%,
      rgba(248, 250, 252, 0.95) 50%,
      rgba(255, 255, 255, 0.98) 75%,
      rgba(255, 255, 255, 0.95) 100%) !important;
  background-size: 200% 100%;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08), 0 10px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-6px);
  overflow: visible;
  border: 0;
  will-change: filter;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
  opacity: 0.72;
  animation: ring-pulse 6s ease-in-out infinite;
}
.contact-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: calc(20px - 2px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 250, 252, 0.6) 50%,
      rgba(255, 255, 255, 0.9) 100%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}
@keyframes ring-pulse {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}
@keyframes elegant-glow-pulse {
  0%, 100% {
    --glow-intensity: 1;
    opacity: 0.8;
    filter: blur(0.5px) drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
  }
  50% {
    --glow-intensity: 1.2;
    opacity: 1;
    filter: blur(0.5px) drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  }
}
@keyframes elegant-float {
  0%, 100% {
    transform: translateY(-8px) scale(1);
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
  }
  50% {
    transform: translateY(-12px) scale(1.005);
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.16));
  }
}
@keyframes card-breathe {
  0%, 100% {
    transform: translateY(-6px) scale(1);
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
  }
  50% {
    transform: translateY(-6px) scale(1.015);
    filter: drop-shadow(0 14px 44px rgba(0, 0, 0, 0.14));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .contact-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .contact-card {
    animation: none !important;
  }
  .contact-card::before {
    animation: none !important;
    opacity: 0.72 !important;
  }
  .process-step {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@keyframes elegant-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes content-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.2),
    0 0 40px rgba(59, 130, 246, 0.12),
    0 12px 48px rgba(0, 0, 0, 0.08),
    0 6px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.contact-card:hover::before {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.contact-card .card-header,
.contact-card .card-content {
  position: relative;
  z-index: 2;
  animation: content-fade-in 1.2s ease-out;
}
.contact-card .brand-title,
.contact-card .brand-subtitle,
.contact-card h3,
.contact-card p,
.contact-card .contact-details {
  color: #1f2937 !important;
}
.contact-card .card-cta {
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #2563eb) !important;
  color: white !important;
  z-index: 3;
  position: relative;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  border: none;
  transition: all 0.3s ease;
  animation: content-fade-in 1.2s ease-out, cta-pulse 3s ease-in-out infinite;
  animation-delay: 0.6s, 2s;
  overflow: hidden;
}
.contact-card .card-cta::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 0.5s ease;
}
.contact-card .card-cta:hover::before {
  left: 100%;
}
@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  }
}
footer {
  padding: 28px 0;
  color: var(--muted);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.feature {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-width: 160px;
  text-align: center;
  transition: var(--transition);
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}
h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      var(--card),
      var(--bg-secondary));
  transition: var(--transition);
}
.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.service p {
  margin: 0;
  color: var(--muted);
}
.links a {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--primary);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.links a:hover {
  background: var(--accent-light);
  transform: translateX(4px);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input[type=text],
input[type=email],
textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 1rem;
  transition: var(--transition);
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
button {
  background:
    linear-gradient(
      135deg,
      var(--accent) 0%,
      var(--accent-hover) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.homepage {
  overflow-x: hidden;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      135deg,
      #e6f4ff 0%,
      #cfe8fb 100%);
  color: var(--muted);
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0) 100%);
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0) 100%);
}
.hero-section::before {
  content: none;
}
.hero-section::after {
  content: none;
}
.hero-text > * {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}
.hero-badge {
  animation-delay: 0.2s;
}
.hero-title {
  animation-delay: 0.4s;
}
.hero-description {
  animation-delay: 0.6s;
}
.hero-stats {
  animation-delay: 0.8s;
}
.hero-actions {
  animation-delay: 1s;
}
.hero-visual .contact-card {
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 1s ease-out 1.2s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-logo {
  display: none;
  align-items: center;
  justify-content: center;
}
.hero-logo-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 12px;
}
.hero-truck {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0.75rem auto 0;
  padding-bottom: 18px;
  z-index: 1;
  pointer-events: none;
}
.hero-truck .truck-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}
.hero-truck .truck-ground {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 48px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.20) 45%,
      rgba(0, 0, 0, 0) 70%);
  filter: blur(3px);
  border-radius: 50%;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-truck {
    display: none;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--muted-rgb), 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--muted-rgb), 0.25);
}
.badge-icon {
  font-size: 1.2rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.highlight {
  color: var(--secondary);
}
.gradient-text {
  background:
    linear-gradient(
      45deg,
      var(--secondary),
      var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      45deg,
      var(--secondary),
      var(--secondary-light));
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--secondary-rgb), 0.4);
}
.btn-primary.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-actions .btn-secondary span:not(.phone-icon) {
  color: var(--primary);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn-secondary .phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
}
.btn-secondary .phone-icon ion-icon {
  width: 16px;
  height: 16px;
}
.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}
.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  font-style: normal;
}
.card-actions > a {
  justify-content: center;
  text-align: center;
  display: flex;
  width: 100%;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
  opacity: 0.72;
  animation: ring-pulse 6s ease-in-out infinite;
}
.contact-card:hover {
  animation-play-state: paused;
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.16);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-card .logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-card .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.contact-card .brand-info {
  display: flex;
  flex-direction: column;
}
.contact-card .brand-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.contact-card .brand-subtitle {
  font-size: 0.825rem;
  color: var(--muted);
  font-weight: 500;
}
.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.card-content h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 700;
}
.card-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.contact-info {
  margin-bottom: 1.25rem;
  font-style: normal;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  margin-bottom: 0.25rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  font-style: normal;
}
.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact-item .icon {
  font-size: 1.05rem;
  margin-top: 0.15rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
  border-radius: 10px;
}
.contact-card address,
.contact-card em,
.contact-card i,
.contact-details strong,
.contact-details a,
.address-line,
.availability {
  font-style: normal;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.card-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.trust-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #f8fafc 50%,
      #e2e8f0 100%);
}
.trust-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.trust-content h2.animate {
  opacity: 1;
  transform: translateY(0);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-grid .trust-item:nth-child(5) {
  grid-column: 2 / 4;
  max-width: 400px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.trust-item.animate {
  animation: slideInUp 0.7s ease-out forwards;
}
.trust-item:hover {
  transform: translateY(-5px);
}
.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.trust-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.trust-item p {
  color: var(--muted);
  line-height: 1.6;
}
.services-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #e2e8f0 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-header p {
  font-size: 1.2rem;
  color: var(--muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.service-card.featured {
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
  transform: scale(1.05);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
}
.service-features li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.service-card.featured .service-link {
  color: var(--secondary);
}
.service-link:hover {
  color: var(--primary-dark);
}
.process-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 50%),
    radial-gradient(
      circle at 80% 70%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%);
  pointer-events: none;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.process-step {
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  overflow: hidden;
}
.process-step.animate {
  animation: fadeInUp 0.8s ease forwards;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.02) 0%,
      rgba(16, 185, 129, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 24px;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.process-step:hover::before {
  opacity: 0.8;
}
.process-step:hover .step-icon {
  transform: translateY(-2px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.step-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.step-icon ion-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}
.process-step:hover .step-icon ion-icon {
  filter: drop-shadow(0 3px 6px rgba(37, 99, 235, 0.2));
  transform: scale(1.05);
}
.step-number {
  width: 90px;
  height: 90px;
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.25),
    0 4px 8px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0 auto 2rem;
  position: relative;
  z-index: 3;
}
.process-step:hover .step-number {
  transform: scale(1.08);
}
.step-number::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--text);
  font-weight: 700;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}
.step-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.process-step:hover .step-content p {
  color: var(--text);
}
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .process-timeline::before {
    display: none;
  }
  .process-timeline::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .process-section {
    padding: 3rem 0;
  }
  .process-section .section-header p {
    font-size: 1rem;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 520px;
    margin-top: 2rem;
  }
  .process-step {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }
  .step-number {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
  }
  .step-icon {
    font-size: 2.75rem;
  }
  .step-icon ion-icon {
    width: 44px;
    height: 44px;
  }
  .step-content h3 {
    font-size: 1.2rem;
  }
  .step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.cta-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
}
.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.cta-actions {
  text-align: center;
}
.cta-contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.phone-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
}
.phone-link:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .trust-grid .trust-item:nth-child(5) {
    grid-column: 1 / 3;
    max-width: 350px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .expertise-item {
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  .expertise-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .expertise-content h4,
  .expertise-content p {
    text-align: center;
  }
  .expertise-icon {
    margin: 0 auto 1rem;
  }
}
@media (max-width: 1200px) and (min-width: 1025px) {
  .expertise-item {
    align-items: center;
    text-align: center;
  }
  .expertise-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .expertise-content h4,
  .expertise-content p {
    text-align: center;
  }
  .expertise-icon {
    margin: 0 auto 1rem;
  }
}
.about-section {
  padding: 120px 0;
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #e2e8f0 50%,
      #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}
.about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.1),
      rgba(59, 130, 246, 0.05));
  animation: float 6s ease-in-out infinite;
}
.floating-shape.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-shape.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.floating-shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 40%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.about-content .section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.about-content .section-header.animate {
  opacity: 1;
  transform: translateY(0);
}
.about-content .highlight-text {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease-out;
}
.about-content .highlight-text.animate {
  opacity: 1;
  transform: translateY(0);
}
.about-content .expertise-item {
  opacity: 0;
  transform: translateY(25px);
}
.about-content .expertise-item.animate {
  animation: slideInUp 0.7s ease-out forwards;
}
.about-content .mission-box {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.about-content .mission-box.animate {
  opacity: 1;
  transform: translateY(0);
}
.about-content .company-info-card,
.about-content .secondary-stat {
  opacity: 0;
  transform: translateY(25px);
}
.about-content .company-info-card.animate,
.about-content .secondary-stat.animate {
  animation: slideInUp 0.7s ease-out forwards;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.badge-icon {
  display: flex;
  align-items: center;
}
.about-text .section-header h2 {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.2;
}
.about-text .section-header .section-subtitle {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-weight: 400;
}
.highlight-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.highlight-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.expertise-icon {
  width: 48px;
  height: 48px;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.expertise-content h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.expertise-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.mission-box {
  padding: 2.5rem;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.8));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  margin-top: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.mission-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mission-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.mission-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}
.mission-box p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.mission-values {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.value-tag {
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.experience-card.main-stat {
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
  transform: translateY(0);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.experience-card.main-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      transparent);
  pointer-events: none;
}
.experience-card.main-stat:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(37, 99, 235, 0.4);
}
.stat-icon {
  margin-bottom: 1rem;
  opacity: 0.8;
}
.experience-number {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.experience-label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.experience-description {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}
.secondary-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.secondary-stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.secondary-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.secondary-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.secondary-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.company-info-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}
.company-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company-details h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.company-details p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}
.contact-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}
.contact-icon {
  font-size: 1.2rem;
}
.detailed-services-section {
  padding: 80px 0;
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #e2e8f0 100%);
}
.detailed-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.detailed-service-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation-fill-mode: forwards;
}
.detailed-service-card.animate {
  animation: slideInUp 0.8s ease-out forwards;
}
.detailed-service-card:nth-child(1).animate {
  animation-delay: 0.1s;
}
.detailed-service-card:nth-child(2).animate {
  animation-delay: 0.2s;
}
.detailed-service-card:nth-child(3).animate {
  animation-delay: 0.3s;
}
.detailed-service-card:nth-child(4).animate {
  animation-delay: 0.4s;
}
.detailed-service-card:nth-child(5).animate {
  animation-delay: 0.5s;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.detailed-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.detailed-services-section .section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.detailed-services-section .section-header.animate {
  opacity: 1;
  transform: translateY(0);
}
.service-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 60px;
}
.service-content h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.service-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 12px;
}
.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
}
.detail-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.3rem;
}
.detail-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}
.service-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  color: var(--secondary);
  font-weight: 600;
}
.highlight-icon {
  font-size: 1.5rem;
}
.food-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.food-category {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.category-icon {
  font-size: 1.2rem;
}
.consultation-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.area-tag {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.export-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.export-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 8px;
  font-size: 0.9rem;
  min-width: fit-content;
}
.type-icon {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.type-icon ion-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: inherit;
}
.resources-section {
  padding: 80px 0;
  background:
    linear-gradient(
      135deg,
      #f1f5f9 0%,
      #e2e8f0 100%);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.resource-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  color: var(--primary);
}
.resource-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.resource-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.resource-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-form-section {
  padding: 80px 0;
  background: #ffffff;
  color: var(--text);
}
.contact-form-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}
.contact-info-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.contact-form-header,
.modern-contact-form {
  opacity: 0;
  transform: translateY(40px);
}
.contact-form-header.animate,
.modern-contact-form.animate {
  animation: slideInUp 0.8s ease-out forwards;
}
.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.contact-form-header p {
  font-size: 1.2rem;
  color: var(--muted);
  opacity: 0.9;
}
.modern-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 0.2px;
}
.help-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.error-text {
  color: #d93025;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.35rem;
}
.form-group input.ng-invalid.ng-touched,
.form-group textarea.ng-invalid.ng-touched {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}
.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}
.submit-btn {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1rem auto 0;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.4);
}
.success-message {
  text-align: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.success-message h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.success-message p {
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0.9;
  margin-bottom: 2rem;
}
.contact-info-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.contact-info-box h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--ion-color-primary, var(--primary));
}
.contact-detail a {
  color: var(--primary);
  text-decoration: none;
}
.contact-detail a:hover {
  text-decoration: underline;
}
.contact-form-wrapper .contact-details {
  align-items: center;
}
.contact-form-wrapper .contact-detail {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 0.6rem;
}
.contact-form-wrapper .detail-icon {
  margin-bottom: 0.25rem;
}
@media (max-width:768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding-right: 14px;
  }
  .header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  .brand {
    gap: 0.75rem;
    max-width: calc(100% - 80px);
    transition: all 0.3s ease;
  }
  .logo {
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.3s ease;
  }
  .brand-info {
    min-width: 0;
  }
  .brand-title {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
  }
  .brand-subtitle {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
  }
  .lang-switcher {
    margin: 0 0.5rem 0 0;
  }
  .lang-switcher select {
    max-width: 200px;
  }
  .lang-links {
    width: 100%;
    justify-content: space-between;
  }
  .lang-links a {
    flex: 1;
    text-align: center;
  }
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(1rem + env(safe-area-inset-top, 0px)) 0 2rem;
    background:
      linear-gradient(
        135deg,
        var(--bg) 0%,
        var(--bg-secondary) 50%,
        rgba(var(--primary-rgb), 0.02) 100%);
    position: relative;
    overflow: hidden;
  }
  .footer {
    background:
      linear-gradient(
        135deg,
        var(--bg-secondary) 0%,
        rgba(var(--primary-rgb), 0.03) 50%,
        #f1f5f9 100%);
    border-top: 1px solid rgba(var(--border-rgb), 0.3);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
  }
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        circle at 30% 20%,
        rgba(var(--primary-rgb), 0.05) 0%,
        transparent 50%),
      radial-gradient(
        circle at 70% 80%,
        rgba(var(--secondary-rgb), 0.03) 0%,
        transparent 50%);
    pointer-events: none;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.5rem 0 1rem;
    position: relative;
    z-index: 2;
  }
  .footer-section {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
  }
  .footer-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  }
  .footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .footer-text {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 0;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .footer-contact strong {
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.3rem;
  }
  .footer-contact a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
  }
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links li {
    margin: 0;
  }
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--border-rgb), 0.2);
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
  }
  .footer-links a:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateX(4px);
    border-color: rgba(var(--primary-rgb), 0.3);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(var(--border-rgb), 0.2);
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin: 1rem 1rem 0;
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 2;
  }
  .footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
  }
  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .footer-bottom-links a:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
  }
  .footer-bottom-links span {
    color: var(--border);
    font-weight: 300;
  }
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        circle at 20% 80%,
        rgba(var(--secondary-rgb), 0.08) 0%,
        transparent 50%),
      radial-gradient(
        circle at 80% 20%,
        rgba(var(--primary-rgb), 0.06) 0%,
        transparent 50%);
    pointer-events: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    min-height: auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
  }
  .hero-visual {
    order: -1;
    transform: none;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-text {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }
  .hero-badge {
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }
  .hero-title {
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  .hero-description {
    animation: fadeInUp 0.8s ease-out 0.8s both;
  }
  .hero-stats {
    animation: fadeInUp 0.8s ease-out 1s both;
  }
  .hero-actions {
    animation: fadeInUp 0.8s ease-out 1.2s both;
  }
  .hero-visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 200px;
    background-image: url(/lkw.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    filter: blur(0.5px);
  }
  .hero-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  .stat {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  .stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .stat-number {
    font-size: 2rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.25rem !important;
  }
  .stat-label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    opacity: 0.8 !important;
  }
  .contact-card {
    display: none;
  }
  .hero-logo {
    display: flex;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: transparent;
    border-radius: 20px;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    animation: logoFloat 3s ease-in-out infinite, fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
  }
  @keyframes logoFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  .hero-logo-image {
    width: 80px !important;
    height: 80px !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  }
  .scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    animation: scrollBounce 2s ease-in-out infinite;
  }
  .scroll-icon {
    color: rgba(var(--primary-rgb), 0.7);
    transition: all 0.3s ease;
  }
  .scroll-indicator:hover .scroll-icon {
    color: var(--primary);
    transform: translateY(2px);
  }
  @keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }
  .hero-badge {
    background: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 2rem !important;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
  }
  .hero-description {
    font-size: clamp(1rem, 4vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 16px;
    background:
      linear-gradient(
        135deg,
        var(--secondary) 0%,
        #ff8c00 100%);
    box-shadow: 0 8px 32px rgba(var(--secondary-rgb), 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .btn-primary::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 0.5s ease;
  }
  .btn-primary:hover::before {
    left: 100%;
  }
  .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 4px 16px rgba(var(--secondary-rgb), 0.3);
  }
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .btn-secondary:active {
    transform: translateY(0);
  }
  .contact-card {
    order: -1;
    margin-bottom: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    transform: none;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .cta-text h2 {
    font-size: 2rem;
  }
  .trust-content h2 {
    font-size: 2rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }
  .trust-grid .trust-item:nth-child(5) {
    grid-column: 1;
    max-width: 100%;
    margin: 0;
  }
  .about-section {
    padding: 4rem 0;
    background:
      linear-gradient(
        135deg,
        #f8fafc 0%,
        #e2e8f0 50%,
        #f1f5f9 100%);
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 100%;
  }
  .about-text {
    order: 1;
  }
  .about-visual {
    order: 2;
  }
  .about-text .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .about-text .section-header h2 {
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .about-text .section-header .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .section-badge {
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
  }
  .badge-icon ion-icon {
    width: 18px;
    height: 18px;
  }
  .about-description {
    margin-bottom: 2rem;
  }
  .highlight-text {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.2rem 1.25rem;
    margin-bottom: 1.25rem;
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.85));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  .highlight-icon {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--ion-color-primary);
    flex-shrink: 0;
    margin-top: 0.05rem;
  }
  .highlight-icon ion-icon {
    width: 24px;
    height: 24px;
  }
  .highlight-text p {
    font-size: 1.02rem;
    line-height: 1.55;
    margin: 0;
  }
  .about-description > p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
  }
  .expertise-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .expertise-content h4,
  .expertise-content p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .expertise-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  .expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
  .expertise-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    border-radius: 14px;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
  }
  .expertise-icon ion-icon {
    width: 28px;
    height: 28px;
  }
  .expertise-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
  }
  .expertise-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
  }
  .mission-box {
    padding: 1.4rem 1.25rem;
    background:
      linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.06),
        rgba(var(--secondary-rgb), 0.04));
    border-radius: 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    text-align: center;
    margin-top: 1.5rem;
  }
  .mission-header {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .mission-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--ion-color-primary);
  }
  .mission-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--text);
  }
  .mission-box p {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 1.25rem;
  }
  .mission-values {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }
  .value-tag {
    padding: 0.6rem 1.2rem;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s ease;
  }
  .value-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.4);
  }
  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .stats-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .experience-card.main-stat {
    padding: 2rem 1.5rem;
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .stat-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stat-icon ion-icon {
    width: 32px;
    height: 32px;
    color: white;
  }
  .experience-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .experience-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .experience-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
  }
  .secondary-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .secondary-stat {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  .secondary-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  .secondary-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  .secondary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
  }
  .company-info-card {
    padding: 1.8rem 1.5rem;
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.8));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .company-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .company-logo {
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .company-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
  }
  .company-details p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
  }
  .company-contact {
    text-align: center;
  }
  .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s ease;
  }
  .contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    color: white;
  }
  .contact-icon {
    font-size: 1.2rem;
  }
  .detailed-services-section {
    padding: 4rem 0;
    background:
      linear-gradient(
        135deg,
        var(--bg) 0%,
        var(--bg-secondary) 50%,
        rgba(var(--primary-rgb), 0.02) 100%);
    position: relative;
    overflow: hidden;
  }
  .detailed-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        circle at 20% 30%,
        rgba(var(--primary-rgb), 0.05) 0%,
        transparent 50%),
      radial-gradient(
        circle at 80% 70%,
        rgba(var(--secondary-rgb), 0.03) 0%,
        transparent 50%);
    pointer-events: none;
  }
  .detailed-services-section .section-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
  }
  .detailed-services-section .section-header h2 {
    margin-bottom: 1rem;
  }
  .detailed-services-section .section-header p {
    font-size: 1.1rem;
    color: var(--muted);
    opacity: 0.9;
  }
  .detailed-services-grid {
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
  }
  .detailed-service-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .detailed-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background:
      linear-gradient(
        90deg,
        #000000 50%,
        var(--secondary) 50%);
    border-radius: 20px 20px 0 0;
  }
  .detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    background: rgba(255, 255, 255, 0.95);
  }
  .service-number {
    font-size: 2.5rem;
    font-weight: 800;
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
  }
  .service-number::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background:
      linear-gradient(
        90deg,
        #000000 50%,
        var(--secondary) 50%);
    border-radius: 2px;
  }
  .service-content h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
  }
  .service-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
  }
  .service-details {
    gap: 1rem;
  }
  .detail-item {
    padding: 1.2rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
  }
  .detail-item:hover {
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateX(4px);
  }
  .detail-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .detail-item strong {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .detail-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
  }
  .food-categories {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
  .food-category {
    padding: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
  }
  .food-category:hover {
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateY(-2px);
  }
  .category-icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
  }
  .consultation-areas {
    gap: 0.8rem;
    margin-top: 1rem;
    justify-content: center;
  }
  .area-tag {
    padding: 0.6rem 1.2rem;
    background:
      linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s ease;
  }
  .area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.4);
  }
  .export-types {
    gap: 0.6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .export-type {
    padding: 0.6rem 0.8rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 0.6rem);
    justify-content: center;
  }
  .export-type:hover {
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateY(-2px);
  }
  .type-icon {
    font-size: 1.3rem;
    margin-right: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  .type-icon ion-icon {
    width: 1.3rem;
    height: 1.3rem;
    color: inherit;
  }
  .service-highlight {
    padding: 1.2rem;
    background:
      linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.1),
        rgba(var(--secondary-rgb), 0.05));
    border-radius: 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    margin-top: 1rem;
  }
  .highlight-icon {
    font-size: 1.8rem;
    color: var(--primary);
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .modern-contact-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  .contact-form-header h2 {
    font-size: 2rem;
  }
  .contact-details {
    text-align: center;
    font-style: normal;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cols {
    grid-template-columns: 1fr;
  }
}
@media (min-width:600px) and (max-width:768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-actions {
    gap: 0.75rem;
  }
}
@media (max-width:480px) {
  .container {
    padding: 0 1rem;
  }
  .brand-title {
    font-size: 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .cta-text h2 {
    font-size: 1.75rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  section {
    padding: 2rem 0;
  }
  .detailed-services-section {
    padding: 3rem 0;
  }
  .detailed-services-section .section-header h2 {
    line-height: 1.2;
  }
  .detailed-services-section .section-header p {
    font-size: 1rem;
  }
  .detailed-services-grid {
    gap: 1.2rem;
  }
  .detailed-service-card {
    padding: 1.5rem;
    gap: 1.2rem;
    border-radius: 16px;
  }
  .service-number {
    font-size: 2rem;
    height: 50px;
  }
  .service-number::after {
    width: 30px;
    height: 2px;
    background:
      linear-gradient(
        90deg,
        #000000 50%,
        var(--secondary) 50%);
  }
  .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .detail-item {
    padding: 1rem;
    border-radius: 12px;
  }
  .detail-icon {
    font-size: 1.5rem;
  }
  .detail-item strong {
    font-size: 1rem;
  }
  .detail-item p {
    font-size: 0.9rem;
  }
  .food-category {
    padding: 0.8rem;
    border-radius: 10px;
  }
  .category-icon {
    font-size: 1.3rem;
    margin-right: 0.6rem;
  }
  .area-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
  }
  .export-type {
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    flex: 1 1 100%;
  }
  .type-icon {
    font-size: 1.1rem;
    margin-right: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  .type-icon ion-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: inherit;
  }
  .service-highlight {
    padding: 1rem;
    border-radius: 12px;
  }
  .highlight-icon {
    font-size: 1.5rem;
  }
  .footer-content {
    gap: 1rem;
    padding: 1.2rem 0 0.8rem;
  }
  .footer-section {
    padding: 0.8rem;
    border-radius: 10px;
  }
  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  .footer-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .footer-contact p {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
  .footer-contact a {
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
  }
  .footer-links a {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .footer-bottom {
    padding: 0.8rem 0;
    margin: 0.8rem 0.5rem 0;
    gap: 0.6rem;
  }
  .footer-bottom p {
    font-size: 0.75rem;
  }
  .footer-bottom-links {
    gap: 0.8rem;
  }
  .footer-bottom-links a {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
}
.card-content {
  text-align: left;
}
.card-content h3,
.card-content p,
.card-content .contact-details,
.card-content .availability {
  text-align: left;
}
.card-content .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.card-content .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.card-content .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.contact-form-wrapper .card-content .contact-details {
  align-items: flex-start;
  text-align: left;
}
.contact-form-wrapper .card-content .contact-item {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.card-content .contact-details strong {
  text-align: left;
}
.card-content .contact-item .contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-content .contact-item .contact-details > * {
  text-align: left;
}
.card-content .contact-item a {
  text-align: left;
}
.card-content .contact-item .address-line {
  text-align: left;
}
.card-content .contact-item .availability {
  text-align: left;
}
@media (max-width: 768px) {
  .card-content {
    text-align: left;
  }
  .card-content .contact-info {
    align-items: flex-start;
  }
  .card-content .contact-item {
    flex-direction: row;
    align-items: flex-start;
  }
  .card-content .contact-details,
  .card-content .availability {
    text-align: left;
  }
}
.card-content .contact-details {
  flex: 1;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
