:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9ff;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-hover: rgba(255, 255, 255, 0.9);
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border-color: rgba(0, 132, 255, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --blue: #0084ff;
  --purple: #9112bc;
}
[data-theme="dark"] {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0a0a0f;
  --bg-card: rgba(15, 15, 23, 0.6);
  --bg-card-hover: rgba(15, 15, 23, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --border-color: rgba(0, 132, 255, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.4);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background 0.3s ease, color 0.3s ease;
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-text {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgb(0 132 255 / 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgb(145 18 188 / 0.5));
  }
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--blue);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--blue);
  text-shadow: 0 0 10px rgb(0 132 255 / 0.3);
}
html,
body {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  nav {
    padding: 12px 16px;
  }
  .nav-right {
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
    font-size: 24px;
  }
  .logo {
    font-size: 18px;
    flex-shrink: 0;
  }
}
.burger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  user-select: none;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -260px;
  width: 250px;
  height: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  box-shadow: -5px 0 20px var(--shadow-color);
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 1200;
}
.sidebar a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.sidebar a:hover {
  color: var(--blue);
}
.sidebar.active {
  right: 0;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}
.theme-toggle {
  width: 60px;
  height: 30px;
  background: var(--bg-card-hover);
  border: 2px solid var(--border-color);
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  box-shadow: inset 0 2px 10px var(--shadow-color);
}
.theme-toggle:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgb(0 132 255 / 0.3);
}
.theme-toggle-slider {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px var(--shadow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
[data-theme="dark"] .theme-toggle-slider {
  transform: translateX(30px);
}
.hero {
  min-height: 100vh;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgb(0 132 255 / 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgb(145 18 188 / 0.15) 0%,
      transparent 50%
    );
  animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
.grid-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridScroll 20s linear infinite;
  opacity: 0.5;
}
@keyframes gridScroll {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px);
  }
}
.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  line-height: 1.2;
}
.hero-hashtag {
  font-size: 2.5rem;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  font-weight: 800;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  color: var(--text-secondary);
}
.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 30px rgb(0 132 255 / 0.4), 0 10px 30px var(--shadow-color),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
  transition: all 0.3s;
  animation: fadeInUp 0.8s ease 0.6s backwards;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.3),
    transparent
  );
  transition: left 0.5s;
}
.cta-button:hover::before {
  left: 100%;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgb(0 132 255 / 0.6), 0 15px 40px var(--shadow-color),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.float-item {
  position: absolute;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}
.float-item:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  box-shadow: 0 0 30px rgb(0 132 255 / 0.3);
}
.float-item:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
  box-shadow: 0 0 30px rgb(145 18 188 / 0.3);
  border-color: rgb(145 18 188 / 0.3);
}
.float-item:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
  box-shadow: 0 0 30px rgb(0 132 255 / 0.3);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}
.why-section {
  padding: 120px 5%;
  background: var(--bg-primary);
  position: relative;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 20px var(--blue);
}
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.why-content h2 span {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
}
.why-content p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(0 132 255 / 0.05) 0%,
    rgb(145 18 188 / 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-item:hover::before {
  opacity: 1;
}
.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 10px 30px var(--shadow-color), 0 0 30px rgb(0 132 255 / 0.2);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgb(0 132 255 / 0.4);
}
.feature-text {
  flex: 1;
}
.feature-text h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 1.1rem;
}
.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}
.why-mockup {
  position: relative;
}
.why-mockup img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgb(0 132 255 / 0.2));
  border-radius: 20px;
  border: 1px solid var(--border-color);
}
.why-mockup::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid rgb(145 18 188 / 0.3);
  border-radius: 50%;
  box-shadow: 0 0 40px rgb(145 18 188 / 0.3);
}
.services-section {
  padding: 120px 5%;
  background: var(--bg-secondary);
  position: relative;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  box-shadow: 0 0 20px var(--purple);
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header h2 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--blue) 50%,
    var(--purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(0 132 255 / 0.1) 0%,
    rgb(145 18 188 / 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgb(0 132 255 / 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: 0 20px 50px var(--shadow-color), 0 0 40px rgb(0 132 255 / 0.2),
    inset 0 1px 0 rgb(255 255 255 / 0.1);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 10px 30px rgb(0 132 255 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgb(0 132 255 / 0.3),
      inset 0 1px 0 rgb(255 255 255 / 0.3);
  }
  50% {
    box-shadow: 0 10px 40px rgb(0 132 255 / 0.5),
      inset 0 1px 0 rgb(255 255 255 / 0.3);
  }
}
.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}
@media (max-width: 992px) {
  .services-section {
    padding: 80px 5%;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .service-card {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding: 60px 20px;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .service-card {
    padding: 20px;
    border-radius: 15px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.projects-section {
  padding: 120px 5%;
  background: var(--bg-primary);
  position: relative;
}
.projects-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 20px var(--blue);
}
.projects-section {
  padding: 120px 5%;
  background: var(--bg-primary);
  position: relative;
}
.projects-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 20px var(--blue);
}
.project-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px var(--shadow-color);
  transition: all 0.4s;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}
.project-card:hover {
  transform: translateY(-15px);
  border-color: var(--blue);
  box-shadow: 0 25px 60px var(--shadow-color), 0 0 40px rgb(0 132 255 / 0.3);
}
.project-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  position: relative;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-image img {
  transform: scale(1.15);
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: #fff;
}
.project-info {
  padding: 30px;
}
.project-info h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.project-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.project-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgb(0 132 255 / 0.1);
  color: var(--blue);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 10px;
  margin-bottom: 8px;
  box-shadow: 0 0 15px rgb(0 132 255 / 0.2);
  transition: all 0.3s;
}
.project-tag:hover {
  background: rgb(0 132 255 / 0.2);
  box-shadow: 0 0 25px rgb(0 132 255 / 0.4);
}
.services-grid,
.projects-grid {
  display: grid;
  gap: 25px;
}
@media (max-width: 600px) {
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 601px) and (max-width: 1199px) {
  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}
.project-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px var(--shadow-color);
  transition: all 0.4s;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}
.project-card:hover {
  transform: translateY(-15px);
  border-color: var(--blue);
  box-shadow: 0 25px 60px var(--shadow-color), 0 0 40px rgb(0 132 255 / 0.3);
}
.project-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  position: relative;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-image img {
  transform: scale(1.15);
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: #fff;
}
.project-info {
  padding: 30px;
}
.project-info h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.project-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.project-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgb(0 132 255 / 0.1);
  color: var(--blue);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 10px;
  margin-bottom: 8px;
  box-shadow: 0 0 15px rgb(0 132 255 / 0.2);
  transition: all 0.3s;
}
.project-tag:hover {
  background: rgb(0 132 255 / 0.2);
  box-shadow: 0 0 25px rgb(0 132 255 / 0.4);
}
@media (max-width: 992px) {
  .projects-section {
    padding: 80px 5%;
  }
  .project-image {
    height: 240px;
  }
  .project-info {
    padding: 25px;
  }
  .project-info h3 {
    font-size: 1.2rem;
  }
  .project-info p {
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  .projects-section {
    padding: 60px 20px;
  }
  .projects-grid {
    gap: 20px;
  }
  .project-image {
    height: 200px;
  }
  .project-info {
    padding: 20px;
  }
  .project-info h3 {
    font-size: 1.1rem;
  }
  .project-info p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .project-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
    margin-right: 6px;
    margin-bottom: 6px;
  }
}
.email {
  font-size: z;
}
.contact-section {
  padding: 120px 5%;
  background: var(--bg-secondary);
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  box-shadow: 0 0 20px var(--purple);
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-color), 0 0 40px rgb(0 132 255 / 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}
.contact-info {
  background: linear-gradient(
    135deg,
    rgb(0 132 255 / 0.1) 0%,
    rgb(145 18 188 / 0.1) 100%
  );
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgb(0 132 255 / 0.1) 0%, transparent 70%);
  animation: rotateGlow 10s linear infinite;
}
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-info > * {
  position: relative;
  z-index: 1;
}
.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
}
.contact-info p {
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-secondary);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgb(0 132 255 / 0.05);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.contact-item:hover {
  background: rgb(0 132 255 / 0.1);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgb(0 132 255 / 0.2);
}
.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 20px rgb(0 132 255 / 0.4);
}
.contact-item strong {
  color: var(--text-primary);
}
.contact-item div {
  color: var(--text-secondary);
}
.contact-form {
  padding: 60px;
  background: var(--bg-card-hover);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
  color: var(--text-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg-card-hover);
  box-shadow: 0 0 20px rgb(0 132 255 / 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgb(0 132 255 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.3),
    transparent
  );
  transition: left 0.5s;
}
.submit-btn:hover::before {
  left: 100%;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgb(0 132 255 / 0.5),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
}
footer {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 50px 5%;
  text-align: center;
  border-top: 1px solid var(--border-color);
}
footer p {
  font-size: 1rem;
}
@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-hashtag {
    font-size: 1.8rem;
  }
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding: 40px;
  }
  .contact-form {
    padding: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .why-content h2 {
    font-size: 2rem;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 18px;
  min-height: 85px;
  transition: all 0.3s ease;
}
.contact-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  transform: translateY(-2px);
}
.contact-item .email {
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #555;
  margin-top: 1px;
}
.contact-item .lokasi {
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #555;
  margin-top: 1px;
}
.contact-item strong {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}
.contact-info h2 {
  font-size: 40px;
  font-weight: 600;
}
.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.08);
}
[data-theme="dark"] .contact-item strong {
  color: #ffffff !important;
}
[data-theme="dark"] .contact-item span {
  color: #cccccc !important;
}
[data-theme="dark"] .contact-item {
  color: #e0e0e0 !important;
}
@media (max-width: 768px) {
  .contact-item {
    padding: 14px 18px;
    gap: 12px;
    min-height: 80px;
  }
  .contact-item .email {
    font-size: 12.5px !important;
  }
}
