@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: #2D3436;
  background: #fff;
  overflow-x: hidden;
}

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

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 120px;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* DESKTOP NAV */
.desktop-nav {
  display: none;
  gap: 32px;
}

.desktop-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2D3436;
  text-decoration: none;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #f72585;
  /* Brand color */
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

@media (min-width: 860px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: url('bannerImage.png') center center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253, 245, 230, 0.9) 0%, rgba(253, 245, 230, 0.6) 35%, transparent 55%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: #2D3436;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
}

.btn-primary {
  display: inline-block;
  background: #3b82f6;
  /* Intense Blue */
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-primary:hover {
  background: #2563eb;
  /* Darker Intense Blue */
}

/* SECTIONS */
.section {
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 32px;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon.blue {
  background: #E0F2F7;
  color: #5a8cbf;
}

.service-card-icon.pink {
  background: #FDF5E6;
  color: #c49060;
}

.service-card-icon.yellow {
  background: #fef3cd;
  color: #b8860b;
}

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2D3436;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.service-card .more-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: #8FB3EE;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card .more-link:hover {
  text-decoration: underline;
}

/* MODELS */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.models-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.models-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.model-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model-card-detailed {
  text-align: left;
  align-items: stretch;
}

.model-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f8f8f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.model-card-img img {
  width: 85%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.model-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 4px;
}

.model-card .subtitle {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 16px;
}

.model-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.model-specs li {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.model-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8FB3EE;
  font-weight: 700;
}

.model-btns {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.model-btns button {
  flex: 1;
  padding: 8px 4px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-outline {
  background: #fff;
  border: 1px solid #ccc;
  color: #666;
}

.btn-outline:hover {
  background: #f5f5f5;
}

.btn-fill {
  background: #3b82f6;
  /* Intense Blue */
  border: 1px solid #3b82f6;
  color: #fff;
}

.btn-fill:hover {
  background: #2563eb;
  /* Darker Intense Blue */
  border-color: #2563eb;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-icon.blue {
  background: #E0F2F7;
  color: #8FB3EE;
}

.benefit-icon.pink {
  background: #FDF5E6;
  color: #2D3436;
}

.benefit-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2D3436;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(to right, #f8c8d8 0%, #a8c8f0 100%);
  padding: 48px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 20px;
}

/* CONTACT */
.contact-section {
  background: #FDF5E6;
  padding: 48px 24px;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-info {
  flex: 1;
  min-width: 240px;
}

.contact-info h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list .icon-circle svg {
  width: 18px;
  height: 18px;
}

.contact-list .icon-circle.whatsapp {
  border-color: #25d366;
  background: #e8faf0;
  color: #25d366;
}

.contact-list li span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.contact-form {
  flex: 1.3;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8FB3EE;
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  background: transparent;
  color: #e05080;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 999px;
  border: 2px solid #e05080;
  cursor: pointer;
  transition: all .2s;
}

.btn-submit:hover {
  background: #e05080;
  color: #fff;
}

/* FOOTER */
.footer {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D3436;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2D3436;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s;
}

.social-icons a:hover {
  background: #8FB3EE;
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer p {
  font-size: 0.72rem;
  color: #999;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .3s;
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 24px;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 16px;
  right: 16px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}

.mobile-nav-links a:hover {
  color: #8FB3EE;
}

@media(max-width:768px) {
  .hero {
    padding: 60px 24px 60px;
    min-height: 400px;
    background-position: right center;
  }

  .hero-overlay {
    background: linear-gradient(to right, rgba(253, 245, 230, 0.95) 0%, rgba(253, 245, 230, 0.85) 60%, rgba(253, 245, 230, 0.4) 100%);
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    flex-direction: column;
  }

  .models-grid,
  .models-grid-2,
  .models-grid-3 {
    grid-template-columns: 1fr;
  }

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

/* TOAST NOTIFICATIONS */
.toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  max-width: 90%;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 200;
  transition: bottom .3s ease;
}

.toast.show {
  bottom: 24px;
}

.toast-success {
  background: #e8faf0;
  color: #1a7a4c;
  border: 1px solid #25d366;
}

.toast-error {
  background: #fde8e8;
  color: #a02020;
  border: 1px solid #e05050;
}

.toast p {
  margin: 0;
  line-height: 1.4;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* CAPTCHA */
.captcha-row {
  width: 100%;
  margin-bottom: 15px;
  /* keep some spacing before the button */
}

altcha-widget {
  --altcha-max-width: 100%;
  width: 100%;
}