/* Drexivora Inc — theme aligned with WanderGo demo (#1E88E5 / #00ACC1 / #F8F9FA) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --primary: #1E88E5;
  --secondary: #00ACC1;
  --accent: #FF7043;
  --dark: #333333;
  --dark-section: #282520;
  --body-bg: #F8F9FA;
  --text-muted: #6c757d;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background-color: var(--body-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s ease;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--primary);
}

.btn-primary-custom i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
  transform: translateX(4px);
}

/* ---------- Section titles ---------- */
.section-subtitle {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.33) 0%, rgba(0, 172, 193, 0.33) 100%),
    url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=1920&q=80') center/cover no-repeat;
  padding: 120px 0 80px;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btn-white:hover {
  background: transparent;
  color: var(--white);
}

.hero-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.hero-btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hero-stats {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ---------- Service cards ---------- */
.services-section {
  padding: 90px 0;
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.15);
}

.service-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.service-card .card-body {
  padding: 24px;
}

.service-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card .card-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(30, 136, 229, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

.btn-view {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}

.btn-view:hover {
  background: #1565C0;
  color: var(--white);
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- About ---------- */
.about-section {
  padding: 90px 0;
  background: var(--body-bg);
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.about-features li i {
  color: var(--secondary);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- Counter ---------- */
.counter-section {
  padding: 80px 0;
  background: var(--dark-section);
  color: var(--white);
}

.counter-section .section-title {
  color: var(--white);
}

.counter-box {
  text-align: center;
  padding: 20px;
}

.counter-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.counter-label {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-size: 15px;
}

/* ---------- Features ---------- */
.features-section {
  padding: 90px 0;
  background: var(--white);
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(30, 136, 229, 0.18);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-body {
  padding: 24px;
}

.feature-tag {
  display: inline-block;
  background: rgba(0, 172, 193, 0.12);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li i {
  color: var(--primary);
  font-size: 12px;
}

/* ---------- Why choose us ---------- */
.why-section {
  padding: 90px 0;
  background: var(--body-bg);
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 28px;
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 90px 0;
  background: var(--body-bg);
}

.faq-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.faq-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background: rgba(30, 136, 229, 0.08);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(30, 136, 229, 0.25);
}

.accordion-body {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 90px 0;
  background: var(--white);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  padding: 40px 32px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h6 {
  color: var(--white);
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-item p,
.contact-item a {
  color: var(--white);
  margin: 0;
  font-size: 15px;
}

.contact-item a:hover {
  opacity: 0.85;
}

.contact-form {
  background: var(--body-bg);
  border-radius: 12px;
  padding: 36px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #dee2e6;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

.contact-form label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #1565C0;
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-section);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--primary);
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links a i {
  font-size: 12px;
  color: var(--primary);
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  margin-left: 8px;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--primary);
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #1565C0;
  transform: translateY(-4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .about-img {
    margin-bottom: 36px;
  }

  .about-img img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 24px;
  }

  .contact-form {
    margin-top: 32px;
    padding: 24px;
  }
}
