/* ============================================================
   VERSED GLOBAL - COMPLETE STYLESHEET
   Version: 3.5 - Teal Theme Aligned with Company Logo
   Enhanced Responsive Design for All Devices
   Premium Performance Optimized
   ============================================================ */

/* ============================================================
   ROOT / RESET / BASE TYPOGRAPHY
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   TEAL THEME COLOR VARIABLES (Aligned with Logo)
   ============================================================ */

:root {
  --teal-primary: #0891b2;
  --teal-dark: #0e7490;
  --teal-darker: #155e75;
  --teal-light: #06b6d4;
  --teal-lighter: #22d3ee;
  --teal-bg: #e6f7f7;
  --teal-bg-dark: #cffafe;

  --navy-dark: #0c4a6e;
  --navy-medium: #0f172a;
  --slate-dark: #334155;
  --slate-medium: #475569;
  --slate-light: #64748b;
  --slate-lighter: #94a3b8;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;

  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(8, 145, 178, 0.08);
  --shadow-md: 0 8px 24px rgba(8, 145, 178, 0.12);
  --shadow-lg: 0 16px 40px rgba(8, 145, 178, 0.18);
}

/* ============================================================
   HEADER – TEAL THEME WITH RESPONSIVE MOBILE MENU
   ============================================================ */

.header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-bg) 100%);
  box-shadow: 0 2px 12px rgba(14, 116, 144, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  border-bottom: 2px solid rgba(14, 116, 144, 0.2);
}

.header-bar.scrolled {
  box-shadow: 0 4px 30px rgba(8, 145, 178, 0.18);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(230, 247, 247, 0.95) 100%
  );
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(14, 116, 144, 0.25));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--teal-darker) 0%,
    var(--teal-primary) 50%,
    var(--teal-light) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(8, 145, 178, 0.15);
}

.tagline {
  font-size: 0.775rem;
  color: var(--teal-darker);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-left: 0.65rem;
  padding-left: 0.65rem;
  border-left: 2px solid var(--teal-primary);
  line-height: 1.3;
  max-width: 220px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  padding: 0.55rem 0.95rem;
  text-decoration: none;
  color: var(--teal-darker);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover {
  color: var(--teal-primary);
  background: rgba(8, 145, 178, 0.1);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--teal-primary) 0%,
    var(--teal-dark) 100%
  );
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.35);
}

.nav-links a.nav-cta {
  background: linear-gradient(
    135deg,
    var(--teal-primary) 0%,
    var(--teal-dark) 100%
  );
  color: white;
  padding: 0.55rem 1.35rem;
  border-radius: 8px;
  margin-left: 0.5rem;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.35);
}

.nav-links a.nav-cta:hover {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal-darker) 100%
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.45);
}

.mobile-menu {
  display: none;
  background: linear-gradient(
    135deg,
    var(--teal-primary) 0%,
    var(--teal-dark) 100%
  );
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu:hover {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal-darker) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.45);
}

.mobile-menu:focus {
  outline: 3px solid rgba(8, 145, 178, 0.4);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE HEADER – TABLET
   ============================================================ */

@media (max-width: 1100px) {
  .tagline {
    display: none;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
  }
}

/* ============================================================
   RESPONSIVE HEADER – MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.7rem 1rem;
    gap: 0.5rem;
  }

  .logo-image {
    height: 44px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .tagline {
    display: none;
  }

  .mobile-menu {
    display: block;
    order: 2;
  }

  .main-nav {
    width: 100%;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--teal-bg) 100%);
    border-top: 2px solid rgba(14, 116, 144, 0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(14, 116, 144, 0.18);
  }

  .nav-links.active {
    max-height: 600px;
  }

  .nav-links a {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(14, 116, 144, 0.15);
    white-space: normal;
    text-align: left;
  }

  .nav-links a:hover {
    background: rgba(8, 145, 178, 0.12);
    transform: translateX(4px);
  }

  .nav-links a.active {
    background: linear-gradient(
      90deg,
      rgba(8, 145, 178, 0.18) 0%,
      transparent 100%
    );
    color: var(--teal-dark);
    border-left: 4px solid var(--teal-primary);
  }

  .nav-links a.nav-cta {
    margin-left: 0;
    border-radius: 0;
    background: linear-gradient(
      135deg,
      var(--teal-primary) 0%,
      var(--teal-dark) 100%
    );
    color: white;
    border-bottom: none;
  }

  .nav-links a.nav-cta:hover {
    background: linear-gradient(
      135deg,
      var(--teal-dark) 0%,
      var(--teal-darker) 100%
    );
    transform: translateX(4px);
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.6rem 0.85rem;
  }

  .logo-image {
    height: 40px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .nav-links a {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* ============================================================
   SECTIONS & LAYOUT
   ============================================================ */

.section {
  position: relative;
  padding: 3.5rem 0 3rem;
}

.section.alt {
  background: radial-gradient(
    circle at 5% 5%,
    var(--teal-bg),
    var(--gray-50) 50%,
    var(--white)
  );
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-intro {
  font-size: 1rem;
  color: var(--slate-medium);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 760px;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0 2rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2rem 0 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* ============================================================
   BUTTONS – TEAL THEME
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.5rem;
}

.btn:focus-visible {
  outline: 3px solid rgba(8, 145, 178, 0.4);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--teal-primary) 0%,
    var(--teal-dark) 100%
  );
  color: white;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal-darker) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(8, 145, 178, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--teal-primary);
  border: 2px solid var(--teal-primary);
}

.btn-secondary:hover {
  background: rgba(8, 145, 178, 0.1);
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

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

@media (max-width: 640px) {
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================================
   CARDS & GRIDS – TEAL ACCENTS
   ============================================================ */

.three-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--navy-dark);
  margin: 0 0 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.card p {
  color: var(--slate-medium);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .three-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }
}

/* ============================================================
   VALUES GRID
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value {
  background: linear-gradient(145deg, var(--teal-bg), var(--white));
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(8, 145, 178, 0.15);
}

.value:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
}

.value h3 {
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.value p {
  color: var(--slate-medium);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .value {
    padding: 1.5rem;
  }

  .value h3 {
    font-size: 1.1rem;
  }
}

/* ============================================================
   STATS GRID
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 1rem;
  color: var(--navy-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-description {
  font-size: 0.85rem;
  color: var(--slate-light);
}

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

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */

.highlight-box {
  background: linear-gradient(
    135deg,
    var(--teal-bg) 0%,
    rgba(34, 211, 238, 0.15) 100%
  );
  border-left: 4px solid var(--teal-primary);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.highlight-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

.highlight-box strong {
  color: var(--teal-dark);
}

@media (max-width: 640px) {
  .highlight-box {
    padding: 1.25rem 1.5rem;
  }

  .highlight-box p {
    font-size: 1rem;
  }
}

/* ============================================================
   NARRATIVE SECTION (About Page)
   ============================================================ */

.narrative-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.narrative-image {
  background: linear-gradient(135deg, var(--teal-bg), var(--teal-bg-dark));
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(8, 145, 178, 0.15);
}

.narrative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.narrative-content h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.3;
}

.narrative-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--slate-medium);
  margin-bottom: 1.1rem;
}

@media (max-width: 900px) {
  .narrative-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .narrative-image {
    height: 280px;
  }
}

/* ============================================================
   CASE STUDIES (Clients Page)
   ============================================================ */

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.case-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
  transform: translateY(-6px);
}

.case-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.case-card-header h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin: 0 0 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.case-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(8, 145, 178, 0.12);
  color: var(--teal-dark);
  font-weight: 600;
}

.case-card-body {
  padding: 1rem 1.5rem 1.5rem;
}

.case-card-body p {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NEWS GRID
   ============================================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
  transform: translateY(-4px);
}

.news-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.news-date {
  font-size: 0.8rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.news-card-header h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.news-card-body {
  padding: 1rem 1.5rem 1.5rem;
}

.news-card-body p {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ORGANISATION SLIDER (Clients Page)
   ============================================================ */

.org-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--teal-bg);
  border-top: 1px solid rgba(8, 145, 178, 0.25);
  border-bottom: 1px solid rgba(8, 145, 178, 0.25);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.org-slide-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 45s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.org-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.org-slide:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.org-slide img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.org-slide span {
  font-size: 0.85rem;
  color: var(--slate-medium);
  text-align: center;
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.contact-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-flow-layout {
    grid-template-columns: 1fr;
  }
}

.expandable {
  position: relative;
  overflow: hidden;
  max-height: 190px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable.expanded {
  max-height: 1600px;
}

.expand-toggle {
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: var(--teal-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.expand-toggle:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.highlight-band {
  position: relative;
  border-radius: 20px;
  padding: 1.8rem 1.9rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #082f49 100%);
  color: #e0f2fe;
  overflow: hidden;
}

.highlight-band-orbit {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(8, 145, 178, 0.32),
      transparent 55%
    ),
    radial-gradient(circle at 85% 0, rgba(6, 182, 212, 0.32), transparent 55%);
  opacity: 0.8;
  animation: band-orbit 18s linear infinite;
}

@keyframes band-orbit {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18%, 6%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.highlight-band-inner {
  position: relative;
  z-index: 1;
}

.highlight-band-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7dd3fc;
  margin-bottom: 0.4rem;
}

.glance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.glance-chip {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 145, 178, 0.3);
  font-size: 0.8rem;
  color: var(--teal-darker);
  background: rgba(6, 182, 212, 0.08);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--teal-bg-dark);
}

.contact-form h2 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin: 0 0 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--teal-bg-dark);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  color: var(--navy-medium);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 640px) {
  .contact-form {
    padding: 1.75rem;
  }
}

/* Icon Container */
.icon-container {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--teal-primary);
}

/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-bg), var(--teal-bg-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-preview {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.service-card-full {
  display: none;
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
}

.service-card-full p {
  margin-bottom: 0.75rem;
}

.service-card.expanded .service-card-preview {
  display: none;
}

.service-card.expanded .service-card-full {
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--teal-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Section */
.featured-section {
  background: linear-gradient(
    135deg,
    var(--teal-primary) 0%,
    var(--teal-dark) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.featured-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.3;
}

.featured-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.featured-content .btn-primary {
  background: white;
  color: var(--teal-primary);
  margin-top: 1rem;
}

.featured-content .btn-primary:hover {
  background: var(--gray-50);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .featured-section {
    padding: 2rem;
  }

  .featured-content h2 {
    font-size: 1.5rem;
  }
}

/* Sector Grid */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sector-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sector-card.charity {
  border-top: 4px solid var(--teal-primary);
}

.sector-card.corporate {
  border-top: 4px solid var(--teal-dark);
}

.sector-card.public {
  border-top: 4px solid var(--teal-light);
}

.sector-card h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.sector-card p {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .sector-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin: 0.5rem 0 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WEBSITE PORTFOLIO (websites.html)
   ============================================================ */

.website-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--teal-primary);
  background: transparent;
  color: var(--teal-primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--teal-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.website-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.website-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--teal-bg-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
}

.website-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
  transform: translateY(-4px) scale(1);
}

.website-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--teal-bg), var(--teal-bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.website-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.website-card:hover .website-card-image img {
  transform: scale(1.05);
}

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

.website-card-content h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.website-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(8, 145, 178, 0.12);
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.website-card-content p {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .website-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER – TEAL THEME
   ============================================================ */

footer {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #082f49 100%);
  color: #e0f2fe;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(8, 145, 178, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

footer::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #f0f9ff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: #bae6fd;
}

.footer-section a {
  color: #bae6fd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #7dd3fc;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-contact a {
  display: inline-block;
  width: fit-content;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: 48px;
  background: white;
  border-radius: 8px;
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.footer-logo span {
  color: #f0f9ff;
  font-weight: 700;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(8, 145, 178, 0.25);
  color: #e0f2fe;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  border: 1px solid rgba(8, 145, 178, 0.3);
}

.social-link:hover {
  background: var(--teal-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.35);
}

.social-link.linkedin {
  background: rgba(10, 102, 194, 0.25);
  border-color: rgba(10, 102, 194, 0.3);
}

.social-link.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-link.instagram {
  background: rgba(228, 64, 95, 0.25);
  border-color: rgba(228, 64, 95, 0.3);
}

.social-link.instagram:hover {
  background: #e4405f;
  border-color: #e4405f;
}

.social-link.facebook {
  background: rgba(24, 119, 242, 0.25);
  border-color: rgba(24, 119, 242, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-divider {
  border-top: 1px solid rgba(8, 145, 178, 0.3);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #7dd3fc;
}

.footer-bottom a {
  color: #bae6fd;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #7dd3fc;
}

.company-info {
  font-size: 0.85rem;
  color: #7dd3fc;
  line-height: 1.6;
}

.company-info strong {
  color: #bae6fd;
}

.trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #bae6fd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(8, 145, 178, 0.15);
  border: 1px solid rgba(8, 145, 178, 0.25);
}

.trustpilot-link:hover {
  color: white;
  background: rgba(8, 145, 178, 0.25);
  border-color: rgba(8, 145, 178, 0.4);
  transform: translateY(-2px);
}

.trustpilot-link i {
  color: #fbbf24;
}

@media (max-width: 768px) {
  footer {
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
  }

  .footer-container {
    padding: 0 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

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

.mt-1 {
  margin-top: 0.5rem;
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

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

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* ============================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--teal-primary);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 10000;
}

.skip-to-main:focus {
  top: 0;
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--teal-primary);
  outline-offset: 3px;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  .header-bar,
  .mobile-menu,
  footer,
  .btn,
  .social-links,
  .filter-btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: white;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .card,
  .service-card,
  .case-card {
    border: 1px solid #000;
    box-shadow: none;
    page-break-inside: avoid;
  }
}
