/* ═══════════════════════════════════════════════════════════════
   SYNERGIE SYSTEMS - Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --primary: #0f2b5b;
  --primary-light: #1a4080;
  --secondary: #e8a838;
  --secondary-light: #f0be5e;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --dark: #0a1628;
  --gray-custom: #64748b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-700: #374151;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  overflow-x: hidden;
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ─── Typography ─── */
.font-playfair {
  font-family: 'Playfair Display', serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* ─── Utility Classes ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-custom); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark); }

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient {
  background: linear-gradient(135deg, #0a1628 0%, #0f2b5b 40%, #1a4080 70%, #0f2b5b 100%);
}

.section-gradient {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  color: var(--white);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(232, 168, 56, 0.3);
}

.btn-secondary {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: var(--white);
}

.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(15, 43, 91, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Glass Effect ─── */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-dark {
  background: rgba(15, 43, 91, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 168, 56, 0.3);
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

/* ─── Top Bar ─── */
.top-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .top-bar { font-size: 0.875rem; }
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.top-bar-item svg {
  color: var(--secondary);
  width: 14px;
  height: 14px;
}

.top-bar a:hover {
  color: var(--white);
}

/* ─── Main Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(15, 43, 91, 0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

@media (min-width: 768px) {
  .navbar-content { height: 5rem; }
}

/* ─── Logo ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .logo-icon { width: 3rem; height: 3rem; }
}

.logo:hover .logo-icon {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.logo-icon span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
  .logo-icon span { font-size: 1.25rem; }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .logo-text .name { font-size: 1.25rem; }
}

.logo-text .tagline {
  font-size: 0.625rem;
  color: var(--gray-custom);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: -2px;
}

@media (min-width: 768px) {
  .logo-text .tagline { font-size: 0.75rem; }
}

/* ─── Desktop Nav Links ─── */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

/* ─── Mobile Menu Toggle ─── */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--primary);
  transition: background 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(15, 43, 91, 0.05);
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  background: rgba(15, 43, 91, 0.05);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.mobile-menu-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.875rem;
  color: var(--gray-custom);
}

.mobile-menu-contact > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mobile-menu-contact svg {
  color: var(--secondary);
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE BANNER
   ═══════════════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f2b5b 40%, #1a4080 70%, #0f2b5b 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-banner { padding: 7rem 0 8rem; }
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-banner .blob-1 {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 18rem;
  height: 18rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.page-banner .blob-2 {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 20rem;
  height: 20rem;
  background: rgba(232, 168, 56, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.3s;
}

.page-banner .content {
  position: relative;
  z-index: 10;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .current {
  color: var(--secondary);
}

.page-banner h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
  animation: fadeInUp 0.8s ease-out;
}

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

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

.page-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION (Home Page)
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg .blob-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(37, 99, 235, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-bg .blob-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(232, 168, 56, 0.1);
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero-bg .blob-3 {
  top: 50%;
  left: 33%;
  width: 16rem;
  height: 16rem;
  background: rgba(26, 64, 128, 0.2);
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero-bg .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .hero-content { padding: 0; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

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

.hero h1 .sub {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65em;
  margin-top: 0.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

@media (min-width: 640px) {
  .hero-stat { text-align: left; }
}

.hero-stat svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-stat svg { margin-left: 0; }
}

.hero-stat .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 768px) {
  .hero-stat .number { font-size: 1.875rem; }
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .hero-stat .label { font-size: 0.875rem; }
}

/* Hero Image Side */
.hero-image-container {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-image-container { display: block; }
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, rgba(232, 168, 56, 0.2), rgba(37, 99, 235, 0.2));
  border-radius: 1.5rem;
  filter: blur(30px);
}

.hero-image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: rgba(15, 43, 91, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  left: -2rem;
  top: 5rem;
}

.hero-floating-card.card-2 {
  right: -1.5rem;
  bottom: 6rem;
  animation-delay: 0.3s;
}

.hero-floating-card .inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-card .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card .icon-box.green {
  background: linear-gradient(to bottom right, #4ade80, #10b981);
}

.hero-floating-card .icon-box.gold {
  background: linear-gradient(to bottom right, var(--secondary), var(--secondary-light));
}

.hero-floating-card .icon-box svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--white);
}

.hero-floating-card .number {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.hero-floating-card .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  cursor: pointer;
}

.scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.scroll-indicator svg {
  animation: bounce 1s infinite;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(15, 43, 91, 0.05);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-badge .dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--secondary);
  border-radius: 50%;
}

.section-title {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  color: var(--gray-custom);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════════════════════════ */
.grid-2 {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

/* ═══════════════════════════════════════════════════════════════
   VALUE / PERK CARDS
   ═══════════════════════════════════════════════════════════════ */
.value-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 168, 56, 0.3);
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.02), rgba(232, 168, 56, 0.05));
}

.value-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.1), rgba(37, 99, 235, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.value-card:hover .icon-box {
  background: linear-gradient(to bottom right, rgba(232, 168, 56, 0.2), rgba(240, 190, 94, 0.2));
}

.value-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.value-card:hover .icon-box svg {
  color: var(--secondary);
}

.value-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-custom);
  line-height: 1.6;
}

/* Centered Perk Cards */
.perk-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--gray-50), var(--white));
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.perk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.perk-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.1), rgba(37, 99, 235, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.perk-card .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.perk-card h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.perk-card p {
  font-size: 0.875rem;
  color: var(--gray-custom);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-card .color-bar {
  height: 0.5rem;
}

.service-card .content {
  padding: 1.5rem;
}

.service-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.1), rgba(37, 99, 235, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.service-card:hover .icon-box {
  background: linear-gradient(to bottom right, rgba(232, 168, 56, 0.2), rgba(240, 190, 94, 0.2));
}

.service-card .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card:hover .icon-box svg {
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-custom);
  line-height: 1.6;
}

/* Color variants */
.bg-blue { background: linear-gradient(to right, #3b82f6, #1d4ed8); }
.bg-emerald { background: linear-gradient(to right, #10b981, #047857); }
.bg-violet { background: linear-gradient(to right, #8b5cf6, #6d28d9); }
.bg-amber { background: linear-gradient(to right, #f59e0b, #d97706); }
.bg-rose { background: linear-gradient(to right, #f43f5e, #e11d48); }
.bg-cyan { background: linear-gradient(to right, #06b6d4, #0891b2); }

/* ═══════════════════════════════════════════════════════════════
   SERVICE DETAIL SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.service-detail {
  padding: 5rem 0 6rem;
}

@media (min-width: 768px) {
  .service-detail { padding: 6rem 0; }
}

.service-detail .grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-detail .grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.service-detail .image-wrapper {
  position: relative;
}

.service-detail .image-glow {
  position: absolute;
  inset: -0.75rem;
  border-radius: 1.5rem;
  opacity: 0.1;
}

.service-detail img {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-detail .image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0.1;
}

.service-detail .tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-detail h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
  .service-detail h2 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .service-detail h2 { font-size: 2.25rem; }
}

.service-detail .desc {
  color: var(--gray-custom);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-detail .features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .service-detail .features { grid-template-columns: 1fr 1fr; }
}

.service-detail .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.service-detail .feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-detail .feature-item span {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Color classes for taglines */
.tagline-blue { background: #eff6ff; color: #2563eb; }
.tagline-emerald { background: #ecfdf5; color: #059669; }
.tagline-violet { background: #f5f3ff; color: #7c3aed; }
.tagline-amber { background: #fffbeb; color: #d97706; }
.tagline-rose { background: #fff1f2; color: #e11d48; }
.tagline-cyan { background: #ecfeff; color: #0891b2; }

.text-blue { color: #2563eb; }
.text-emerald { color: #059669; }
.text-violet { color: #7c3aed; }
.text-amber { color: #d97706; }
.text-rose { color: #e11d48; }
.text-cyan { color: #0891b2; }

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.stats-bar .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.stats-bar .stat {
  text-align: center;
}

.stats-bar .stat svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
  margin: 0 auto 0.75rem;
}

.stats-bar .stat .number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stats-bar .stat .number { font-size: 2.25rem; }
}

.stats-bar .stat .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   STAT CARDS (smaller)
   ═══════════════════════════════════════════════════════════════ */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.03), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(15, 43, 91, 0.05);
}

.stat-card .number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-card .number { font-size: 2.25rem; }
}

.stat-card .label {
  font-size: 0.875rem;
  color: var(--gray-custom);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonial-carousel {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(to bottom right, var(--primary), var(--primary-light));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonial-card { padding: 3rem; }
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  opacity: 0.1;
}

.testimonial-card .quote-icon svg {
  width: 80px;
  height: 80px;
  color: var(--white);
}

.testimonial-card .blob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background: rgba(232, 168, 56, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonial-card .inner {
  position: relative;
  z-index: 10;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--secondary);
  fill: var(--secondary);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  min-height: 80px;
}

@media (min-width: 768px) {
  .testimonial-text { font-size: 1.25rem; }
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-author .name {
  color: var(--white);
  font-weight: 600;
}

.testimonial-author .role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.testimonial-nav {
  display: flex;
  gap: 0.5rem;
}

.testimonial-nav button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s ease;
}

.testimonial-nav button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dots button {
  height: 0.375rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  width: 2rem;
  background: var(--secondary);
}

.testimonial-dots button:not(.active) {
  width: 0.375rem;
  background: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.timeline {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
  display: none;
}

@media (min-width: 640px) {
  .timeline::before { display: block; }
}

@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
}

@media (min-width: 640px) {
  .timeline-item { padding-left: 4rem; }
}

@media (min-width: 768px) {
  .timeline-item {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding-left: 0;
  }
  
  .timeline-item:nth-child(odd) { flex-direction: row; }
  .timeline-item:nth-child(even) { flex-direction: row-reverse; }
}

.timeline-dot {
  display: none;
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@media (min-width: 640px) {
  .timeline-dot {
    display: block;
    left: 1.5rem;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .timeline-dot { left: 50%; }
}

.timeline-content {
  flex: 1;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content { text-align: right; padding-right: 3rem; }
  .timeline-item:nth-child(even) .timeline-content { text-align: left; padding-left: 3rem; }
}

.timeline-content .year {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(232, 168, 56, 0.1);
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: var(--gray-custom);
  font-size: 0.875rem;
  line-height: 1.6;
}

.timeline-spacer {
  flex: 1;
  display: none;
}

@media (min-width: 768px) {
  .timeline-spacer { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   JOB LISTINGS
   ═══════════════════════════════════════════════════════════════ */
.job-search {
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.job-search-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .job-search-inner { flex-direction: row; }
}

.job-search .search-input {
  position: relative;
  flex: 1;
}

.job-search .search-input svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  width: 1.25rem;
  height: 1.25rem;
}

.job-search .search-input input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  outline: none;
  font-size: 1rem;
  color: var(--gray-700);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.job-search .search-input input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 43, 91, 0.1);
}

.job-search .filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job-search .filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.job-search .filter-btn.active {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(15, 43, 91, 0.2);
}

.job-search .filter-btn:not(.active) {
  background: var(--white);
  color: #4b5563;
  border: 1px solid var(--gray-200);
}

.job-search .filter-btn:not(.active):hover {
  background: var(--gray-50);
}

/* Job Cards */
.job-listings {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(15, 43, 91, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.job-card-header {
  padding: 1.5rem;
  cursor: pointer;
}

.job-card-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .job-card-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-card-info h3 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job-card-info .type-badge {
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.job-card-info .type-badge.full-time {
  background: #ecfdf5;
  color: #047857;
}

.job-card-info .type-badge.contract {
  background: #eff6ff;
  color: #1d4ed8;
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-custom);
}

.job-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-card-meta svg {
  width: 0.875rem;
  height: 0.875rem;
}

.job-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.job-card-actions .toggle-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--gray-custom);
  transition: background 0.3s ease;
}

.job-card-actions .toggle-btn:hover {
  background: var(--gray-100);
}

.job-card-actions .toggle-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.job-card-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
  display: none;
}

.job-card-body.open {
  display: block;
}

.job-card-body p {
  color: var(--gray-custom);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.job-card-body .apply-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  transition: color 0.3s ease;
}

.job-card-body .apply-link:hover {
  color: var(--secondary-light);
}

.job-card-body .apply-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* No Jobs */
.no-jobs {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray-custom);
}

.no-jobs svg {
  width: 3.5rem;
  height: 3.5rem;
  color: #d1d5db;
  margin: 0 auto 1rem;
}

.no-jobs p {
  font-size: 1.125rem;
  font-weight: 500;
}

.no-jobs small {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT CARDS
   ═══════════════════════════════════════════════════════════════ */
.contact-cards {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 20;
}

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

@media (min-width: 1024px) {
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
}

.contact-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.contact-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

.contact-card .label {
  color: var(--gray-custom);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-card .value {
  color: var(--primary);
  font-weight: 600;
}

.contact-card .sub {
  color: var(--gray-custom);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-section { grid-template-columns: 3fr 2fr; gap: 3rem; }
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .contact-form-wrapper { padding: 2.5rem; }
}

.contact-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-form-header .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-header .icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

.contact-form-header h3 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

.contact-form-header p {
  color: var(--gray-custom);
  font-size: 0.875rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  outline: none;
  font-size: 1rem;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 43, 91, 0.1);
}

.form-group textarea {
  resize: none;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
}

.contact-form .btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 5rem 0;
}

.form-success .icon-box {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.6s ease-out;
}

.form-success .icon-box svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #22c55e;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--gray-custom);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-sidebar h3 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.contact-sidebar .map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 18rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-sidebar .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-sidebar .quick-reach {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
}

.contact-sidebar .quick-reach h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-sidebar .quick-reach-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.contact-sidebar .quick-reach-item:hover {
  color: var(--primary);
}

.contact-sidebar .quick-reach-item .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(232, 168, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-sidebar .quick-reach-item .icon-box svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--secondary);
}

.contact-sidebar .quick-reach-item .value {
  font-weight: 500;
}

.contact-sidebar .quick-reach-item .sub {
  font-size: 0.75rem;
  color: var(--gray-custom);
}

.contact-sidebar .urgent-box {
  background: linear-gradient(to bottom right, var(--primary), var(--primary-light));
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--white);
}

.contact-sidebar .urgent-box h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-sidebar .urgent-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-sidebar .urgent-box .btn {
  background: var(--secondary);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.contact-sidebar .urgent-box .btn:hover {
  background: var(--secondary-light);
}

/* ═══════════════════════════════════════════════════════════════
   PROSE (Terms / Privacy)
   ═══════════════════════════════════════════════════════════════ */
.prose {
  max-width: 56rem;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.prose p {
  color: var(--gray-custom);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose ul li {
  color: var(--gray-custom);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.prose ul li strong {
  color: var(--gray-700);
}

.prose .info-box {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}

.prose .info-box p {
  margin-bottom: 0.25rem;
}

.prose .info-box p:first-child {
  font-weight: 600;
  color: var(--gray-700);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* CTA Banner */
.footer-cta {
  position: relative;
}

.footer-cta-inner {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-cta-inner { padding: 3rem; }
}

.footer-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, white 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-cta-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .footer-cta-inner h3 { font-size: 1.875rem; }
}

.footer-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 10;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .footer-cta-buttons { flex-direction: row; }
}

.footer-cta-buttons .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Main Footer */
.footer-main {
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; }
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .icon-box span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Playfair Display', serif;
}

.footer-logo .text .name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
}

.footer-logo .text .tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-about {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.footer-social a svg {
  width: 1rem;
  height: 1rem;
}

/* Footer Links */
.footer-column h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-links a svg {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  margin-left: -1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover svg {
  opacity: 1;
  margin-left: 0;
}

/* Footer Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--white);
}

/* Newsletter */
.footer-newsletter {
  margin-top: 1.5rem;
}

.footer-newsletter h5 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
  border-color: rgba(232, 168, 56, 0.5);
}

.footer-newsletter-form button {
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.footer-newsletter-form button:hover {
  box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
}

.footer-newsletter-form button svg {
  width: 1rem;
  height: 1rem;
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

.footer-bottom-links .divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   IMAGES SECTION (Life at Company)
   ═══════════════════════════════════════════════════════════════ */
.life-section {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
}

.life-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.life-section .grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.life-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
  .life-section h3 { font-size: 1.875rem; }
}

.life-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.life-section .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.life-section .images img {
  border-radius: 1rem;
  height: 10rem;
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 7rem 0; }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-section .content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

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

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

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-section .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-section .buttons { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════════════
   CHECKLIST
   ═══════════════════════════════════════════════════════════════ */
.checklist {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .checklist { grid-template-columns: 1fr 1fr; }
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.checklist-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checklist-item span {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════ */
.about-image-section {
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -0.75rem;
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.1), rgba(37, 99, 235, 0.1));
  border-radius: 1.5rem;
}

.about-image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(to bottom right, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-badge .number {
  font-size: 2.25rem;
  font-weight: 700;
}

.about-badge .text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Mission/Vision Cards */
.mv-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .mv-card { padding: 2.5rem; }
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.mv-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-card .icon-box.primary {
  background: linear-gradient(to bottom right, rgba(15, 43, 91, 0.1), rgba(37, 99, 235, 0.1));
}

.mv-card .icon-box.secondary {
  background: linear-gradient(to bottom right, rgba(232, 168, 56, 0.2), rgba(240, 190, 94, 0.2));
}

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

.mv-card .icon-box.primary svg {
  color: var(--primary);
}

.mv-card .icon-box.secondary svg {
  color: var(--secondary);
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.mv-card p {
  color: var(--gray-custom);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   HIDE ON MOBILE / DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile { display: block; }
}

.hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hide-desktop { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary), var(--primary-light));
  border-radius: 10px;
}
