:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --text-muted: #888888;
  --accent-glow: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0; 
  overflow: hidden;
  background: transparent;
}


h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  will-change: transform, opacity;
}

.primary-btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  will-change: transform, box-shadow, background;
}

.primary-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.text-gradient {
  background: linear-gradient(to right, #fff, #888);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  border-radius: 100px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

.nav-links li a:hover {
  opacity: 1;
}

.nav-contact-btn {
  padding: 10px 24px;
  background: #fff;
  color: #000 !important;
  border-radius: 100px;
  font-weight: 600 !important;
  opacity: 1 !important;
}

.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  padding: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 15px;
  border-radius: 20px !important;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 18px;
  color: #fff;
}

.nav-links li a.active {
  opacity: 1;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 40px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}

.scroll-indicator span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #fff, transparent);
}


.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  font-size: 1.1em;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.clay-card {
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px; 
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;

  box-shadow:
    15px 15px 30px rgba(0, 0, 0, 0.4),
    inset -5px -5px 15px rgba(0, 0, 0, 0.2),
    inset 5px 5px 15px rgba(255, 255, 255, 0.05);

  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.clay-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    20px 20px 40px rgba(0, 0, 0, 0.5),
    inset -5px -5px 15px rgba(0, 0, 0, 0.2),
    inset 5px 5px 15px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-image-container {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); 
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.clay-card:hover .card-image-container img {
  transform: scale(1.1);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px 10px 10px;
}

.card-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.8;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: inline-block;
}

.clay-card:hover .card-link {
  opacity: 1;
  transform: translateX(5px);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #aaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.team-section {
  padding: 5vh 10vw; 
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}


.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section {
  margin: 10vh 10vw;
  padding: 100px;
  text-align: center;
}

.about-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 30px;
  background: linear-gradient(to right, #fff, #999);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.services-section {
  padding: 15vh 10vw;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tools-marquee-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin: 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 80px;
  padding-right: 80px;
  animation: scrollMarquee 35s linear infinite;
  align-items: center;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.tool-item {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.tool-item:hover {
  -webkit-text-stroke: 0px transparent;
  transform: scale(1.1) translateY(-5px);
}

.tool-wordpress { color: #21759b; }
.tool-php { color: #8993be; }
.tool-html { color: #e34f26; }
.tool-css { color: #1572b6; }
.tool-js { color: #f7df1e; }
.tool-nodejs { color: #339933; }
.tool-mysql { color: #4479a1; }
.tool-react { color: #61dafb; }
.tool-mongodb { color: #47a248; }
.tool-python { color: #3776ab; }
.tool-figma { color: #f24e1e; }
.tool-aws { color: #ff9900; }

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .tool-item {
    font-size: 2rem;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  }
  .marquee-content {
    gap: 40px;
    padding-right: 40px;
  }
  .tools-marquee-section {
    padding: 40px 0;
  }
}

.clients-marquee-section {
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin: 0;
  border-top: 1px solid var(--glass-border);
}

.client-marquee-content {
  gap: 120px;
  padding-right: 120px;
  animation: scrollMarquee 20s linear infinite;
}

.client-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  cursor: pointer;
}

.client-logo:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .client-logo {
    height: 50px;
  }
  .client-marquee-content {
    gap: 60px;
    padding-right: 60px;
  }
  .clients-marquee-section {
    padding: 40px 0;
  }
}

.testimonials-section {
  padding: 15vh 10vw;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 4rem;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 198, 255, 0.4));
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-section {
  padding: 15vh 20px;
  display: flex;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
}

.contact-info-column,
.contact-container {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #fff;
}

.contact-text p, .contact-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #fff;
}

.discord-card {
  cursor: pointer;
  border-color: rgba(88, 101, 242, 0.3);
}

.discord-card:hover {
  background: rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.15);
}

.discord-card .contact-icon {
  background: rgba(88, 101, 242, 0.2);
  color: #5865F2;
}

.whatsapp-card {
  cursor: pointer;
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
}

.contact-header {
  margin-bottom: 40px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 15px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option input {
  display: none;
}

.glass-pill {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-option:hover .glass-pill {
  background: rgba(255, 255, 255, 0.08); 
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.service-option input:checked + .glass-pill {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  color: #fff;
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

.footer {
  padding: 100px 10vw 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand .footer-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-whatsapp-request h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-whatsapp-request p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.whatsapp-form {
  display: flex;
  gap: 10px;
}

.whatsapp-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 12px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.whatsapp-form .whatsapp-btn {
  background: #25D366;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-form .whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}

.social-icon-btn.whatsapp:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(188, 24, 136, 0.4);
}

.social-icon-btn.discord:hover {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 30px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-logo-text {
    font-weight: 800;
    text-decoration: none;
    position: relative;
    background: linear-gradient(
        to right,
        #7f7f7f,
        #e0e0e0,
        #ffffff,
        #e0e0e0,
        #7f7f7f
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.metallic-link {
    font-weight: 600;
    text-decoration: none;
    position: relative;
    background: linear-gradient(
        to right,
        #bf953f,
        #fcf6ba,
        #b38728,
        #fbf5b7,
        #aa771c
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.metallic-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #aa771c);
    transition: width 0.3s ease;
}

.metallic-link:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
}

.footer-logo-text {
    font-weight: 800; 
}

.metallic-link:hover::after {
    width: 100%;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
  will-change: opacity;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.fade-in-up-prepare {
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .navbar {
    width: 100%;
    top: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.8);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-section {
    margin: 5vh 5vw;
    padding: 40px 20px;
  }

  .about-features {
    gap: 20px;
    margin-top: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-column,
  .contact-container {
    padding: 30px;
  }

  .service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .glass-pill {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p, .footer-links a {
    margin: 0 auto;
  }

  .footer-socials, .whatsapp-form {
    justify-content: center;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.close-modal:hover {
  opacity: 1;
}

.modal-header {
  margin-bottom: 30px;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
}

.form-row input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 15px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-row input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.template-summary {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.template-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.template-summary-item .label {
  opacity: 0.6;
}

.template-summary-item .value {
  font-weight: 600;
}

.submit-btn {
    width: 100%;
}

.status-msg {
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.2rem;
}
