/*
Theme Name: Dedicated Projects
Theme URI: https://example.com/
Author: Dedicated Projects
Author URI: https://example.com/
Description: Single-page theme for Dedicated Projects – Social & Digital Media Agency.
Version: 1.0
Text Domain: dedicated-projects
*/

:root {
  --bg-dark: #040712;
  --bg-darker: #020309;
  --accent: #3fd8ff;
  --accent-soft: rgba(63, 216, 255, 0.2);
  --accent-strong: #51f0ff;
  --text-main: #f5f7ff;
  --text-muted: #a6adc9;
  --card-bg: #0b1020;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --danger: #ff4f70;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a2443 0, #040712 40%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Layout helpers */

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(63, 216, 255, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(114, 137, 218, 0.12),
      transparent 55%
    );
  z-index: -1;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 0.95rem;
}

/* Header & nav */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(3, 6, 20, 0.96),
    rgba(3, 6, 20, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(63, 216, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(63, 216, 255, 0.7);
  background: radial-gradient(circle at top left, rgba(63, 216, 255, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 55%);
  box-shadow: 0 0 18px rgba(63, 216, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(63, 216, 255, 0.6);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 7, 28, 0.75);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  left: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  top: -0.35rem;
}

.nav-toggle span::after {
  top: 0.35rem;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  transform: translateY(0.35rem) rotate(45deg);
}

.nav-toggle.open span::after {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.5rem 1rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.nav-mobile a:hover {
  color: var(--accent-strong);
}

/* Hero */

.hero {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  font-weight: 600;
  margin: 0.7rem 0 0.4rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent-strong), #b1f9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 0.96rem;
  margin-bottom: 1.7rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 216, 255, 0.4);
  background: radial-gradient(circle at top left, rgba(63, 216, 255, 0.2), transparent 60%);
  color: var(--accent-strong);
  white-space: nowrap;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  box-shadow: 0 14px 40px rgba(63, 216, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(63, 216, 255, 0.72);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
}

.hero-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.hero-meta span {
  color: var(--accent-strong);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}



.hero-stats strong {
  color: var(--accent-strong);
}

/* Services */

.services-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
  border-radius: 1.4rem;
  padding: 1.4rem 1.4rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  background: radial-gradient(circle at top, rgba(63, 216, 255, 0.22), transparent 65%);
  transition: opacity 0.25s ease;
  z-index: -1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  border-color: rgba(63, 216, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.95);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  margin-bottom: 0.35rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.card-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.card-list li {
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 1rem;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-size: 0.9rem;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
}

.pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 216, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* Process */

.process-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  position: relative;
  padding: 1.2rem 1.1rem 1.3rem;
  border-radius: 1.3rem;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(63, 216, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.step-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* About + testimonials layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
  margin-top: 2.4rem;
}

.about-block {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.4rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border-subtle);
}

.about-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-meta span strong {
  color: var(--accent-strong);
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.06;
  top: -0.8rem;
  right: 0.6rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* CTA strip */

.cta-strip {
  margin-top: 2.8rem;
  background: radial-gradient(circle at top left, rgba(63, 216, 255, 0.26), rgba(15, 23, 42, 0.98));
  border-radius: 1.7rem;
  padding: 1.7rem 1.9rem;
  border: 1px solid rgba(63, 216, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.cta-strip h3 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.cta-strip p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 420px;
}

/* Contact */

.contact-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.3rem;
  align-items: flex-start;
}

form {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.5rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border-subtle);
}

.field-group {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.field,
select,
textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.field:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(63, 216, 255, 0.45);
  background: #020617;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.field-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.contact-meta-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.5rem;
  padding: 1.6rem 1.7rem 1.8rem;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.contact-meta-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-meta-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.contact-list {
  list-style: none;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.tagline-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(63, 216, 255, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  margin-bottom: 0.7rem;
}

/* Footer */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.6rem 0 2.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 1));
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-inner span strong {
  color: var(--accent-strong);
  font-weight: 500;
}

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

.footer-links a {
  color: var(--text-muted);
}

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

/* Responsive */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-strip {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile.show {
    display: flex;
  }

  .hero {
    padding-top: 3.2rem;
  }

  section {
    padding: 4rem 0;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stats {
    display: none;
  }
}.hero-logo-clean {
  max-width: 260px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.45));
}
/* Client logos strip */
.client-logos {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.client-logos-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: space-between;
  align-items: center;
}

.client-logo {
  flex: 1 1 calc(16.66% - 1rem); /* 6 in a row on desktop */
  max-width: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(15, 23, 42, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.client-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.8;
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.client-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 216, 255, 0.7);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Responsive for logos */
@media (max-width: 960px) {
  .client-logo {
    flex: 1 1 calc(33.33% - 1rem); /* 3 per row */
    max-width: none;
  }
}

@media (max-width: 640px) {
  .client-logo {
    flex: 1 1 48%; /* 2 per row */
  }
}
.contact-confirm,
.contact-error {
  margin-bottom: 1.5rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  font-size: 0.85rem;
}

.contact-confirm {
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.6);
  color: #bbf7d0;
}

.contact-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #fecaca;
}