/* ============================================
   UPDATE.CSS - Enhanced Styling & Animations
   Brain Point - Web & Mobile App Development
   ============================================ */

/* Color variables to match template */
:root {
  --primary-color: #fd6442;
  --secondary-color: #fe7d5f;
  --dark-bg: #0A0A0A;
  --light-text: #a1a1a1;
  --white-text: #ffffff;
}

/* =============== ANIMATIONS =============== */

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

/* Slide In Left Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
}

/* Slide In Right Animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(253, 100, 66, 0.1);
  }
  50% {
    box-shadow: 0 10px 50px rgba(253, 100, 66, 0.3);
  }
}

.pulse-animation {
  animation: pulse 3s ease-in-out infinite;
}

/* Hover Lift Animation */
@keyframes hoverLift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.hover-lift:hover {
  animation: hoverLift 0.4s ease-out forwards;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce-animation {
  animation: bounce 2s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate-animation {
  animation: rotate 10s linear infinite;
}

/* Glow Animation */
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(253, 100, 66, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(253, 100, 66, 0.8);
  }
}

.glow-text {
  animation: glow 2s ease-in-out infinite;
}

/* =============== UTILITY CLASSES =============== */

.fadeInUp-animation {
  animation: fadeInUp 1s ease-out;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: none;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fd6442, rgba(253, 100, 66, 0.3));
  border-radius: 2px;
}

.lead-text {
  font-size: 1.125rem;
  color: #c9c9c9;
  line-height: 1.8;
  font-weight: 300;
}

/* =============== HEADER & HERO SECTION =============== */

.page-title {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  padding: 100px 0;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.7);
  z-index: 1;
}

.page-title .title {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fd6442;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title .page-breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

/* =============== INFO CARDS =============== */

.info-card {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(253, 100, 66, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.info-card:hover {
  border-color: #fd6442;
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: 0 15px 40px rgba(253, 100, 66, 0.2);
  transform: translateY(-5px);
}

.info-card .card-icon {
  font-size: 2.5rem;
  color: #fd6442;
  margin-bottom: 1rem;
}

.info-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.info-card p {
  color: #a1a1a1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =============== FEATURE ITEMS =============== */

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(253, 100, 66, 0.03);
  border-radius: 10px;
  border-left: 4px solid #fd6442;
  transition: all 0.4s ease;
  height: 100%;
}

.feature-item:hover {
  background: rgba(253, 100, 66, 0.1);
  transform: translateX(10px);
}

.feature-item .feature-icon {
  font-size: 2rem;
  color: #fd6442;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .feature-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-item .feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.feature-item .feature-content p {
  color: #a1a1a1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

/* =============== SERVICE ILLUSTRATIONS =============== */

.service-illustrations {
  position: relative;
  margin-top: 3rem;
}

.illustration-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.illustration-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.illustration-card:hover img {
  transform: scale(1.08);
}

.illustration-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.6));
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.illustration-card:hover .illustration-label {
  transform: translateY(0);
  opacity: 1;
}

.illustration-label h5 {
  color: #fd6442;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

.rounded-xl {
  border-radius: 20px;
}

.shadow-lg {
  box-shadow: 0 15px 50px rgba(253, 100, 66, 0.2);
}

/* =============== SERVICE CARDS =============== */

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(253, 100, 66, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fd6442, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  border-color: #fd6442;
  background: rgba(253, 100, 66, 0.05);
  box-shadow: 0 20px 60px rgba(253, 100, 66, 0.15);
  transform: translateY(-10px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card img {
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.service-card p {
  color: #a1a1a1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  color: #c9c9c9;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.service-list li i {
  color: #fd6442;
  margin-right: 0.75rem;
}

/* =============== SERVICE TAGS =============== */

.service-tag {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  text-align: center;
}

.service-tag:hover {
  border-color: #fd6442;
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: 0 10px 30px rgba(253, 100, 66, 0.15);
  transform: translateY(-8px);
}

.service-tag h6 {
  color: #fd6442;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-tag h6 i {
  margin-right: 0.75rem;
}

.service-tag p {
  color: #a1a1a1;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* =============== WHY IT MATTERS SECTION =============== */

.matters-section {
  position: relative;
}

.matters-card {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.matters-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fd6442, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.matters-card:hover {
  border-color: #fd6442;
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 60px rgba(253, 100, 66, 0.15);
  transform: translateY(-12px);
}

.matters-card:hover::before {
  transform: scaleX(1);
}

.matters-card .matters-icon {
  font-size: 3rem;
  color: #fd6442;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.4s ease;
}

.matters-card:hover .matters-icon {
  transform: scale(1.15) rotate(10deg);
}

.matters-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.matters-card p {
  color: #a1a1a1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* =============== PROCESS STEPS =============== */

.process-timeline {
  position: relative;
}

.process-step {
  background: rgba(253, 100, 66, 0.05);
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.process-step:hover {
  border-color: #fd6442;
  background: rgba(253, 100, 66, 0.12);
  box-shadow: 0 15px 40px rgba(253, 100, 66, 0.15);
  transform: translateY(-8px);
}

.process-step .step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fd6442;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.process-step .step-icon {
  font-size: 2.5rem;
  color: #fd6442;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.process-step h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #a1a1a1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* =============== SERVICE OFFER CARDS =============== */

.service-offer-card {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.4s ease;
}

.service-offer-card:hover {
  border-color: #fd6442;
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: 0 15px 40px rgba(253, 100, 66, 0.15);
  transform: translateY(-8px);
}

.service-offer-card .offer-icon {
  font-size: 2.5rem;
  color: #fd6442;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-offer-card:hover .offer-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-offer-card h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* =============== GOAL ITEMS =============== */

.goal-item {
  background: rgba(253, 100, 66, 0.05);
  border-left: 4px solid #fd6442;
  border-radius: 8px;
  padding: 1.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.goal-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 100, 66, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.goal-item:hover {
  border-left-color: #fff;
  background: rgba(253, 100, 66, 0.1);
  box-shadow: 0 10px 30px rgba(253, 100, 66, 0.15);
  transform: translateX(8px);
}

.goal-item .goal-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fd6442;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.goal-item h5 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.goal-item p {
  color: #a1a1a1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* =============== TECHNOLOGY STACK =============== */

.tech-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(253, 100, 66, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.tech-category:hover {
  border-color: #fd6442;
  background: rgba(253, 100, 66, 0.08);
  box-shadow: 0 10px 30px rgba(253, 100, 66, 0.1);
}

.tech-heading {
  color: #fd6442;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.tech-heading i {
  margin-right: 0.75rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-badge {
  display: inline-block;
  background: rgba(253, 100, 66, 0.1);
  color: #fd6442;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(253, 100, 66, 0.2);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: #fd6442;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(253, 100, 66, 0.3);
}

/* =============== BENEFIT ITEMS =============== */

.benefit-item {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.benefit-item:hover {
  border-color: #fd6442;
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: 0 15px 40px rgba(253, 100, 66, 0.15);
  transform: translateY(-10px);
}

.benefit-item .benefit-icon {
  font-size: 3rem;
  color: #fd6442;
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.benefit-item h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  color: #a1a1a1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* =============== OVERVIEW SECTION =============== */

.overview-section {
  background: rgba(253, 100, 66, 0.02);
  border-left: 4px solid #fd6442;
  padding: 2rem;
  border-radius: 8px;
}

.service-hero-image {
  overflow: hidden;
  border-radius: 15px;
}

.service-hero-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.service-hero-image:hover img {
  transform: scale(1.05);
}

/* =============== ACCORDION ENHANCEMENTS =============== */

.accordion-box {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion.block {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(253, 100, 66, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion.block:hover {
  border-color: #fd6442;
  background: rgba(253, 100, 66, 0.05);
  box-shadow: 0 10px 30px rgba(253, 100, 66, 0.1);
}

.acc-btn {
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.acc-btn:hover {
  background: rgba(253, 100, 66, 0.05);
}

.acc-btn.active {
  color: #fd6442;
}

.acc-btn span {
  color: #fff;
  font-weight: 500;
}

.acc-btn .icon {
  color: #fd6442;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.acc-btn.active .icon {
  transform: rotate(45deg);
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.acc-content.current {
  max-height: 500px;
}

.acc-content .text {
  color: #a1a1a1;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =============== BORDER STYLING =============== */

.border-bottom {
  border-bottom: 1px solid rgba(253, 100, 66, 0.1) !important;
}

.border-bottom-0 {
  border-bottom: none !important;
}

/* =============== ROUNDED IMAGES =============== */

.rounded-lg {
  border-radius: 15px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* =============== RESPONSIVE DESIGN =============== */

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .page-title .title {
    font-size: 2rem;
  }

  .info-card,
  .feature-item,
  .service-card,
  .benefit-item,
  .service-offer-card,
  .goal-item,
  .matters-card {
    padding: 1.5rem 1rem;
  }

  .tech-items {
    gap: 0.5rem;
  }

  .tech-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .process-step .step-number,
  .process-step .step-icon {
    font-size: 2rem;
  }

  .feature-item {
    gap: 1rem;
  }

  .feature-item .feature-icon {
    min-width: 50px;
    font-size: 1.75rem;
  }

  .service-tag,
  .service-offer-card,
  .matters-card {
    padding: 1.25rem 1rem;
  }

  .goal-item {
    padding: 1.25rem;
  }

  .goal-item .goal-number {
    font-size: 1.5rem;
  }

  .matters-card .matters-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-title::after {
    bottom: -12px;
  }

  .page-title .title {
    font-size: 1.5rem;
  }

  .page-title {
    padding: 60px 0;
  }

  .lead-text {
    font-size: 1rem;
  }

  .info-card,
  .service-offer-card,
  .goal-item {
    padding: 1.25rem;
  }

  .info-card .card-icon,
  .service-offer-card .offer-icon {
    font-size: 2rem;
  }

  .benefit-item .benefit-icon {
    font-size: 2.5rem;
  }

  .process-step {
    padding: 1.25rem;
  }

  .process-step .step-number,
  .process-step .step-icon {
    font-size: 1.75rem;
  }

  .goal-item .goal-number {
    font-size: 1.25rem;
  }

  .acc-btn {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .accordion.block {
    margin-bottom: 1rem;
  }

  .service-offer-card h5,
  .goal-item h5 {
    font-size: 1rem;
  }
}

/* =============== DARK MODE OPTIMIZATIONS =============== */

body {
  background: #111;
  color: #a1a1a1;
}

/* Enhanced text contrast */
.services-details__content p {
  color: #a1a1a1;
  line-height: 1.8;
}

.services-details__content h3 {
  color: #fff;
  font-weight: 600;
}

.services-details__content h5 {
  color: #fff;
  font-weight: 600;
}

/* =============== ADDITIONAL UTILITY CLASSES =============== */

.mt-25 {
  margin-top: 1.5rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.text-center {
  text-align: center;
}

/* =============== SCROLL ANIMATION TRIGGERS =============== */

@media (prefers-reduced-motion: no-preference) {
  .fade-in-up {
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .slide-in-left {
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .slide-in-right {
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}

/* =============== CUSTOM SCROLLBAR =============== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(253, 100, 66, 0.05);
}

::-webkit-scrollbar-thumb {
  background: #fd6442;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(253, 100, 66, 0.8);
}

/* =============== FOCUS STATES =============== */

a:focus,
button:focus {
  outline: 2px solid #fd6442;
  outline-offset: 2px;
}

/* =============== PRINT STYLES =============== */

@media print {
  .fade-in-up,
  .slide-in-left,
  .slide-in-right,
  .pulse-animation {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =============== HOW WE WORK SECTION =============== */

.how-we-work-section {
  background: linear-gradient(135deg, #111 0%, rgba(17, 17, 17, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.how-we-work-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(253, 100, 66, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.how-we-work-section > .auto-container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #fd6442;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header .sub-title img {
  width: 20px;
  height: 20px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: #a1a1a1;
  line-height: 1.8;
  font-family: 'Noto Sans', sans-serif;
}

/* How Work Cards */
.how-work-card {
  background: rgba(253, 100, 66, 0.08);
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 15px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.how-work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #fd6442 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.how-work-card:hover {
  background: rgba(253, 100, 66, 0.15);
  border-color: rgba(253, 100, 66, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(253, 100, 66, 0.2);
}

.how-work-card:hover::before {
  transform: scaleX(1);
}

.how-work-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 20px;
}

.how-work-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(253, 100, 66, 0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin: 0;
}

.how-work-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fd6442 0%, rgba(253, 100, 66, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #111;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.how-work-card:hover .how-work-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(253, 100, 66, 0.3);
}

.how-work-content {
  margin-bottom: 20px;
  flex-grow: 1;
}

.how-work-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

.how-work-card:hover .how-work-title {
  color: #fd6442;
}

.how-work-description {
  font-size: 0.95rem;
  color: #a1a1a1;
  line-height: 1.7;
  font-family: 'Noto Sans', sans-serif;
  margin: 0;
}

.how-work-image {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.how-work-card:hover .how-work-image img {
  transform: scale(1.08);
}

/* Full Width Card for Step 5 */
.how-work-card-full {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.12) 0%, rgba(253, 100, 66, 0.05) 100%);
  border: 1px solid rgba(253, 100, 66, 0.2);
  padding: 50px;
}

.how-work-card-full .row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.how-work-image-large {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-work-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.how-work-card-full:hover .how-work-image-large img {
  transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-title {
    font-size: 2.5rem;
  }

  .how-work-card {
    padding: 30px;
  }

  .how-work-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .how-work-number {
    font-size: 3rem;
  }

  .how-work-image {
    height: 200px;
  }

  .how-work-card-full {
    padding: 40px;
  }

  .how-work-card-full .row {
    gap: 30px;
  }

  .how-work-image-large {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .how-work-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .how-work-card-header {
    margin-bottom: 20px;
  }

  .how-work-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .how-work-number {
    font-size: 2.5rem;
  }

  .how-work-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .how-work-description {
    font-size: 0.9rem;
  }

  .how-work-image {
    height: 180px;
  }

  .how-work-card-full {
    padding: 30px;
  }

  .how-work-card-full .row {
    flex-direction: column;
    gap: 30px;
  }

  .how-work-image-large {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .how-work-card {
    padding: 20px;
    margin-bottom: 15px;
  }

  .how-work-card-header {
    margin-bottom: 15px;
  }

  .how-work-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .how-work-number {
    font-size: 2rem;
  }

  .how-work-title {
    font-size: 1.1rem;
  }

  .how-work-description {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .how-work-image {
    height: 150px;
  }

  .how-work-card-full {
    padding: 20px;
  }

  .how-work-image-large {
    height: 200px;
  }

  .section-header .sub-title {
    font-size: 0.8rem;
  }
}/* =============== WORK SECTION - BOOTSTRAP GRID LAYOUT =============== */

.work-single-box-new {
  background: transparent;
  padding: 0;
  backdrop-filter: none;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  display: block;
  border: none;
}

.work-single-box-new .row {
  background: var(--theme-color4);
  backdrop-filter: blur(10px);
  padding: 40px 35px;
  border-radius: 12px;
  align-items: center;
  transition: all 0.5s ease;
  position: relative;
}

.work-single-box-new .row:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(253, 100, 66, 0.15);
}

.work-single-box-new .work-content {
  padding: 0;
  margin: 0;
}

.work-single-box-new .work-content .title {
  margin-bottom: 20px;
  position: relative;
  padding-left: 0;
  font-size: 1.75rem;
}

.work-single-box-new .work-content p {
  margin-right: 0;
  line-height: 1.8;
  color: #a1a1a1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.work-single-box-new .work-content span.work-date {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 0.9rem;
  color: #fd6442;
  margin: 15px 0 30px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.work-img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-single-box-new .work-img {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.work-single-box-new .work-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-single-box-new .work-img:hover img {
  transform: scale(1.05);
}

.work-single-box-new .work-img .work-shape {
  position: absolute;
  bottom: -20px;
  left: -50px;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 2;
}

.work-single-box-new:hover .work-shape {
  opacity: 1;
  left: -30px;
  bottom: -10px;
}

.work-single-box-new h3.wokr-number {
  font-weight: 300;
  font-size: 3rem;
  color: rgba(161, 161, 161, 0.15);
  position: absolute;
  top: -15px;
  left: 30px;
  z-index: 0;
  margin: 0;
}

.theme-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-btn-main .theme-btn {
  padding: 12px 28px;
  border-radius: 6px;
  background: #fd6442 !important;
  color: #111 !important;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fd6442 !important;
  color: #111 !important;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.theme-btn-main:hover .theme-btn-arrow-left {
  transform: translateX(-5px);
}

.theme-btn-main:hover .theme-btn-arrow-right {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .work-single-box-new {
    margin-bottom: 45px;
  }

  .work-single-box-new .row {
    padding: 30px 25px;
  }

  .work-single-box-new .work-content .title {
    font-size: 1.5rem;
  }

  .work-single-box-new h3.wokr-number {
    font-size: 2.5rem;
    top: -10px;
    left: 20px;
  }
}

@media (max-width: 768px) {
  .work-single-box-new {
    margin-bottom: 40px;
  }

  .work-single-box-new .row {
    flex-direction: column;
    padding: 25px 20px;
  }

  .work-single-box-new .col-md-7,
  .work-single-box-new .col-md-5 {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .work-single-box-new .col-md-5.order-lg-2 {
    margin-bottom: 0;
  }

  .work-single-box-new .work-content .title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .work-single-box-new .work-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .work-single-box-new .work-content span.work-date {
    margin: 10px 0 20px;
  }

  .work-single-box-new h3.wokr-number {
    font-size: 2rem;
    top: -5px;
    left: 15px;
  }

  .theme-btn-main .theme-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .theme-btn-main .theme-btn-arrow-left,
  .theme-btn-main .theme-btn-arrow-right {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .work-single-box-new {
    margin-bottom: 35px;
  }

  .work-single-box-new .row {
    padding: 20px 15px;
    margin-bottom: 0;
  }

  .work-single-box-new .work-content .title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .work-single-box-new .work-content p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }

  .work-single-box-new .work-content span.work-date {
    font-size: 0.8rem;
    margin: 8px 0 15px;
  }

  .work-single-box-new h3.wokr-number {
    font-size: 1.5rem;
    top: 0;
    left: 10px;
  }

  .theme-btn-main .theme-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .theme-btn-main .theme-btn-arrow-left,
  .theme-btn-main .theme-btn-arrow-right {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
  }

  .work-img-container {
    margin-top: 1rem;
  }
}
/* =============== HOW WE WORK SECTION - WEB VERSION =============== */

.how-we-work-section-web {
  position: relative;
}

/* Keyframe Animations for How We Work Section */
@keyframes cardBorder {
  0% {
    box-shadow: inset 0 0 0 1px rgba(253, 100, 66, 0.1), 0 10px 30px rgba(253, 100, 66, 0.05);
  }
  50% {
    box-shadow: inset 0 0 20px rgba(253, 100, 66, 0.15), 0 20px 60px rgba(253, 100, 66, 0.2);
  }
  100% {
    box-shadow: inset 0 0 0 1px rgba(253, 100, 66, 0.1), 0 10px 30px rgba(253, 100, 66, 0.05);
  }
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(253, 100, 66, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(253, 100, 66, 0);
  }
}

@keyframes numberGlow {
  0%, 100% {
    text-shadow: 0 0 0px rgba(253, 100, 66, 0);
  }
  50% {
    text-shadow: 0 0 20px rgba(253, 100, 66, 0.3);
  }
}

.how-work-card-web {
  background: rgba(253, 100, 66, 0.08);
  border: 1px solid rgba(253, 100, 66, 0.15);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(253, 100, 66, 0.05);
}

.how-work-card-web::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 100, 66, 0.1), transparent);
  transition: left 0.6s ease;
}

.how-work-card-web:hover::before {
  left: 100%;
}

.how-work-card-web::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #fd6442 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.how-work-card-web:hover::after {
  transform: scaleX(1);
}

.how-work-card-web:hover {
  background: rgba(253, 100, 66, 0.12);
  border-color: rgba(253, 100, 66, 0.35);
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(253, 100, 66, 0.2);
}

.how-work-number-web {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(253, 100, 66, 0.12);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin: 0 0 15px 0;
  transition: all 0.6s ease;
  letter-spacing: 2px;
}

.how-work-card-web:hover .how-work-number-web {
  color: rgba(253, 100, 66, 0.25);
  animation: numberGlow 2s ease infinite;
}

.how-work-icon-web {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fd6442 0%, rgba(253, 100, 66, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #111;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(253, 100, 66, 0.15);
}

.how-work-icon-web::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fd6442 0%, rgba(253, 100, 66, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  filter: blur(10px);
}

.how-work-card-web:hover .how-work-icon-web {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 20px 50px rgba(253, 100, 66, 0.35);
}

.how-work-card-web:hover .how-work-icon-web::before {
  opacity: 1;
}

.how-work-title-web {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.4s ease;
  position: relative;
}

.how-work-title-web::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fd6442, rgba(253, 100, 66, 0));
  transition: width 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.how-work-card-web:hover .how-work-title-web {
  color: #fd6442;
}

.how-work-card-web:hover .how-work-title-web::after {
  width: 100%;
}

.how-work-description-web {
  font-size: 0.9rem;
  color: #a1a1a1;
  line-height: 1.8;
  font-family: 'Noto Sans', sans-serif;
  margin: 0;
  transition: color 0.4s ease;
}

.how-work-card-web:hover .how-work-description-web {
  color: #c4c4c4;
}

/* Full Width Card */
.how-work-card-web-full {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.12) 0%, rgba(253, 100, 66, 0.05) 100%);
  border: 1px solid rgba(253, 100, 66, 0.2);
  padding: 40px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 15px 40px rgba(253, 100, 66, 0.1);
}

.how-work-card-web-full:hover {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15) 0%, rgba(253, 100, 66, 0.08) 100%);
  border-color: rgba(253, 100, 66, 0.35);
  box-shadow: 0 25px 60px rgba(253, 100, 66, 0.2);
}

.how-work-card-web-full .row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.how-work-image-web {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(253, 100, 66, 0.1);
}

.how-work-image-web::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(253, 100, 66, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.how-work-card-web-full:hover .how-work-image-web::before {
  opacity: 1;
}

.how-work-image-web img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.how-work-card-web-full:hover .how-work-image-web img {
  transform: scale(1.12) rotate(1deg);
}

/* Responsive for Web Version */
@media (max-width: 768px) {
  .how-work-card-web {
    padding: 25px;
    border-radius: 14px;
  }

  .how-work-number-web {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .how-work-icon-web {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-radius: 12px;
  }

  .how-work-title-web {
    font-size: 1.1rem;
  }

  .how-work-description-web {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .how-work-card-web:hover {
    transform: translateY(-8px);
  }

  .how-work-card-web:hover .how-work-icon-web {
    transform: scale(1.12) rotate(6deg);
  }

  .how-work-card-web-full {
    padding: 30px;
    border-radius: 14px;
  }

  .how-work-card-web-full .row {
    flex-direction: column;
    gap: 25px;
  }

  .how-work-image-web {
    height: 250px;
    border-radius: 12px;
  }

  .how-work-card-web-full:hover .how-work-image-web img {
    transform: scale(1.1) rotate(0deg);
  }
}

@media (max-width: 576px) {
  .how-work-card-web {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .how-work-number-web {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .how-work-icon-web {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .how-work-title-web {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .how-work-description-web {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .how-work-card-web:hover {
    transform: translateY(-6px);
  }

  .how-work-card-web:hover .how-work-icon-web {
    transform: scale(1.1) rotate(5deg);
  }

  .how-work-card-web-full {
    padding: 20px;
    border-radius: 12px;
  }

  .how-work-image-web {
    height: 200px;
    border-radius: 10px;
  }

  .how-work-card-web-full:hover .how-work-image-web img {
    transform: scale(1.08) rotate(0deg);
  }
}

/* ============================================
   SERVICE INQUIRY FORM STYLING
   ============================================ */

.service-sidebar {
  position: relative;
}

.service-inquiry-form {
  background: rgba(253, 100, 66, 0.08);
  border: 1px solid rgba(253, 100, 66, 0.15);
  backdrop-filter: blur(10px);
  padding: 28px 22px;
  border-radius: 15px;
  transition: all 0.5s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  z-index: 100;
  overflow: hidden;
  margin-top: 1.25rem !important;
}

.service-inquiry-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #fd6442 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.service-inquiry-form:hover {
  background: rgba(253, 100, 66, 0.15);
  border-color: rgba(253, 100, 66, 0.4);
  box-shadow: 0 25px 60px rgba(253, 100, 66, 0.2);
}

.service-inquiry-form:hover::before {
  transform: scaleX(1);
}

.inquiry-form .form-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.inquiry-form .form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fd6442, #ffa500);
  border-radius: 3px;
}

.inquiry-form .form-label {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  border: 1.5px solid rgba(253, 100, 66, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  height: auto;
  min-height: 36px;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: #fd6442;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 0.15rem rgba(253, 100, 66, 0.15);
  outline: none;
  color: #111;
}

.inquiry-form .form-control::placeholder {
  color: #a1a1a1;
  font-size: 12px;
}

.inquiry-form .form-group {
  margin-bottom: 14px;
}

.inquiry-form textarea.form-control {
  resize: vertical;
  font-family: "Noto Sans", sans-serif;
  min-height: 80px;
  padding: 10px 12px;
}

.inquiry-form textarea.form-control:focus {
  border-color: #fd6442;
}

.inquiry-form .form-select option {
  background-color: #fff;
  color: #111;
  padding: 6px;
}

.inquiry-form .form-select option:hover {
  background: linear-gradient(#fd6442, #fd6442);
  color: #111;
}

/* Submit Button Styling */


.inquiry-form .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 100, 66, 0.4);
  background: linear-gradient(135deg, #ffa500 0%, #fd6442 100%);
}

.inquiry-form .theme-btn:active {
  transform: translateY(0);
}

.inquiry-form .btn-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Responsive Form Styling */
@media (max-width: 768px) {
  .service-inquiry-form {
    padding: 22px 18px;
  }

  .inquiry-form .form-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .inquiry-form .form-control,
  .inquiry-form .form-select {
    font-size: 12px;
    padding: 8px 10px;
    min-height: 34px;
  }

  .inquiry-form .form-label {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .service-inquiry-form {
    padding: 18px 14px;
  }

  .inquiry-form .form-title {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .inquiry-form .form-control,
  .inquiry-form .form-select {
    font-size: 12px;
    padding: 7px 10px;
    min-height: 32px;
  }

  .inquiry-form .theme-btn {
    padding: 10px 12px;
    font-size: 11px;
  }

  .inquiry-form textarea.form-control {
    min-height: 70px;
  }
}
