/* 
 * MV² Engineering Solutions - Main Stylesheet
 * Custom CSS for modern, high-performance static website.
 * Clean, organized, and responsive design.
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Core Design System */
:root {
  --primary: hsl(222, 47%, 11%);
  /* Deep Navy */
  --primary-foreground: hsl(210, 40%, 98%);
  /* Light Gray-Blue */
  --accent: hsl(217, 91%, 60%);
  /* Vibrant Accent Blue */
  --accent-hover: hsl(217, 91%, 50%);
  /* Darker Accent Blue */
  --background: hsl(210, 33%, 99%);
  /* Base light blue-gray background */
  --foreground: hsl(222, 47%, 11%);
  /* Charcoal main text */
  --card: #ffffff;
  /* Pure white cards */
  --border: hsl(214, 32%, 91%);
  /* Light gray border */
  --muted: hsl(210, 40%, 96.1%);
  /* Very light gray for panels */
  --muted-foreground: hsl(215.4, 16.3%, 46.9%);
  /* Slate gray for secondary text */

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

/* Base reset rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-h: 100vh;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.btn-dark-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-dark-outline:hover {
  background-color: var(--muted);
  border-color: var(--muted-foreground);
}

/* Section Templates */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Header Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
}

header.site-header.scrolled {
  background-color: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
}

header.site-header:not(.scrolled) {
  background-color: transparent;
  padding: 1.5rem 0;
}

body.contact-page header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  background-color: rgba(11, 15, 25, 0.95);
}

header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 2.75rem;
  width: auto;
}

header nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

header nav.desktop-nav>a,
header nav.desktop-nav .dropdown-trigger {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.925rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

header nav.desktop-nav>a:hover,
header nav.desktop-nav .dropdown-trigger:hover {
  color: #ffffff;
}

header nav.desktop-nav a.active-link {
  color: var(--accent);
}

/* Header Dropdown Menu */
.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  padding: 1rem;
  width: 480px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--accent);
}

.dropdown-menu a.active-sublink {
  background-color: rgba(37, 99, 235, 0.05);
  color: var(--accent);
  font-weight: 600;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 15, 25, 0.98);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-panel.open {
  transform: translateY(0);
}

.mobile-nav-panel a,
.mobile-nav-panel .mobile-dropdown-header {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.mobile-nav-panel .mobile-dropdown-links {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.mobile-nav-panel .mobile-dropdown-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border: none;
}

.mobile-nav-panel .mobile-dropdown-links a:hover,
.mobile-nav-panel .mobile-dropdown-links a.active-link {
  color: var(--accent);
}

.mobile-nav-panel .btn {
  margin-top: 2rem;
  width: 100%;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  header nav.desktop-nav {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Footer Section */
footer.site-footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.9rem;
}

footer.site-footer h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

footer.site-footer .footer-logo img {
  height: 3.5rem;
  width: auto;
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

footer.site-footer .brand-col p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

footer.site-footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer.site-footer .contact-info a,
footer.site-footer .contact-info div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

footer.site-footer .contact-info a:hover {
  color: var(--accent);
}

footer.site-footer .contact-info svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

footer.site-footer ul.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer.site-footer ul.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

footer.site-footer ul.footer-links a:hover {
  color: var(--accent);
}

footer.site-footer .hq-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

footer.site-footer .hq-card .meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

footer.site-footer .hq-card .city {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

footer.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  footer.site-footer .footer-bottom {
    flex-direction: row;
  }
}

/* Hero Section (Home) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(11, 15, 25, 0.8);
  mix-blend-mode: multiply;
  z-index: 2;
}

.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.6) 60%, var(--background) 100%);
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease;
}

.hero .hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 span.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 2.5rem;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .hero p.hero-desc {
    font-size: 1.35rem;
  }
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* Stats Bar */
.stats-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 0;
  text-align: center;
}

.stats-bar .stat-item {
  padding: 0 1rem;
}

.stats-bar .stat-item:not(:first-child) {
  border-left: 1px solid var(--border);
}

.stats-bar .stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stats-bar .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .stats-bar .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header .section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* Services Grid (Home & Consulting) */
.services-section {
  background-color: rgba(241, 245, 249, 0.4);
}

.services-grid .service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.services-grid .service-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.services-grid .service-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(11, 15, 25, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.services-grid .service-card:hover .icon-box {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.services-grid .service-card .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
}

.services-grid .service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.services-grid .service-card:hover h4 {
  color: var(--accent);
}

.services-grid .service-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.services-grid .service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.services-grid .service-card .learn-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.services-grid .service-card:hover .learn-more svg {
  transform: translateX(3px);
}

/* Industries & Why Choose Us Section */
.why-choose-us-section {
  background-color: #ffffff;
}

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.split-layout>div {
  flex: 1;
}

@media (min-width: 992px) {
  .split-layout {
    flex-direction: row;
    align-items: center;
  }
}

.split-layout h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.split-layout p.lead-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industries-tags span {
  padding: 0.5rem 1.25rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
}

.why-card {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 15, 25, 0.15);
}

.why-card .bg-icon {
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.why-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.why-card .reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .why-card .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card .reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-card .reason-item svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-card .reason-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Service CTA Banner */
.cta-banner {
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 2.75rem;
  }
}

/* Page Hero Template */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(11, 15, 25, 0.7);
  mix-blend-mode: multiply;
  z-index: 2;
}

.page-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.8) 0%, rgba(11, 15, 25, 0.5) 50%, var(--background) 100%);
  z-index: 3;
}

.page-hero .container {
  position: relative;
  z-index: 4;
  max-width: 800px;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-hero p.subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }

  .page-hero p.subtitle {
    font-size: 1.25rem;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--muted-foreground);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
}

.breadcrumbs span.current {
  color: var(--foreground);
  font-weight: 600;
}

/* Consulting Layout (Sidebar & Main content) */
.consulting-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .consulting-layout {
    grid-template-columns: 3fr 1fr;
  }
}

.consulting-content {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.consulting-content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.consulting-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1.25rem 0;
  color: var(--primary);
}

.consulting-content p {
  margin-bottom: 1.5rem;
}

.consulting-content ul.bullet-list {
  margin: 1.5rem 0 2rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.consulting-content ul.bullet-list li {
  margin-bottom: 0.5rem;
}

.consulting-content ul.bullet-list li::marker {
  color: var(--accent);
}

.consulting-sidebar {
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 7rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.sticky-sidebar h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.sidebar-menu a:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

.sidebar-menu a.active {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-weight: 600;
}

/* Detailed Grid list (Architectural & Structural Subpages) */
.subpage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 576px) {
  .subpage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.subpage-grid .grid-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.subpage-grid .grid-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.subpage-grid .grid-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Compliance Card (Structural Page) */
.compliance-card {
  background-color: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2rem 0;
}

.compliance-card h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.compliance-card p {
  font-size: 1rem;
  margin-bottom: 1rem !important;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.compliance-grid div {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Survey Page Custom Grid */
.survey-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 576px) {
  .survey-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.survey-cards .survey-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--card);
}

.survey-cards .survey-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.survey-cards .survey-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.survey-cards .survey-card ul li {
  font-size: 0.925rem;
  margin-bottom: 0.25rem;
}

.survey-cards .survey-card ul li::marker {
  color: var(--accent);
}

/* BIM & Infrastructure Page Models styling */
.bim-image-wrapper {
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.bim-image-wrapper img {
  width: 100%;
}

.inf-delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 576px) {
  .inf-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.inf-delivery-grid .delivery-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--foreground);
}

.inf-delivery-grid .delivery-item svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

/* Staff Augmentation Styles */
.roles-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem 0;
}

.roles-tags span {
  padding: 0.5rem 1rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.offshore-banner {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
}

.offshore-banner h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.offshore-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.offshore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.5rem;
}

@media (min-width: 576px) {
  .offshore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .offshore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offshore-grid div {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

/* About Us Page Custom Styles */
.about-lead-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-lead-section p {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vm-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.vm-card.light {
  background-color: var(--card);
  border: 1px solid var(--border);
}

.vm-card.dark {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.vm-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vm-card.light .icon-box {
  background-color: rgba(11, 15, 25, 0.05);
  color: var(--primary);
}

.vm-card.dark .icon-box {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.vm-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vm-card.dark h3 {
  color: #ffffff;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.vm-card.light p {
  color: var(--muted-foreground);
}

.vm-card.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.vm-card .bg-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 6rem;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.vm-card.dark .bg-icon {
  color: rgba(255, 255, 255, 0.02);
}

/* Leadership section */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.leader-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  background-color: var(--card);
}

.leader-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.leader-card .leader-title {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.leader-card .leader-meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.leader-card blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Why choose cards Grid */
.why-client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .why-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-client-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.why-client-card svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.why-client-card span {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
}

/* Construction Page Segment Styling */
.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.segment-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.segment-card .icon-box {
  width: 3rem;
  height: 3rem;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.segment-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.segment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.segment-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.segment-card .meta-box {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.segment-card .meta-box .meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.segment-card .meta-box .meta-desc {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* Turnkey services */
.turnkey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.turnkey-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.turnkey-step .step-number {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.turnkey-step span {
  font-weight: 500;
  color: var(--foreground);
}

.why-client-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.why-client-primary h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.why-client-primary ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-client-primary ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-client-primary ul li svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-client-primary ul li span {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Training Page Components */
.training-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .training-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.training-type-card {
  padding: 2.25rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.training-type-card.featured {
  background-color: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.training-type-card .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.training-type-card:not(.featured) .icon-box {
  background-color: rgba(11, 15, 25, 0.05);
  color: var(--primary);
}

.training-type-card.featured .icon-box {
  background-color: rgba(37, 99, 235, 0.15);
  color: var(--accent);
}

.training-type-card .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
}

.training-type-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.training-type-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* Training Tabs */
.tabs-container {
  max-width: 800px;
  margin: 0 auto;
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .tabs-nav {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tab-trigger {
  border: none;
  background: none;
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.tab-trigger.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
}

.tab-content-panel {
  display: none;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.tab-content-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.tab-content-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.tab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tab-tags span {
  padding: 0.5rem 1.25rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Student Benefits List */
.benefits-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-split {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-split h3 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefits-split h3 svg {
  color: var(--accent);
  width: 2rem;
  height: 2rem;
}

.benefits-split ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-split ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
}

.benefits-split ul li svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Corporate training Solutions container */
.corp-training-card {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.corp-training-card svg.lead-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.corp-training-card h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.corp-training-card p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.corp-training-card .corp-grids {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
}

@media (min-width: 576px) {
  .corp-training-card .corp-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

.corp-training-card .corp-panel {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.corp-training-card .corp-panel h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.corp-training-card .corp-panel ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.corp-training-card .corp-panel ul li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Page Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-link {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-card-link:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-card-link .icon-box {
  width: 3rem;
  height: 3rem;
  background-color: rgba(11, 15, 25, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card-link:hover .icon-box {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.contact-card-link .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card-link .meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-card-link .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
}

.hours-card {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hours-card h4 {
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hours-card h4 svg {
  color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row .day {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hours-row .time {
  color: rgba(255, 255, 255, 0.8);
}

.hours-row.closed .day,
.hours-row.closed .time {
  color: rgba(255, 255, 255, 0.4);
}

/* Contact Form Styling */
.form-panel {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .form-group-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--background);
  color: var(--foreground);
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background-color: #ffffff;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25em;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: none;
}

.form-panel button[type="submit"] {
  width: 100%;
}

/* Form Success screen */
.form-success-wrapper {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success-wrapper .success-icon-circle {
  width: 5rem;
  height: 5rem;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.form-success-wrapper .success-icon-circle svg {
  width: 2.5rem;
  height: 2.5rem;
}

.form-success-wrapper h4 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.form-success-wrapper p {
  color: var(--muted-foreground);
  max-width: 400px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

/* Animations and helpers */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}