:root {
  --primary: rgb(221, 172, 99);
  --primary-gradient: linear-gradient(135deg, rgb(221, 172, 99) 0%, rgb(241, 201, 143) 100%);
  --text: rgb(240, 240, 240);
  --bg-dark: #121212;
  --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --card-bg: #1a1a1a;
  --border: #333333;
  --success: #4caf50;
  --highlight: rgba(221, 172, 99, 0.2);
  --error: #f44336;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-gradient);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: rgb(241, 201, 143);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  background-color: var(--bg-dark);
  color: var(--text);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(221, 172, 99, 0.3);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(221, 172, 99, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
}

.logo-text h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.logo-text p {
  font-size: 1rem;
  margin: 0;
  color: var(--primary);
  opacity: 0.9;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

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

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary);
}

.main {
  padding: 3rem 0;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 1.5px;
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 100%;
}

.card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 172, 99, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(221, 172, 99, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
}

/* Form Progress */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.form-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

.progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: #121212;
}

.progress-step.active .step-label {
  color: var(--primary);
  opacity: 1;
}

.progress-step.completed .step-number {
  background-color: var(--success);
  border-color: var(--success);
  color: #fff;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  margin-bottom: 1rem;
}

.form-step p {
  margin-bottom: 2rem;
  color: var(--text);
  opacity: 0.8;
}

/* Language Selection */
.language-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.language-option {
  position: relative;
}

.language-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.language-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: rgba(26, 26, 26, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-option label i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.language-option label span {
  font-weight: 500;
}

.language-option input:checked + label {
  background-color: rgba(221, 172, 99, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Budget Selection */
.budget-section {
  margin-bottom: 2rem;
}

.budget-section h4 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.budget-option {
  position: relative;
  margin-bottom: 1rem;
}

.budget-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.budget-option label {
  display: block;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.option-name {
  font-weight: 600;
}

.option-price {
  color: var(--primary);
  font-weight: 600;
}

.option-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.budget-option input:checked + label {
  background-color: rgba(221, 172, 99, 0.1);
  border-color: var(--primary);
}

.total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: rgba(221, 172, 99, 0.1);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.total-label {
  font-weight: 600;
  font-size: 1.1rem;
}

.total-amount {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

/* Form Fields */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: rgba(26, 26, 26, 0.7);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(221, 172, 99, 0.2);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
}

.error-message {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* Summary Section */
.summary-section {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.summary-section h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(221, 172, 99, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 500;
}

.summary-value {
  color: var(--primary);
}

/* Photo Instructions */
.photo-instructions {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.photo-instructions h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.photo-instructions ul {
  list-style-position: inside;
  margin-left: 1rem;
}

.photo-instructions li {
  margin-bottom: 0.5rem;
}

/* Examples Section */
.examples-section {
  margin-bottom: 2rem;
}

.examples-section h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

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







/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

/* Button Styles */
.btn {
  position: relative;
  display: inline-block;
  padding: 0;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  border: none;
  background: transparent;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}

.btn:hover .btn-content {
  transform: scale(1.05);
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary-gradient);
  color: #121212;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary .btn-content {
  color: #121212;
}

.btn-primary .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(221, 172, 99, 0.3);
}

.btn-primary:hover .btn-glow {
  opacity: 0.2;
  animation: pulse 1.5s infinite;
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline .btn-content {
  color: var(--text);
}

.btn-outline .btn-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary);
  border-radius: 4px;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover .btn-border {
  border-color: transparent;
  box-shadow: inset 0 0 0 2px var(--primary);
  animation: borderPulse 1.5s infinite;
}

.btn-outline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(221, 172, 99, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-outline:hover:before {
  opacity: 1;
}

.btn-prev .btn-content i {
  transform: translateX(0);
}

.btn-prev:hover .btn-content i {
  transform: translateX(-3px);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(221, 172, 99, 0.3);
}

.footer p {
  margin: 0;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(221, 172, 99, 0.1);
  color: var(--primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(221, 172, 99, 0.3);
}

.social-link:hover {
  background-color: var(--primary);
  color: #121212;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary-gradient);
  width: 0%;
  z-index: 1000;
  transition: width 0.2s ease;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

@keyframes borderPulse {
  0% {
    box-shadow: inset 0 0 0 2px var(--primary), 0 0 0 0 rgba(221, 172, 99, 0.3);
  }
  50% {
    box-shadow: inset 0 0 0 2px var(--primary), 0 0 0 10px rgba(221, 172, 99, 0);
  }
  100% {
    box-shadow: inset 0 0 0 2px var(--primary), 0 0 0 0 rgba(221, 172, 99, 0);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.8rem;
  }

  .form-progress {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .progress-step {
    min-width: 100px;
  }

  .language-options,
  .examples-grid {
    grid-template-columns: 1fr;
  }

  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .form-navigation .btn {
    width: 100%;
  }

  .step-label {
    font-size: 0.8rem;
  }
}
/* Examples Section - Card Style */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.example-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--card-bg);
    border: 1px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.example-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.example-card span {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }
}