/* Tajdeed Computers — Design System */
:root {
  --charcoal: #050a18;
  --charcoal-soft: #12182a;
  --teal: #0066ff;
  --teal-deep: #004ecc;
  --teal-soft: #3d8bff;
  --off-white: #f3f5f7;
  --warm-mist: #e8eef0;
  --white: #ffffff;
  --muted: #5a6577;
  --border: rgba(5, 10, 24, 0.1);
  --shadow: 0 12px 40px rgba(5, 10, 24, 0.08);
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --max: 1120px;
  --header-h: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--teal-deep);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

iframe {
  border: 0;
}

/* Background atmosphere */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 102, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(5, 10, 24, 0.06), transparent 50%),
    linear-gradient(180deg, #eef2f4 0%, var(--off-white) 40%, #e6ebef 100%);
  pointer-events: none;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: soft-light;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(243, 245, 247, 0.82);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo img {
  height: 3.85rem;
  width: auto;
  object-fit: contain;
}

.logo--footer img {
  height: auto;
  width: min(10.5rem, 100%);
  max-height: 9.5rem;
  background: var(--white);
  border-radius: 0.45rem;
  padding: 0.55rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.logo-feature {
  margin-bottom: 1.75rem;
}

.logo-feature img {
  width: min(14rem, 70%);
  height: auto;
  background: var(--white);
  border-radius: 0.4rem;
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 0.35rem 0;
}

.nav a:hover,
.nav a.active {
  color: var(--charcoal);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  min-height: 2.75rem;
  border-radius: 0.35rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 10, 24, 0.9) 0%, rgba(5, 10, 24, 0.58) 48%, rgba(0, 102, 255, 0.38) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%2312182a'/%3E%3Cstop offset='1' stop-color='%230066ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='1600' height='900'/%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0 600 L400 200 L800 500 L1200 100 L1600 400 V900 H0Z'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1' d='M0 180 H1600 M0 360 H1600 M0 540 H1600 M0 720 H1600 M200 0 V900 M400 0 V900 M600 0 V900 M800 0 V900 M1000 0 V900 M1200 0 V900 M1400 0 V900'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 24, 0.78) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.hero-logo {
  width: min(11rem, 42vw);
  height: auto;
  margin-bottom: 1.5rem;
  background: var(--white);
  border-radius: 0.45rem;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.1s forwards;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: 28ch;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.3s forwards;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.45s forwards;
}

.hero .btn-group {
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.6s forwards;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  color: var(--white);
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 10, 24, 0.92), rgba(0, 102, 255, 0.72)),
    linear-gradient(45deg, var(--charcoal), var(--teal));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .brand-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--border);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

.intro-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 46rem;
}

.intro-block p {
  color: var(--muted);
  font-size: 1.15rem;
}

/* Category / feature grids */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.category-item {
  display: block;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--charcoal);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.category-icon {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.95rem;
  object-fit: contain;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}

.category-item:hover {
  background: var(--charcoal);
  color: var(--white);
}

.category-item:hover .category-icon {
  filter: brightness(0) invert(1);
}

.category-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.category-item p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

.category-item:hover p {
  opacity: 0.85;
}

.category-item .arrow {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}

.category-item:hover .arrow {
  color: var(--teal-soft);
}

.category-item--static {
  cursor: default;
}

.category-item--static:hover {
  background: rgba(255, 255, 255, 0.65);
  color: var(--charcoal);
}

.category-item--static:hover .category-icon {
  filter: none;
}

.category-item--static:hover p {
  opacity: 0.75;
}

.category-item--static .arrow:hover {
  color: var(--teal-deep);
}

.category-item--static[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* Why choose us */
.why-list {
  display: grid;
  gap: 2rem 3rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
}

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 0.35rem;
  flex-shrink: 0;
}

.why-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.why-item p {
  color: var(--muted);
  font-size: 1rem;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 4.5rem 0;
  color: var(--white);
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 45%, var(--teal-deep) 100%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 36ch;
}

/* About specifics */
.split-block {
  display: grid;
  gap: 2.5rem;
}

.mission-vision {
  display: grid;
  gap: 2rem;
  padding-top: 1rem;
}

.mission-vision article h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.mission-vision article p {
  color: var(--muted);
}

.diff-list {
  display: grid;
  gap: 1.5rem;
  counter-reset: diff;
}

.diff-list li {
  counter-increment: diff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.diff-list li::before {
  content: counter(diff, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.diff-list h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.diff-list p {
  color: var(--muted);
}

/* Services */
.service-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  gap: 0.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-row p {
  color: var(--muted);
  max-width: 52ch;
}

.service-row a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 3rem;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-details h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.contact-item {
  display: grid;
  gap: 0.25rem;
}

.contact-item dt {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-item dd,
.contact-item a {
  color: var(--charcoal);
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: var(--teal);
}

.map-embed {
  margin-top: 0.5rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 14rem;
  border: 0;
  border-radius: 0.35rem;
  filter: grayscale(0.15) contrast(1.02);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label,
.form-row legend {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--charcoal-soft);
}

.form-row .req {
  color: var(--teal);
}

.form-row .optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input[type="file"] {
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.15);
  background: var(--white);
}

.form-row textarea {
  min-height: 7rem;
  resize: vertical;
}

.choice-group {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.choice-group legend {
  margin-bottom: 0.55rem;
  padding: 0;
}

.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--charcoal);
  cursor: pointer;
}

.choice input {
  width: auto;
  accent-color: var(--teal);
}

.form-status {
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--teal-deep);
}

.form-status.error {
  color: #b42318;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--full {
    grid-column: 1 / -1;
  }
}

/* Legal pages */
.legal-content {
  max-width: 44rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-meta {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(0, 102, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(0, 102, 255, 0.12), transparent 50%),
    linear-gradient(165deg, #070d1c 0%, var(--charcoal) 45%, #0a1224 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 102, 255, 0.25);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), var(--teal), transparent);
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  gap: 2.75rem;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.98rem;
  max-width: 32ch;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.35rem;
}

.footer-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.4rem 0.95rem;
  border-radius: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s;
}

.footer-quick__call {
  background: var(--teal);
  color: var(--white);
  border: 1px solid transparent;
}

.footer-quick__call:hover {
  background: var(--teal-soft);
  color: var(--white);
}

.footer-quick__wa {
  background: rgba(37, 211, 102, 0.15);
  color: #6dff9a;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.footer-quick__wa:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  padding: 0.35rem 0;
  width: fit-content;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-list {
  display: grid;
  gap: 0.85rem;
}

.footer-contact-item {
  display: grid;
  gap: 0.2rem;
}

.footer-contact-item .label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item .value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
}

.footer-contact-item .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.footer-contact-item .actions a {
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-soft);
  transform: none;
}

.footer-contact-item .actions a:hover {
  color: #fff;
  transform: none;
}

.footer-contact-item a.mail-link {
  color: rgba(255, 255, 255, 0.9);
  word-break: break-word;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Floating Call + WhatsApp — independently fixed circles */
a.float-btn,
a.float-btn-call,
a.float-btn-wa {
  position: fixed !important;
  left: auto !important;
  top: auto !important;
  right: 16px !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: hidden !important;
  line-height: 0 !important;
}

a.float-btn-call {
  bottom: 84px !important;
  background: #0066ff !important;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5) !important;
}

a.float-btn-wa {
  bottom: 16px !important;
  background: #25d366 !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

a.float-btn:hover,
a.float-btn-call:hover,
a.float-btn-wa:hover {
  transform: scale(1.06);
  color: #ffffff !important;
}

a.float-btn svg,
a.float-btn-call svg,
a.float-btn-wa svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  max-width: none !important;
  fill: #ffffff !important;
}

a.float-btn-wa svg {
  width: 28px !important;
  height: 28px !important;
}

@supports (padding: max(0px)) {
  a.float-btn-call,
  a.float-btn-wa {
    right: max(16px, env(safe-area-inset-right)) !important;
  }
  a.float-btn-wa {
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
  }
  a.float-btn-call {
    bottom: max(84px, calc(env(safe-area-inset-bottom) + 68px)) !important;
  }
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
}

.contact-number {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 11rem;
}

.contact-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
}

.contact-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #f3f7ff;
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  overflow: hidden;
}

.brand-tile {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 0.55rem;
  min-height: 8.75rem;
  padding: 1.35rem 1.1rem 1rem;
  background: var(--white);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.brand-tile:hover,
.brand-tile:focus-visible {
  background: #f7f9fc;
  box-shadow: none;
  transform: none;
  outline: 2px solid var(--teal);
  outline-offset: -2px;
  z-index: 1;
}

.brand-tile img {
  width: auto;
  height: 3.75rem;
  max-width: 85%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.brand-tile span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.brand-tile:hover span,
.brand-tile:focus-visible span {
  color: var(--charcoal);
}

.brand-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.brand-modal[hidden] {
  display: none;
}

.brand-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.55);
  backdrop-filter: blur(4px);
}

.brand-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: min(90dvh, 42rem);
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border-radius: 0.45rem;
  box-shadow: 0 24px 60px rgba(5, 10, 24, 0.25);
  text-align: center;
  animation: heroIn 0.35s var(--ease);
  -webkit-overflow-scrolling: touch;
}

.brand-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 0.3rem;
}

.brand-modal__close:hover {
  color: var(--charcoal);
  background: var(--off-white);
}

.brand-modal__logo {
  width: min(100%, 16rem);
  height: 4.5rem;
  object-fit: contain;
  margin: 0.25rem auto 1.35rem;
}

.brand-modal__panel h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--charcoal);
}

.brand-modal__panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.brand-modal__panel .btn {
  width: auto;
  min-width: 7rem;
}

.brand-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.brand-modal__panel .btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.brand-modal__panel .btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

body.brand-modal-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-tile {
    min-height: 9.5rem;
    padding: 1.5rem 1.25rem 1.1rem;
  }

  .brand-tile img {
    height: 4.35rem;
    max-width: 88%;
  }
}

@media (min-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .brand-tile {
    min-height: 10.5rem;
    padding: 1.75rem 1.4rem 1.2rem;
  }

  .brand-tile img {
    height: 5rem;
    max-width: 90%;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 640px) {
  .why-list {
    grid-template-columns: 1fr 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    gap: 2.5rem;
  }

  .service-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .service-row p {
    grid-column: 1;
  }

  .service-row a {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.95rem 0.35rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }

  .nav a.active::after {
    display: none;
  }

  .nav a.active {
    color: var(--teal);
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 4.35rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .logo img {
    height: 2.85rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-content {
    width: min(100% - 1.5rem, var(--max));
    padding: 2.75rem 0 3.25rem;
  }

  .hero-logo {
    width: min(9.5rem, 55vw);
    margin-bottom: 1.15rem;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-group {
    width: 100%;
  }

  .btn-group .btn {
    flex: 1 1 auto;
    min-width: min(100%, 9.5rem);
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2,
  .page-hero h1 {
    font-size: clamp(1.55rem, 6vw, 2.1rem);
  }

  .page-hero {
    padding: 3.25rem 0 2.5rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-item {
    padding: 1.35rem 1.15rem;
  }

  .cta-band {
    padding: 3.25rem 0;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn-group {
    width: 100%;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .map-embed {
    aspect-ratio: 4 / 3;
    min-height: 16rem;
  }

  .brand-tile {
    min-height: 7.75rem;
    padding: 1.1rem 0.85rem 0.85rem;
  }

  .brand-tile img {
    height: 3.1rem;
  }

  .brand-modal {
    padding: 1rem;
    align-items: end;
  }

  .brand-modal__panel {
    width: 100%;
    max-height: min(90dvh, 40rem);
    overflow-y: auto;
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 0.65rem 0.65rem 0.35rem 0.35rem;
  }

  .site-footer {
    padding: 2.75rem 0 calc(2rem + env(safe-area-inset-bottom));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .legal-content {
    max-width: 100%;
  }
}

@media (max-width: 479px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
  }

  .choice-options {
    flex-direction: column;
    gap: 0.65rem;
  }

  .brands-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-content {
    padding: 5rem 0 5.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    gap: 2rem;
  }
}

@media (hover: none) {
  .btn:hover {
    transform: none;
  }

  .category-item:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--charcoal);
  }

  .category-item:hover .category-icon {
    filter: none;
  }

  .category-item:active {
    background: var(--charcoal);
    color: var(--white);
  }

  .category-item:active .category-icon {
    filter: brightness(0) invert(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-brand,
  .hero-logo,
  .hero h1,
  .hero-lead,
  .hero .btn-group,
  .brand-modal__panel,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
