:root {
  --primary: #f58220;
  --primary-dark: #db6810;
  --secondary: #102a43;
  --dark: #081c2d;
  --text: #5f6b76;
  --light: #f6f8fa;
  --white: #ffffff;
  --border: #e8edf1;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--secondary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* TOP BAR */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
}

.topbar a:hover {
  color: var(--primary);
}

/* HEADER */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 21px;
}

.logo span {
  display: block;
  font-weight: 800;
  font-size: 19px;
  color: var(--secondary);
  line-height: 1;
}

.logo small {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 10px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.header-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.header-btn,
.btn-primary,
.form-btn {
  background: var(--primary);
  color: #fff;
}

.header-btn:hover,
.btn-primary:hover,
.form-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

/* HERO */
.hero {
  min-height: 650px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(8, 28, 45, 0.95), rgba(8, 28, 45, 0.72)),
    url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1800&q=80")
    center/cover;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 20px;
}

.tag i {
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero p {
  color: #d6dde3;
  max-width: 650px;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: #fff;
  color: var(--secondary);
}

.hero-features {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.hero-features i {
  color: var(--primary);
}

/* QUOTE CARD */
.quote-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.quote-card p {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 20px;
}

.quote-card input,
.quote-card select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 14px;
  margin-bottom: 13px;
  border-radius: 5px;
  font-family: inherit;
  outline: none;
}

.quote-card input:focus,
.quote-card select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.form-btn {
  width: 100%;
}

/* TRUST */
.trust-bar {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 25px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border: none;
}

.trust-item > i {
  color: var(--primary);
  font-size: 30px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  font-size: 11px;
  color: var(--text);
}

/* GENERAL */
.section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 12px;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-heading p,
.about-content p,
.contact-info > p {
  color: var(--text);
}

/* ABOUT */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-box {
  height: 440px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, #173d5c, #0b2236);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.moving-illustration {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 75px;
  box-shadow: 0 20px 40px rgba(245, 130, 32, 0.3);
}

.experience-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  padding: 22px 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.experience-box strong,
.experience-box span {
  display: block;
}

.experience-box strong {
  color: var(--primary);
  font-size: 20px;
}

.experience-box span {
  font-size: 12px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 25px 0;
  font-size: 13px;
  font-weight: 500;
}

.about-points i {
  color: var(--primary);
  margin-right: 7px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #fff1e5;
  color: var(--primary);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

/* WHY */
.why-section {
  background: var(--secondary);
  color: #fff;
  padding: 90px 0;
}

.light-tag {
  color: var(--primary);
}

.why-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.why-content > p {
  color: #b9c4cc;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.why-list {
  margin-top: 30px;
}

.why-list > div {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.why-list span {
  min-width: 48px;
  height: 48px;
  background: rgba(245, 130, 32, 0.15);
  color: var(--primary);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.why-list h4 {
  margin-bottom: 3px;
}

.why-list p {
  color: #b9c4cc;
  font-size: 13px;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  padding: 35px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-align: center;
}

.stat-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 13px;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: 20px;
}

.stat-card span {
  color: #b9c4cc;
  font-size: 12px;
}

/* PROCESS */
.process {
  background: var(--light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  background: #fff;
  padding: 32px 22px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.step {
  position: absolute;
  top: 14px;
  right: 15px;
  color: #e7edf1;
  font-size: 26px;
  font-weight: 800;
}

.process-card > i {
  color: var(--primary);
  font-size: 35px;
  margin-bottom: 20px;
}

.process-card h3 {
  margin-bottom: 8px;
}

.process-card p {
  color: var(--text);
  font-size: 12px;
}

/* CTA */
.cta {
  background: var(--primary);
  padding: 60px 0;
  color: #fff;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta span {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.cta h2 {
  font-size: 32px;
  margin: 8px 0;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.btn-white {
  background: #fff;
  color: var(--secondary);
}

.btn-dark {
  background: var(--secondary);
  color: #fff;
}

/* TESTIMONIAL */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.stars {
  color: var(--primary);
  margin-bottom: 15px;
}

.testimonial-card > p {
  color: var(--text);
  font-size: 13px;
  font-style: italic;
}

.customer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-avatar {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.customer strong,
.customer span {
  display: block;
}

.customer strong {
  font-size: 13px;
}

.customer span {
  font-size: 11px;
  color: var(--text);
}

/* FAQ */
.faq-section {
  background: var(--light);
}

.faq-container {
  max-width: 850px;
}

.faq-item {
  background: #fff;
  margin-bottom: 12px;
  border-radius: 7px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  border: none;
  background: #fff;
  font-family: inherit;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--text);
  font-size: 13px;
}

.faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* CONTACT */
.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.contact-icon {
  min-width: 50px;
  height: 50px;
  background: #fff1e5;
  color: var(--primary);
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.contact-item span,
.contact-item a {
  display: block;
}

.contact-item span {
  font-size: 11px;
  color: var(--text);
}

.contact-item a {
  font-weight: 600;
  font-size: 14px;
}

.contact-form {
  padding: 38px;
  box-shadow: var(--shadow);
  border-radius: 12px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 23px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 70px 0 45px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-logo i {
  color: var(--primary);
  font-size: 26px;
}

.footer-about p {
  color: #9baab5;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  border-radius: 5px;
}

.footer-grid h4 {
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: #9baab5;
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-contact p {
  color: #9baab5;
  font-size: 12px;
  margin-bottom: 13px;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px;
  color: #82919b;
  font-size: 12px;
}

/* FLOATING */
.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 999;
  box-shadow: var(--shadow);
}

.floating-call {
  bottom: 90px;
  background: var(--secondary);
}

.floating-whatsapp {
  bottom: 25px;
  background: #25d366;
  font-size: 26px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    display: none;
    box-shadow: var(--shadow);
  }

  nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .hero-content,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0;
  }

  .quote-card {
    max-width: 600px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {

  .top-email {
    display: none;
  }

  .topbar-content {
    justify-content: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }

  .trust-grid,
  .services-grid,
  .testimonial-grid,
  .process-grid,
  .footer-grid,
  .why-stats,
  .about-points,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 65px 0;
  }

  .quote-card,
  .contact-form {
    padding: 25px 20px;
  }

  .image-box {
    height: 320px;
  }

  .experience-box {
    right: 10px;
    bottom: -15px;
  }

  .navbar {
    min-height: 70px;
  }

  nav {
    top: 70px;
  }

  .logo span {
    font-size: 16px;
  }
}