:root {
  --primary: #4876ff;
  --primary-hover: #3b60d1;
  --navy: #0d0f19;
  --bg-color: #f8f9fa;
  --bg-color-alt: #ffffff;
  --text-color: #1a1c23;
  --text-muted: #6c757d;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 10px 32px rgba(31, 38, 135, 0.08);
  --border-color: rgba(0, 0, 0, 0.1);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-color: #0d0f19;
  --bg-color-alt: #161a2b;
  --text-color: #f8f9fa;
  --text-muted: #a0aec0;
  --glass-bg: rgba(22, 26, 43, 0.68);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color var(--transition-slow),
    color var(--transition-slow);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #8e2de2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  transform: translateX(-50%);
  background: var(--primary);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: 2rem;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(72, 118, 255, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 118, 255, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-color);
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="light"] .btn-outline {
  background: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.w-100 {
  width: 100%;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    var(--primary) 0%,
    rgba(72, 118, 255, 0) 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
  mix-blend-mode: screen;
  transition:
    opacity var(--transition-normal),
    width var(--transition-fast),
    height var(--transition-fast);
}

[data-theme="light"] .cursor-glow {
  opacity: 0.1;
  mix-blend-mode: multiply;
}

.cursor-glow.active {
  width: 150px;
  height: 150px;
  opacity: 0.3;
}

.intro-screen {
  position: fixed;
  inset: 0;
  background-color: var(--bg-color);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.8s cubic-bezier(0.86, 0, 0.07, 1),
    opacity 0.8s ease;
}

.intro-screen.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.skip-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 10001;
  transition: color var(--transition-fast);
}

.skip-btn:hover {
  color: var(--text-color);
}

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

.intro-logo {
  width: 100px;
  height: 100px;
}

#z-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1.5s ease forwards;
}

.intro-text {
  font-size: 3rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInText 1s 1.5s forwards;
}

.intro-tagline {
  color: var(--text-muted);
  letter-spacing: 3px;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFade 0.8s 2.2s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--glass-shadow);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(13, 15, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color);
  letter-spacing: 1px;
}

.logo-z {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

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

.btn-primary-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary-nav::after {
  display: none;
}

.btn-primary-nav:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(72, 118, 255, 0.3);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle,
.mobile-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
}

.theme-toggle {
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.theme-toggle:hover {
  transform: rotate(15deg) scale(1.1);
}

.light-icon {
  display: none;
}

[data-theme="dark"] .light-icon {
  display: inline-block;
}

[data-theme="dark"] .dark-icon {
  display: none;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(72, 118, 255, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(142, 45, 226, 0.08),
      transparent 30%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 15, 25, 0.02) 0%,
    rgba(13, 15, 25, 0) 40%,
    rgba(13, 15, 25, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero-eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: slideUpFade 1s both;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  animation: slideUpFade 1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 auto 2.5rem;
  max-width: 700px;
  animation: slideUpFade 1s 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
  animation: slideUpFade 1s 0.4s both;
}

.js-scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.js-scroll-fade.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.about {
  background-color: var(--bg-color-alt);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2.2rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(72, 118, 255, 0.08),
    transparent 55%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--text-muted);
}

.portfolio {
  background-color: var(--bg-color-alt);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(72, 118, 255, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .portfolio-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 15, 25, 0.9) 0%,
    rgba(13, 15, 25, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-category {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.portfolio-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.25;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal) 0.1s;
}

.portfolio-card:hover .portfolio-category,
.portfolio-card:hover .portfolio-overlay h3 {
  transform: translateY(0);
  opacity: 1;
}

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

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  padding: 5px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  min-height: 72px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all var(--transition-fast);
}

.team-socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.testimonials {
  background-color: var(--bg-color);
  overflow: hidden;
}

.testimonial-carousel {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 2rem;
  position: relative;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollCarousel 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 360px;
  min-height: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  min-height: 95px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--primary);
}

@keyframes scrollCarousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

.social-live {
  background-color: var(--bg-color-alt);
}

.container-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.social-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-title .fa-facebook {
  color: #1877f2;
}

.fb-mock-embed,
.live-cta {
  border-radius: 24px;
}

.fb-mock-embed {
  padding: 1.5rem;
}

.fb-post-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fb-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.fb-info h4 {
  font-size: 1rem;
}

.fb-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fb-post p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.fb-post img {
  border-radius: 14px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.live-badge span {
  width: 8px;
  height: 8px;
  background: #dc3545;
  border-radius: 50%;
  animation: pulseRed 2s infinite;
}

.live-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.live-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--bg-color-alt);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glass-shadow);
}

.blog-img {
  position: relative;
  height: 220px;
}

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

.blog-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}

.blog-content {
  padding: 1.6rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 56px;
}

.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link i {
  transition: transform var(--transition-fast);
}

.blog-link:hover i {
  transform: translateX(5px);
}

.contact {
  background-color: var(--bg-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-title {
  text-align: left;
}

.contact-title::after {
  left: 0;
  transform: none;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(72, 118, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--text-muted);
}

.contact-socials {
  display: flex;
  gap: 1rem;
}

.contact-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-color-alt);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.contact-socials a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.contact-form-wrapper {
  border-radius: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  font-size: 1rem;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(72, 118, 255, 0.12);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(0, 0, 0, 0.2);
}

.footer {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  color: #fff;
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(72, 118, 255, 0.1),
      transparent 25%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(142, 45, 226, 0.1),
      transparent 25%
    );
  pointer-events: none;
}

.footer-container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  margin-top: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #25d366;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

[data-theme="dark"] .whatsapp-float {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-normal);
    z-index: 999;
  }

  [data-theme="dark"] .nav-menu {
    background: rgba(13, 15, 25, 0.92);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.5rem;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-ctas {
    flex-wrap: wrap;
  }

  .about-container,
  .contact-container,
  .container-social {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .glass-card,
  .team-card,
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-img,
  .blog-img {
    height: 240px;
  }

  .testimonial-card {
    width: 300px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }
}
