/* Web Design Services - Exact Percentage Calculator Theme */
.webdesign-container { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; }
.webdesign-wrapper { max-width: 900px; margin: 0 auto; }

.webdesign-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: var(--text);
}
.webdesign-heart { font-size: 2.8rem; animation: pulse 2s infinite; }

.webdesign-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.full { grid-column: 1 / -1; }

.input-field label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}
.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-size: 1.05rem;
}

.webdesign-action-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    cursor: pointer;
}

.download-card-container { margin-top: 3rem; }
.download-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 500px;
    margin: 0 auto;
}
.dark-mode .download-card { background: linear-gradient(135deg, #1e1e2e, #2d2d44); }

/* Mobile */
@media (max-width: 767px) {
    .input-group { grid-template-columns: 1fr; }
    .webdesign-title { font-size: 2.4rem; }
}

/* Custom Alert Styles */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.custom-alert-content {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.custom-alert-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
  animation: scaleIn 0.3s ease;
}

.custom-alert-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.custom-alert-message {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.custom-alert-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.custom-alert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.custom-alert-btn:active {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}