 /* html {
        scroll-behavior: smooth;
    } */
/* Section */
.contact-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, hsl(353, 57%, 77%), hsl(353, 42%, 50%));
}

/* Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* Modern Card */
.contact-modern-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Single Row */
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

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

/* Icon Circle */
.contact-icon {
  width: 50px;
  height: 50px;
  background: hsl(353, 100%, 78%);
  color: hsl(0, 0%, 0%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Text */
.contact-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info p {
  margin: 4px 0 0;
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-modern-card {
    padding: 30px 20px;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}

/* Section */
.order-section-modern {
  padding: 80px 20px;
  background: #fff;
}

.order-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(353, 100%, 78%);
  margin-bottom: 10px;
}

.order-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* Timeline Container */
.order-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Vertical/Horizontal Connector Line */
.order-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: #eee;
  z-index: 0;
}

/* Step Item */
.order-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

/* Step Circle Number */
.step-circle {
  width: 60px;
  height: 60px;
  background: hsl(353, 100%, 78%);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(255, 0, 95, 0.3);
  transition: all 0.3s ease;
}

/* Hover Glow */
.order-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 0, 95, 0.4);
}

/* Titles */
.order-step h4 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

/* Descriptions */
.order-step p {
  color: #555;
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {

  .order-timeline::before {
    display: none;
  }

  .order-step {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
  }

  .step-circle {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}



.faq-section {
  padding: 70px 20px;
  background: #fff;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color:hsl(353, 100%, 78%);
  margin-bottom: 40px;
}

/* FAQ Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* FAQ Card */
.faq-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-card:hover {
  transform: translateY(-5px);
  border-color: hsl(353, 100%, 78%);
  box-shadow: 0 6px 18px rgba(234, 76, 137, 0.2);
}

/* FAQ Question */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question i {
  color: hsl(353, 100%, 78%);
  font-size: 1.3rem;
}

.faq-toggle i {
  font-size: 1rem;
  color: hsl(353, 100%, 78%);
  transition: transform 0.3s ease;
}

/* Rotate on active */
.faq-card.active .faq-toggle i {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fffafc;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-card.active .faq-answer {
  max-height: 250px;
  padding: 15px 20px 20px;
}

.faq-answer p {
  color: #555;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 15px;
    padding: 15px;
  }
}

.request-section {
  padding: 70px 20px;
  background: #fff;
}

@media (max-width: 360px) {
  html,
  body {
    overflow-x: hidden;
  }

  .header-main .container,
  .footer-nav .container,
  .footer-bottom .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-logo img {
    width: min(180px, 100%);
  }

  .header-search-container .search-field {
    padding-left: 12px;
    padding-right: 44px;
  }

  .contact-section,
  .order-section-modern,
  .faq-section,
  .request-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .contact-modern-card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .contact-item {
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
  }

  .contact-info {
    min-width: 0;
  }

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

  .contact-info p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-nav-list,
  .footer-nav-item,
  .footer-nav-item.flex,
  .footer-nav-item .content,
  .footer-nav-link {
    min-width: 0;
    max-width: 100%;
  }

  .footer-nav-link,
  .footer-nav-item .content,
  .copyright {
    width: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .payment-img {
    max-width: 100%;
  }

  .mobile-bottom-navigation .action-btn {
    font-size: 24px;
    padding: 8px;
  }

  .mobile-bottom-navigation .count {
    font-size: 11px;
  }
}

/* Two-column form layout */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Mobile view → single column */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.request-container {
  max-width: 900px; /* 🔥 Increased width from 650px to 900px */
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 50px 40px; /* Slightly increased padding */
}

.request-title {
  text-align: center;
  font-size: 2.2rem; /* Bigger title */
  font-weight: 700;
  color: hsl(353, 100%, 78%);
  margin-bottom: 10px;
}

.request-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.request-form .form-group {
  margin-bottom: 20px;
}

.request-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.request-form label i {
  color: hsl(353, 100%, 78%);
  margin-right: 6px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 14px 16px; /* slightly larger fields */
  border: 1.8px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: hsl(353, 100%, 78%);
  box-shadow: 0 0 6px hsla(353, 100%, 78%, 0.4);
}

.request-btn {
  width: 100%;
  background: hsl(353, 100%, 78%);
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 17px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.request-btn:hover {
  background: hsl(353, 90%, 65%);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .request-container {
    padding: 30px 20px;
  }

  .request-title {
    font-size: 1.8rem;
  }
}


.form-message {
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-action.request-project {
    background: #4CAF50;
    color: white;
}

.btn-action.request-project:hover {
    background: #45a049;
}
