@font-face {
  font-family: "Bahnschrift";
  src: url("../fonts/bahnschrift.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-medium.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #F36F21;
  color: #fff;
  transition: all 0.3s ease;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 0 0 60px;
  background: #F36F21;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .header {
    padding: 0 0 0 16px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 64px;
    padding: 0 12px;
  }
}

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

.logo-mark {
  width: 54px;
  height: auto;
}
@media (max-width: 768px) {
  .logo-mark {
    width: 44px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: #3c3c3c;
  min-width: 180px;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 30px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #3c3c3c;
}
@media (max-width: 768px) {
  .dropdown-content {
    min-width: 150px;
    padding: 16px;
    gap: 12px;
  }
}

.dropdown-link {
  color: #FEC42B;
  text-decoration: none;
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.dropdown-link:hover {
  color: #fff;
  transform: translateX(-4px);
}
@media (max-width: 768px) {
  .dropdown-link {
    font-size: 14px;
  }
}

.move-on {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: rgb(237.6538461538, 96.3461538462, 12.8461538462);
  font: 700 14px/1 "Inter", Arial, sans-serif;
  letter-spacing: 0.35px;
  padding: 10px 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.move-on:hover {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .move-on {
    padding: 7px 14px;
    font-size: 10px;
  }
}

.header-pencil {
  width: 36vw;
  height: auto;
  display: block;
  margin-left: 0px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .header-pencil {
    display: none;
  }
}

.hero-section {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 132px 16px 56px;
  background-image: url("../images/form-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-color: #F58320;
}
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 96px 16px 48px;
    background-size: cover;
  }
}

.hero-content {
  width: min(820px, 100%);
  text-align: center;
}

h1 {
  margin: 0;
}

.see-the,
.sell-with {
  display: block;
  text-transform: uppercase;
  font-family: "Bahnschrift", Arial, sans-serif;
  line-height: 1.08;
}

.see-the {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.45rem);
}
@media (max-width: 768px) {
  .see-the {
    font-size: 1.8rem;
  }
}

.sell-with {
  margin-top: 6px;
  color: #0A0A0A;
  font-size: clamp(2rem, 5vw, 3.55rem);
}
@media (max-width: 768px) {
  .sell-with {
    font-size: 1.8rem;
    margin-top: 4px;
  }
}

.desc {
  margin: 18px 0 2px;
  font-size: clamp(1rem, 1.6vw, 1.72rem);
}
@media (max-width: 768px) {
  .desc {
    font-size: 14px;
    margin-top: 24px;
  }
}

.aerial {
  margin: 0;
  font-family: "Gotham", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.9rem);
}
@media (max-width: 768px) {
  .aerial {
    font-size: 16px;
  }
}

.slider-ui {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 240px;
}

.slider-ui-img {
  width: 100%;
  height: auto;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-buttons {
    margin-top: 30px;
    gap: 10px;
  }
}

.demo-btn,
.preview-btn {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 12px 20px;
  font: 600 18px/1 "Inter", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.demo-btn:hover,
.preview-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .demo-btn,
  .preview-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.demo-btn {
  background: #FEC42B;
  box-shadow: 0 4px 12px #FCB600;
  color: #222;
}
.demo-btn:hover {
  background: rgb(253.8802816901, 188.9366197183, 17.6197183099);
}

.preview-btn {
  background: #fff;
  color: #222;
  border: 2px solid #D2D2D7;
}
.preview-btn:hover {
  background: #ebebeb;
}

.arrow,
.play {
  font-size: 14px;
}

.video-container {
  background: #F58320;
  padding: 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .video-container {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .video-container {
    padding: 40px 0;
  }
}

.map-video {
  width: 90%;
  max-width: 1400px;
  max-height: 85vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.stats-bar {
  background: #F36F21;
  padding: 40px 24px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}
.stats-bar .stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Bahnschrift", Arial, sans-serif;
  margin: 0;
  color: #0A0A0A;
}
.stats-bar .stat-item p {
  font-size: 14px;
  font-family: "Gotham", Arial, sans-serif;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-bar {
    flex-direction: column;
    gap: 32px;
  }
}

.explanation-section {
  background: #FEC42B;
  padding: 100px 24px;
  color: #fff;
}
.explanation-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.explanation-section .title-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.explanation-section .title-wrap h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .explanation-section .title-wrap h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .explanation-section .title-wrap h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.explanation-section .title-wrap .subtitle {
  font-size: 24px;
  line-height: 1.6;
  opacity: 0.9;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .explanation-section .title-wrap .subtitle {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .explanation-section .title-wrap {
    margin-bottom: 40px;
  }
}
.explanation-section .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .explanation-section .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.explanation-section .comparison-card {
  padding: 60px 40px;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-card {
    padding: 40px 30px;
  }
}
.explanation-section .comparison-card h4 {
  font-size: 28px;
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  text-align: center;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-card h4 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.explanation-section .comparison-card.traditional {
  background: #FBB040;
}
.explanation-section .comparison-card.daas {
  background: #F7943E;
}
.explanation-section .comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }
}
@media (max-width: 768px) {
  .explanation-section .comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.explanation-section .comparison-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-list li {
    margin-bottom: 0;
  }
}
.explanation-section .comparison-list li:last-child {
  margin-bottom: 0;
}
.explanation-section .comparison-list li .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .explanation-section .comparison-list li .icon {
    width: 20px;
    height: 20px;
  }
}
.explanation-section .comparison-list li strong {
  display: block;
  font-size: 20px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-list li strong {
    font-size: 18px;
  }
}
.explanation-section .comparison-list li p {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  opacity: 0.8;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
}
@media (max-width: 1024px) {
  .explanation-section .comparison-list li p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .explanation-section .comparison-list li p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .explanation-section {
    padding: 64px 16px;
  }
  .explanation-section .comparison-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .explanation-section .comparison-card h4 {
    font-size: 22px;
    margin-bottom: 24px;
    margin-top: 0;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .explanation-section .comparison-card h4 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .explanation-section .comparison-list li {
    gap: 12px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .explanation-section .comparison-list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .explanation-section .comparison-list li strong {
    font-size: 16px;
  }
}

.delivers-section {
  background: #fff;
  padding: 100px 24px;
  color: #222;
}
.delivers-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.delivers-section .title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.delivers-section .title-wrap .section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 700;
  color: #F36F21;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.delivers-section .title-wrap .subtitle {
  font-size: 20px;
  color: #444444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .delivers-section .title-wrap .subtitle {
    font-size: 16px;
    line-height: 1.4;
  }
}
.delivers-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .delivers-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .delivers-section .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.delivers-section .feature-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 540px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.delivers-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.delivers-section .feature-card .card-content {
  padding: 40px 32px 0;
  height: 380px;
  flex: none;
  display: flex;
  flex-direction: column;
}
.delivers-section .feature-card .card-content .main-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.0509803922);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .delivers-section .feature-card .card-content .main-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
  }
}
.delivers-section .feature-card .card-content .main-icon-wrap .main-icon {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}
.delivers-section .feature-card .card-content h3 {
  font-size: 24px;
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
  color: #000;
  letter-spacing: 0.5px;
}
.delivers-section .feature-card .card-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  opacity: 0.85;
  margin: 0;
}
.delivers-section .feature-card .card-footer {
  margin: 0 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
}
.delivers-section .feature-card .card-footer .footer-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  filter: brightness(0) invert(1);
}
.delivers-section .feature-card .card-footer span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}
.delivers-section .feature-card.yellow {
  background: #FFDD17;
}
.delivers-section .feature-card.orange {
  background: #F9A628;
}
.delivers-section .feature-card.amber {
  background: #FCB925;
}
.delivers-section .feature-card.orange-dark {
  background: #F9A628;
}
.delivers-section .feature-card.yellow-bright {
  background: #FECA0A;
}
.delivers-section .feature-card.yellow-pale {
  background: #FFDD17;
}
@media (max-width: 768px) {
  .delivers-section {
    padding: 48px 16px;
  }
  .delivers-section .feature-card {
    height: auto;
    min-height: auto;
  }
  .delivers-section .feature-card .card-content {
    padding: 32px 24px 0;
    height: auto;
  }
  .delivers-section .feature-card .card-content .main-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
  }
  .delivers-section .feature-card .card-content .main-icon-wrap .main-icon {
    width: 20px;
  }
  .delivers-section .feature-card .card-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .delivers-section .feature-card .card-content p {
    font-size: 16px;
    line-height: 1.4;
  }
  .delivers-section .feature-card .card-footer {
    margin: 24px 24px 32px;
    padding-top: 24px;
    flex: none;
  }
  .delivers-section .feature-card .card-footer span {
    font-size: 14px;
  }
}

.who-section {
  background: #FEC42B;
  padding: 100px 24px;
}
.who-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.who-section .title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.who-section .title-wrap h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.who-section .title-wrap .subtitle {
  font-size: 24px;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}
.who-section .who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .who-section .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .who-section .who-grid {
    grid-template-columns: 1fr;
  }
}
.who-section .who-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.who-section .who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.who-section .who-card .icon-box {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.who-section .who-card .icon-box img {
  width: 34px;
  height: auto;
}
.who-section .who-card .icon-box.yellow {
  background: #FCB925;
}
.who-section .who-card .icon-box.orange {
  background: #F58320;
}
.who-section .who-card .icon-box.amber {
  background: #F9A628;
}
.who-section .who-card h3 {
  font-size: 28px;
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.who-section .who-card .card-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.5;
  min-height: 48px;
}
.who-section .who-card .perfect-for {
  border: 1px solid #D2D2D7;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 36px;
}
.who-section .who-card .perfect-for h5 {
  font-size: 16px;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  margin-top: 0;
  text-transform: none;
  font-family: "Inter", Arial, sans-serif;
}
.who-section .who-card .perfect-for p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.who-section .who-card .benefits h5 {
  font-size: 14px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}
.who-section .who-card .benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-section .who-card .benefits ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
}
.who-section .who-card .benefits ul li:last-child {
  margin-bottom: 0;
}
.who-section .who-card .benefits ul li .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(47%) sepia(97%) saturate(3015%) hue-rotate(193deg) brightness(101%) contrast(101%);
}
@media (max-width: 768px) {
  .who-section {
    padding: 64px 16px;
  }
  .who-section .title-wrap {
    margin-bottom: 40px;
  }
  .who-section .title-wrap h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .who-section .title-wrap .subtitle {
    font-size: 16px;
  }
  .who-section .who-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .who-section .who-card .icon-box {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .who-section .who-card .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 2px;
  }
}
@media (max-width: 768px) {
  .who-section .who-card .icon-box img {
    width: 28px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .who-section .who-card .icon-box img {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .who-section .who-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .who-section .who-card .card-desc {
    font-size: 15px;
    margin-bottom: 24px;
    min-height: auto;
  }
  .who-section .who-card .perfect-for {
    padding: 16px;
    margin-bottom: 4px;
  }
  .who-section .who-card .perfect-for h5 {
    font-size: 14px;
  }
  .who-section .who-card .perfect-for p {
    font-size: 14px;
  }
  .who-section .who-card .benefits h5 {
    margin-bottom: 12px;
  }
  .who-section .who-card .benefits ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.contact-section {
  background: #F58320;
  padding: 80px 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 64px 16px;
  }
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .title-wrap {
  margin-bottom: 60px;
}
.contact-section .title-wrap h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-family: "Bahnschrift", Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 32px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact-section .title-wrap h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.contact-section .title-wrap .subtitle {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 24px;
  font-family: "Inter", Arial, sans-serif;
}
@media (max-width: 768px) {
  .contact-section .title-wrap .subtitle {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}
.contact-section .title-wrap .desc {
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .contact-section .title-wrap .desc {
    font-size: 16px;
  }
  .contact-section .title-wrap .desc br {
    display: none;
  }
}
@media (max-width: 768px) {
  .contact-section .title-wrap {
    margin-bottom: 32px;
  }
}
.contact-section .contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .contact-section .contact-form-wrap {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-form-wrap {
    padding: 24px 16px;
    border-radius: 16px;
  }
}
.contact-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin-bottom: 4;
}
@media (max-width: 768px) {
  .contact-section .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-form .form-group {
  margin-bottom: 0;
  text-align: left;
}
.contact-section .contact-form .form-group input, .contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 18px 24px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  color: #222;
  background: #FDFDFD;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contact-section .contact-form .form-group input, .contact-section .contact-form .form-group textarea {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 8px;
  }
}
.contact-section .contact-form .form-group input::-moz-placeholder, .contact-section .contact-form .form-group textarea::-moz-placeholder {
  color: #A0A0A0;
}
.contact-section .contact-form .form-group input::placeholder, .contact-section .contact-form .form-group textarea::placeholder {
  color: #A0A0A0;
}
.contact-section .contact-form .form-group input:focus, .contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #F36F21;
  box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.1);
}
.contact-section .contact-form .form-group input.invalid, .contact-section .contact-form .form-group textarea.invalid {
  border-color: #dc3545;
}
.contact-section .contact-form .form-group input.invalid:focus, .contact-section .contact-form .form-group textarea.invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
.contact-section .contact-form .form-group .error-msg {
  color: #dc3545;
  font-size: 13px;
  margin-bottom: 4px;
  font-weight: 500;
  min-height: 18px;
  line-height: 1.4;
}
.contact-section .contact-form .form-group textarea {
  resize: vertical;
}
.contact-section .contact-form .btn-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.contact-section .contact-form .submit-btn {
  background: #FEC42B;
  border: 0;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(254, 196, 43, 0.3);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contact-section .contact-form .submit-btn {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.contact-section .contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 196, 43, 0.4);
  background: rgb(253.8802816901, 188.9366197183, 17.6197183099);
}
.contact-section .contact-form .submit-btn .btn-arrow {
  width: 20px;
  height: auto;
}

.main-footer {
  background: #F58320;
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .main-footer .footer-content {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }
}
.main-footer .copyright {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.main-footer .footer-links {
  display: flex;
  gap: 32px;
}
@media (max-width: 480px) {
  .main-footer .footer-links {
    gap: 16px;
  }
}
.main-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .main-footer .footer-links a {
    font-size: 14px;
  }
}
.main-footer .footer-links a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */