/* ============================================================
   Singiten General Construction PLC — Main Stylesheet
   ============================================================ */

/* ── Google Fonts are loaded via PHP header ── */

/* ============================================================
   1. CSS Custom Properties (Theme Variables)
   ============================================================ */
:root {
  /* Brand */
  --brand:        #1E3A8A;
  --brand-light:  #2D55BF;
  --brand-dark:   #152E72;
  --accent:       #F59E0B;
  --accent-hover: #D97706;
  --accent-dark:  #B45309;
  --danger:       #EF4444;
  --success:      #22C55E;

  /* Dark Mode (default) */
  --bg-primary:   #0B0F1A;
  --bg-secondary: #111827;
  --bg-card:      #151D2E;
  --bg-card-alt:  #1A2235;
  --bg-input:     #0D1320;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --glass:        rgba(21, 29, 46, 0.7);
  --glass-border: rgba(255,255,255,0.1);

  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;
  --text-invert:    #0B0F1A;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.5);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.6);
  --shadow-accent: 0 4px 24px rgba(245,158,11,0.3);
  --shadow-brand:  0 4px 24px rgba(30,58,138,0.4);

  /* Layout */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition:      0.3s ease;
  --transition-slow: 0.5s ease;
}

[data-theme="light"] {
  --bg-primary:   #F4F7FB;
  --bg-secondary: #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-card-alt:  #F0F4FF;
  --bg-input:     #F8FAFC;
  --border:       rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.18);
  --glass:        rgba(255,255,255,0.85);
  --glass-border: rgba(0,0,0,0.08);

  --text-primary:   #0F172A;
  --text-secondary: #334155;
  --text-muted:     #64748B;
  --text-invert:    #F1F5F9;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--accent); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   3. Typography
   ============================================================ */
.display-title {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-secondary); line-height: 1.75; }

.lead { font-size: 1.15rem; }

/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 60%, var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.text-accent { color: var(--accent) !important; }
.text-brand  { color: var(--brand-light) !important; }
.text-muted  { color: var(--text-muted) !important; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Flex helpers */
.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ============================================================
   5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.45);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ============================================================
   6. Preloader
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 120px; margin: 0 auto 24px; animation: preloaderPulse 1.5s ease-in-out infinite; }
.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 10px;
  animation: preloaderLoad 1.8s ease-in-out forwards;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
@keyframes preloaderLoad {
  0%   { width: 0%; }
  70%  { width: 85%; }
  100% { width: 100%; }
}

/* ============================================================
   7. Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand { flex-shrink: 0; }
.nav-logo  { height: 52px; width: auto; transition: height var(--transition); }
.navbar.scrolled .nav-logo { height: 42px; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(20deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* ============================================================
   8. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,58,138,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(245,158,11,0.08) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-grid-overlay {
  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;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .accent-word {
  background: linear-gradient(135deg, var(--accent), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .brand-word {
  color: var(--brand-light);
  -webkit-text-fill-color: var(--brand-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,15,26,0.8));
}

.hero-float-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.hero-float-card.card-1 {
  bottom: 32px;
  left: -32px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.hero-float-card.card-2 {
  top: 32px;
  right: -24px;
  text-align: center;
  min-width: 140px;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-card-title { font-weight: 700; font-size: 1.3rem; color: var(--text-primary); }
.float-card-sub   { font-size: 0.75rem; color: var(--text-muted); }

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border-hover);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ============================================================
   9. About Section
   ============================================================ */
.about-section { background: var(--bg-secondary); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-stack {
  position: relative;
  z-index: 1;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg-secondary);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; height: 180px; object-fit: cover; }

.about-badge-float {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--accent);
  color: #000;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-accent);
  z-index: 2;
}
.about-badge-float .badge-num  { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-float .badge-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.about-content { padding-left: 20px; }

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.about-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.about-list-item i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   10. Services Section
   ============================================================ */
.services-section { background: var(--bg-primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(30,58,138,0.2), rgba(30,58,138,0.05));
  border: 1px solid rgba(30,58,138,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-light);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.service-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-card-num { color: rgba(30,58,138,0.12); }

/* ============================================================
   11. Stats Section
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.stat-suffix { color: var(--accent); font-size: 0.7em; vertical-align: super; }

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 12px;
}

/* ============================================================
   12. Featured Projects Section
   ============================================================ */
.projects-section { background: var(--bg-secondary); }

.projects-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.project-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.08); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,15,26,0.9));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transform: translateY(12px);
  transition: transform var(--transition);
}
.project-card:hover .project-overlay-btn { transform: translateY(0); }

.project-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}

.project-status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}
.status-completed { background: rgba(34,197,94,0.15); color: #22C55E; border: 1px solid rgba(34,197,94,0.3); }
.status-ongoing   { background: rgba(245,158,11,0.15); color: var(--accent); border: 1px solid rgba(245,158,11,0.3); }

.project-card-body {
  padding: 24px;
}

.project-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.project-card:hover .project-card-title { color: var(--accent); }

.project-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.project-card-meta span { display: flex; align-items: center; gap: 5px; }
.project-card-meta i { color: var(--brand-light); }

.projects-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   13. Testimonials
   ============================================================ */
.testimonials-section { background: var(--bg-primary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.6;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   14. CTA Section
   ============================================================ */
.cta-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   15. Projects Page
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30,58,138,0.2) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb i { font-size: 0.7rem; }

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* ============================================================
   16. Project Detail Page
   ============================================================ */
.project-detail-hero {
  padding: 120px 0 0;
  background: var(--bg-secondary);
}
.project-detail-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
}

.project-detail-body {
  background: var(--bg-primary);
  padding: 80px 0;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.project-detail-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  color: var(--accent);
}
.project-detail-content p { margin-bottom: 16px; }

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.project-gallery-grid img {
  border-radius: var(--radius);
  height: 150px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  cursor: pointer;
}
.project-gallery-grid img:hover { transform: scale(1.03); }

.project-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.project-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}

.project-info-list { display: flex; flex-direction: column; gap: 16px; }

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.info-value { color: var(--text-primary); font-weight: 600; text-align: right; }

/* ============================================================
   17. Careers Page
   ============================================================ */
.careers-intro { background: var(--bg-secondary); padding: 80px 0; }

.careers-grid { display: flex; flex-direction: column; gap: 20px; }

.vacancy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vacancy-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.vacancy-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}
.vacancy-card:hover::before { transform: scaleY(1); }

.vacancy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.vacancy-title-group .vacancy-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vacancy-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-dept     { background: rgba(30,58,138,0.15); color: var(--brand-light); border: 1px solid rgba(30,58,138,0.3); }
.tag-type     { background: rgba(34,197,94,0.1);  color: #22C55E;            border: 1px solid rgba(34,197,94,0.25); }
.tag-location { background: rgba(245,158,11,0.1); color: var(--accent);      border: 1px solid rgba(245,158,11,0.25); }
.tag-deadline { background: rgba(239,68,68,0.1);  color: #EF4444;            border: 1px solid rgba(239,68,68,0.25); }

.vacancy-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.vacancy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vacancy-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}
.vacancy-apply-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.vacancy-expand-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.vacancy-expand-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }

.vacancy-requirements {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.vacancy-requirements.open { display: block; }

.requirements-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.requirements-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.requirements-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============================================================
   18. Contact Page
   ============================================================ */
.contact-section { background: var(--bg-primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  color: #fff;
  position: sticky;
  top: 100px;
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-items { display: flex; flex-direction: column; gap: 28px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.ci-value { font-size: 0.95rem; font-weight: 600; line-height: 1.6; }
.ci-value a { color: #fff; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.form-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.15);
  background: var(--bg-secondary);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }

.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success, .form-error {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22C55E; }
.form-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #EF4444; }
.form-success.show, .form-error.show { display: flex; }

/* ============================================================
   19. Admin Panel
   ============================================================ */
.admin-body {
  font-family: 'Inter', sans-serif;
  background: #0B0F1A;
  color: #F1F5F9;
  min-height: 100vh;
}

[data-theme="light"] .admin-body {
  background: #F4F7FB;
  color: #0F172A;
}

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: #0D1322;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform var(--transition);
}

[data-theme="light"] .admin-sidebar {
  background: #1E3A8A;
  border-right-color: rgba(255,255,255,0.1);
}

.sidebar-brand {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-logo { height: 44px; width: auto; }
.sidebar-brand-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; }

.sidebar-nav { flex: 1; padding: 24px 0; overflow-y: auto; }

.sidebar-section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  padding: 0 20px 8px;
  margin-top: 16px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 0;
  transition: all var(--transition-fast);
  position: relative;
}
.sidebar-link i { width: 18px; text-align: center; font-size: 0.95rem; }
.sidebar-link:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.sidebar-link.active {
  background: rgba(245,158,11,0.12);
  color: var(--accent);
  border-right: 3px solid var(--accent);
}
.sidebar-link .badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* Admin Main */
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Admin Topbar */
.admin-topbar {
  height: 64px;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 99;
}

[data-theme="light"] .admin-topbar {
  background: #fff;
  border-bottom-color: rgba(0,0,0,0.08);
}

.topbar-title { font-size: 1rem; font-weight: 600; }

.topbar-actions { display: flex; align-items: center; gap: 12px; }

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Admin Content */
.admin-content { flex: 1; padding: 36px 32px; }

/* Dashboard Cards */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.dash-card {
  background: #151D2E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}
[data-theme="light"] .dash-card { background: #fff; border-color: rgba(0,0,0,0.08); }

.dash-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.dash-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.icon-brand   { background: rgba(30,58,138,0.2);  color: var(--brand-light); }
.icon-accent  { background: rgba(245,158,11,0.15); color: var(--accent); }
.icon-success { background: rgba(34,197,94,0.15);  color: #22C55E; }
.icon-danger  { background: rgba(239,68,68,0.15);  color: #EF4444; }

.dash-card-value { font-size: 2rem; font-weight: 800; line-height: 1; color: #F1F5F9; }
[data-theme="light"] .dash-card-value { color: #0F172A; }
.dash-card-label { font-size: 0.82rem; color: #64748B; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Admin Tables */
.admin-table-card {
  background: #151D2E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
[data-theme="light"] .admin-table-card { background: #fff; border-color: rgba(0,0,0,0.08); }

.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
[data-theme="light"] .admin-table-header { border-bottom-color: rgba(0,0,0,0.06); }
.admin-table-header h3 { font-size: 1rem; font-weight: 700; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.admin-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
[data-theme="light"] .admin-table th { background: #F8FAFC; border-bottom-color: rgba(0,0,0,0.06); }
.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #94A3B8;
  vertical-align: middle;
}
[data-theme="light"] .admin-table td { color: #334155; border-bottom-color: rgba(0,0,0,0.04); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: rgba(255,255,255,0.02); }
[data-theme="light"] .admin-table tbody tr:hover { background: #F8FAFC; }

.td-title { color: #F1F5F9 !important; font-weight: 600; }
[data-theme="light"] .td-title { color: #0F172A !important; }

.table-actions { display: flex; gap: 8px; align-items: center; }

.btn-table-edit,
.btn-table-delete,
.btn-table-view {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-table-edit   { background: rgba(30,58,138,0.2);  color: var(--brand-light); border: 1px solid rgba(30,58,138,0.3); }
.btn-table-delete { background: rgba(239,68,68,0.1);  color: #EF4444;            border: 1px solid rgba(239,68,68,0.25); }
.btn-table-view   { background: rgba(245,158,11,0.1); color: var(--accent);      border: 1px solid rgba(245,158,11,0.25); }
.btn-table-edit:hover   { background: var(--brand); color: #fff; }
.btn-table-delete:hover { background: #EF4444; color: #fff; }
.btn-table-view:hover   { background: var(--accent); color: #000; }

/* Admin Forms */
.admin-form-card {
  background: #151D2E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 860px;
}
[data-theme="light"] .admin-form-card { background: #fff; border-color: rgba(0,0,0,0.08); }

.admin-form-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
[data-theme="light"] .admin-form-title { border-bottom-color: rgba(0,0,0,0.06); }

.admin-form-group {
  margin-bottom: 24px;
}
.admin-form-label { display: block; font-size: 0.85rem; font-weight: 600; color: #64748B; margin-bottom: 8px; }
.admin-form-control {
  width: 100%;
  padding: 12px 16px;
  background: #0D1322;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: #F1F5F9;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
  font-family: 'Inter', sans-serif;
}
[data-theme="light"] .admin-form-control {
  background: #F8FAFC;
  border-color: rgba(0,0,0,0.12);
  color: #0F172A;
}
.admin-form-control:focus {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.2);
}
.admin-form-control::placeholder { color: #64748B; }
textarea.admin-form-control { resize: vertical; min-height: 120px; }
select.admin-form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }

.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.admin-form-hint { font-size: 0.78rem; color: #64748B; margin-top: 6px; }

/* Featured toggle */
.featured-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.featured-toggle input[type=checkbox] { display: none; }
.toggle-track {
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  position: relative;
  transition: background var(--transition-fast);
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}
.featured-toggle input:checked + .toggle-track { background: var(--accent); }
.featured-toggle input:checked + .toggle-track::after { transform: translateX(20px); }
.toggle-label { font-size: 0.88rem; color: #94A3B8; }

/* Alert admin */
.admin-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22C55E; }
.admin-alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #EF4444; }

/* Admin Login */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0F1A;
  position: relative;
  overflow: hidden;
}
.admin-login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(30,58,138,0.2) 0%, transparent 70%);
}
.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: #151D2E;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
}
.login-logo { height: 64px; margin: 0 auto 28px; }
.login-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 8px; }
.login-sub   { text-align: center; color: #64748B; font-size: 0.88rem; margin-bottom: 36px; }

/* Unread indicator */
.unread-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  animation: blink 2s ease-in-out infinite;
}

/* Badge pill for table */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pill-completed { background: rgba(34,197,94,0.12);  color: #22C55E; }
.pill-ongoing   { background: rgba(245,158,11,0.12); color: var(--accent); }
.pill-active    { background: rgba(34,197,94,0.12);  color: #22C55E; }
.pill-inactive  { background: rgba(239,68,68,0.1);   color: #EF4444; }
.pill-fulltime  { background: rgba(30,58,138,0.15);  color: var(--brand-light); }
.pill-contract  { background: rgba(245,158,11,0.1);  color: var(--accent); }

/* Image preview */
.img-preview {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  display: none;
  margin-top: 12px;
}
.img-preview.show { display: block; }

/* Read/unread row in contact table */
.tr-unread td:first-child { border-left: 3px solid var(--accent); }

/* ============================================================
   20. Animations (Scroll Reveal)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   21. Footer
   ============================================================ */
.footer { background: var(--bg-secondary); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-links a:hover { color: var(--accent); }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.footer-contact-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.83rem; color: var(--text-muted); }
.footer-reg  { font-size: 0.78rem; color: var(--text-muted); opacity: 0.7; }

/* ============================================================
   22. Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero-container { gap: 48px; }
  .about-grid     { gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .dashboard-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual    { display: none; }
  .hero-container { padding: 120px 24px 80px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid, .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .project-detail-grid { grid-template-columns: 1fr; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -320px;
    bottom: 0;
    width: 300px;
    background: var(--bg-card);
    padding: 80px 24px 40px;
    z-index: 999;
    border-left: 1px solid var(--border);
    transition: right var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: 2.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid, .projects-page-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row, .admin-form-row { grid-template-columns: 1fr; }
  .dashboard-cards { grid-template-columns: 1fr 1fr; }
  .admin-content { padding: 24px 16px; }
  .admin-topbar { padding: 0 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .vacancy-header { flex-direction: column; gap: 12px; }
  .vacancy-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   24. Credentials / Licenses / References Section
   ============================================================ */
.credentials-section {
  background: var(--bg-secondary);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.credential-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.credential-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color var(--transition);
  pointer-events: none;
}

.credential-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.credential-card:hover::after {
  border-color: rgba(245, 158, 11, 0.4);
}

/* Icon wrap */
.credential-icon-wrap {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

/* Credential header */
.credential-header {
  padding: 20px 20px 16px;
}

.credential-issuer {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
  padding-right: 48px;
}

.credential-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.credential-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.credential-meta i {
  color: var(--brand-light);
  font-size: 0.7rem;
  width: 12px;
}

/* Document image */
.credential-doc-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: #fff; /* white bg for document images */
}

.credential-doc-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
  filter: none;
}

.credential-card:hover .credential-doc-img {
  transform: scale(1.04);
}

.credential-doc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 15, 40, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 24px;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
}

.credential-doc-overlay i {
  font-size: 1.8rem;
  opacity: 0.9;
}

.credential-doc-overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-doc-wrap:hover .credential-doc-overlay {
  opacity: 1;
}

/* Trust bar */
.credentials-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Credential Lightbox */
.cred-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cred-lightbox.open {
  display: flex;
}

.cred-lightbox-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.cred-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cred-lightbox-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cred-lightbox-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.cred-lightbox-close:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.cred-lightbox-body {
  overflow-y: auto;
  flex: 1;
  background: #f5f5f0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

.cred-lightbox-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  display: block;
}

.cred-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-divider { display: none; }
  .credentials-trust-bar { flex-direction: column; gap: 12px; align-items: flex-start; padding: 20px; }
}

@media (max-width: 600px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .cred-lightbox-inner { border-radius: var(--radius-lg); }
}

.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

.d-flex     { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }

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

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.empty-state p { font-size: 1rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   7. Floating WhatsApp Button
   ============================================================ */
.wa-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: waRipple 2s infinite;
}
.wa-floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.2);
  color: #ffffff;
}
.wa-floating-icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-floating-text {
  white-space: nowrap;
}
@keyframes waRipple {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-floating-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
  }
  .wa-floating-text {
    display: none;
  }
  .wa-floating-icon {
    font-size: 1.8rem;
  }
}

/* ── 22. Welcome Announcement Modal ────────────────────────────────────────── */
.welcome-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999999;
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-modal-backdrop.active {
  opacity: 1;
}
.welcome-modal-backdrop.closing {
  opacity: 0;
}
.welcome-modal-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, var(--bg-surface), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 158, 11, 0.15);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  color: var(--text-primary);
}
.welcome-modal-backdrop.active .welcome-modal-card {
  transform: translateY(0) scale(1);
}
[data-theme="light"] .welcome-modal-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(245, 158, 11, 0.1);
}
.welcome-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}
[data-theme="light"] .welcome-modal-close {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}
.welcome-modal-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(90deg);
}
.welcome-modal-header {
  text-align: center;
  margin-bottom: 14px;
}
.welcome-logo-wrap {
  width: 54px; height: 54px;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
[data-theme="light"] .welcome-logo-wrap {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.welcome-logo {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.welcome-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.welcome-modal-body {
  margin-bottom: 16px;
}
.welcome-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.welcome-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.25s ease;
}
[data-theme="light"] .welcome-contact-item {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}
.welcome-contact-item:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateX(4px);
}
.welcome-contact-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
}
.welcome-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.welcome-contact-text span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 600;
}
.welcome-contact-text strong {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 700;
}
.welcome-contact-text strong a {
  color: inherit;
  text-decoration: none;
}
.welcome-contact-text strong a:hover {
  color: var(--accent);
}
.welcome-modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.welcome-continue-btn {
  width: 100%;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

