/* ==========================================================================
   REFSOL INTERNATIONAL - Premium Corporate Light Theme
   Palette: Refsol Blue (#026fa5), Refsol Red (#ec1c24), Refsol Green (#4cb96b)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Refsol Brand Color Tokens */
  --brand-blue: #026fa5;
  --brand-blue-dark: #014d73;
  --brand-blue-light: #e6f4fa;
  --brand-blue-border: rgba(2, 111, 165, 0.2);

  --brand-red: #ec1c24;
  --brand-red-dark: #b50e14;
  --brand-red-light: #fde8e9;

  --brand-green: #4cb96b;
  --brand-green-dark: #33884b;
  --brand-green-light: #eaf7ed;

  /* Surfaces & Backgrounds */
  --bg-deep: #f8fafc;
  --bg-main: #ffffff;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --bg-glass-nav: rgba(255, 255, 255, 0.95);

  --accent-cyan: #026fa5; /* Backwards compatibility */
  --accent-gradient: linear-gradient(135deg, #026fa5 0%, #014d73 100%);
  --accent-gradient-red: linear-gradient(135deg, #ec1c24 0%, #b50e14 100%);
  --accent-gradient-green: linear-gradient(135deg, #4cb96b 0%, #33884b 100%);

  /* Typography */
  --text-main: #334155;
  --text-muted: #64748b;
  --text-bright: #0f172a;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-subtle: #e2e8f0;
  --border-glow: #026fa5;

  --shadow-card: 0 10px 25px -5px rgba(2, 111, 165, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 35px -10px rgba(2, 111, 165, 0.16), 0 10px 15px -5px rgba(0, 0, 0, 0.05);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container-width: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(2, 111, 165, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 75%, rgba(236, 28, 36, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(76, 185, 107, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Background Particle Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-bright);
  font-weight: 700;
  line-height: 1.25;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-red {
  background: var(--accent-gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--brand-blue-dark);
}

/* Top Bar */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info-item svg, .top-info-item i {
  color: var(--brand-blue);
}

.top-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-tag {
  background: var(--brand-blue-light);
  border: 1px solid var(--brand-blue-border);
  color: var(--brand-blue);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-tag.red {
  background: var(--brand-red-light);
  border-color: rgba(236, 28, 36, 0.2);
  color: var(--brand-red);
}

.badge-tag.green {
  background: var(--brand-green-light);
  border-color: rgba(76, 185, 107, 0.3);
  color: var(--brand-green-dark);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(2, 111, 165, 0.08);
  background: #ffffff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 54px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-symbol {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(2, 111, 165, 0.3);
  position: relative;
}

.logo-symbol::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--brand-blue);
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  padding-left: 1.5rem;
}

.dropdown-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(2, 111, 165, 0.3);
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 111, 165, 0.4);
  color: #fff;
}

.btn-red {
  background: var(--brand-red);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(236, 28, 36, 0.3);
}

.btn-red:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 28, 36, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
}

.btn-outline:hover {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(2, 111, 165, 0.2);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--brand-blue);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Cards System (Clean Corporate Light) */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.glass-card:hover {
  border-color: rgba(2, 111, 165, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Card Image & Page Feature Visuals */
.card-image-wrap {
  width: 100%;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg-deep);
  position: relative;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.glass-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.hero-image-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.feature-section-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-normal);
  max-height: 450px;
}

.feature-section-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Hero Section - Full Width Background */
.hero-section {
  padding: 6rem 0 7rem 0;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(1, 30, 50, 0.80), rgba(1, 40, 65, 0.86)), url('../images/pages/home-hero-banner.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-section .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-section .btn-outline:hover {
  background: #ffffff;
  color: var(--brand-blue);
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orb {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 111, 165, 0.12) 0%, rgba(76, 185, 107, 0.08) 70%, transparent 100%);
  border: 2px solid rgba(2, 111, 165, 0.15);
  box-shadow: 0 10px 40px rgba(2, 111, 165, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatOrb 6s ease-in-out infinite;
  position: relative;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

.floating-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 5;
}

.floating-badge div div:first-child {
  color: var(--text-bright) !important;
}

.badge-1 { top: 10%; left: -20px; animation: floatBadge 5s ease-in-out infinite; }
.badge-2 { bottom: 15%; right: -20px; animation: floatBadge 7s ease-in-out infinite reverse; }
.badge-3 { bottom: -10px; left: 10%; animation: floatBadge 6s ease-in-out 1s infinite; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Feature Quick Bar */
.quick-features-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 0;
  margin-bottom: 4rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.quick-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.quick-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.quick-feature-item:hover {
  background: var(--brand-blue-light);
  border-color: var(--brand-blue);
}

.quick-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quick-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
}

.quick-feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Page Banner */
.page-banner {
  padding: 5rem 0;
  background: linear-gradient(rgba(1, 30, 50, 0.78), rgba(1, 40, 65, 0.85)), url('../images/pages/home-hero-banner.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  color: #ffffff;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.breadcrumb, .breadcrumb a, .breadcrumb span {
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--brand-blue);
}

.breadcrumb a:hover {
  color: var(--brand-blue-dark);
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Timeline Component */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-red) 50%, var(--brand-green) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 3rem;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 3rem;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 1.5rem;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px #ffffff, 0 4px 10px rgba(0,0,0,0.15);
  z-index: 3;
}

.timeline-item:nth-child(2) .timeline-dot { background: var(--brand-red); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--brand-green); }

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -10px;
}

.timeline-year {
  display: inline-block;
  background: var(--brand-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

/* Tabs System */
.tabs-container {
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(2, 111, 165, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--brand-red-light);
  color: var(--brand-red);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(2, 111, 165, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Accreditations Bar */
.accreditations-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.badge-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.accreditation-item {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.accreditation-item:hover {
  border-color: var(--brand-blue);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.accreditation-icon {
  font-size: 1.5rem;
  color: var(--brand-blue);
}

.accreditation-text {
  display: flex;
  flex-direction: column;
}

.accreditation-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
}

.accreditation-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Marquee / Clients & Partners */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 2rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
  min-width: 100%;
  animation: scrollMarquee 25s linear infinite;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.partner-logo-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-blue);
  white-space: nowrap;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.partner-logo-card:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: #01283c;
  color: #f1f5f9;
  border-top: 3px solid var(--brand-red);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.site-footer h4, .site-footer .logo-title {
  color: #ffffff;
}

.site-footer p, .site-footer .footer-links a {
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--brand-red);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0.4rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background: var(--brand-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #94a3b8;
}
.footer-bottom a:hover {
  color: #ffffff;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #ffffff;
  border: 1px solid var(--brand-green);
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--text-bright);
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideToast 0.3s ease-out;
}

@keyframes slideToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Breakdown */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem auto; }
  .hero-actions { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-item.dropdown:hover .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }
  .hero-title { font-size: 2.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; margin-left: 0 !important; }
  .timeline-dot { left: 10px !important; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* RFQ Feature Toggle (Temporarily disabled - to re-enable, remove or comment out display: none) */
[data-open-modal="rfq-modal"],
li:has([data-open-modal="rfq-modal"]),
#rfq-modal {
  display: none !important;
}
