/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #3c3c3c;
  line-height: 1.6;
  background: #ffffff;
}

/* ----- VARIABLES ----- */
:root {
  --brand: #316ccd;
  --dark: #3c3c3c;
  --light: #ffffff;
  --accent: #fcf800;
  --gray-text: #848484;
  --light-bg: #f4f4f4;
  --success: #316ccd;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  --transition: 0.3s ease;
}

/* ----- GLOBAL & TYPOGRAPHY ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title .highlight {
  color: var(--brand);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.25rem;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--brand);
  color: var(--light);
}
.btn-primary:hover {
  background: #1e4f9e;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--light);
}
.btn-link {
  background: transparent;
  color: var(--brand);
  padding: 0;
  border: none;
  font-weight: 600;
}
.btn-link:hover {
  color: #1e4f9e;
  text-decoration: underline;
}

/* ----- CARDS ----- */
.card {
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 30px 25px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-bottom: 1.2rem;
}
.card .icon-wrap img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----- GRID HELPERS ----- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ----- SECTIONS ----- */
section {
  padding: 80px 0;
}
.about, .features, .testimonials {
  background: var(--light-bg);
}

/* ----- HEADER ----- */
.top-bar {
  background: var(--light-bg);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--gray-text);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.top-bar .contact-info a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.top-bar .social-icons {
    display: flex;
    gap: 12px;
}
.top-bar .social-icons a {
  color: var(--brand);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color var(--transition);
}
.top-bar .social-icons a:hover {
  color: #1e4f9e;
}

.main-header {
  padding: 20px 0;
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.main-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  display: block;
  max-height: 70px;
  width: auto;
  max-width: 220px;
}

.contact-info span i {
  color: var(--brand);
  margin-right: 6px;
}

.btn-outline i {
  margin-right: 8px;
}

.image-placeholder i {
  margin-right: 8px;
  color: var(--brand);
}

.emoji i {
  font-size: 1.8rem;
  color: var(--brand);
}

@media (max-width: 768px) {
  .logo img {
    max-height: 48px;
    max-width: 150px;
  }
}


.justified-text {
  text-align: justify;
}

/* ----- NAVIGATION ----- */
.nav {
  display: flex;
  gap: 30px;
  font-weight: 600;
}
.nav a {
  text-decoration: none;
  color: #090909;
  transition: color var(--transition);
  padding: 5px 0;
}
.nav a:hover {
  color: var(--dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  z-index: 1001;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(60, 60, 60, 0.56), rgba(60, 60, 60, 0.56)), url('img/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light);
  padding: 100px 0 80px;
}
.hero-slider {
  width: 100%;
  overflow: hidden;
}
.hero-track {
  display: flex;
  transition: transform 0.7s ease;
}
.hero-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px;
}
.hero-slide-content {
  text-align: center;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--light);
}
.hero h1 .brand {
  color: var(--brand);
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 1rem auto 1.5rem;
}
.hero .btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: var(--light);
  color: var(--light);
}
.hero .btn-outline:hover {
  background: var(--light);
  color: var(--dark);
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.2rem;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active {
  background: var(--light);
  transform: scale(1.1);
}

/* ----- ABOUT ----- */
.about .grid-2 {
  align-items: center;
}
.about .image-placeholder {
    background: #dce3ed;
    height: 100%;
    min-height: 300px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}
.about .checklist {
  margin: 1.5rem 0;
  padding-left: 5px;
}
.about .checklist li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: var(--dark);
}
.about .checklist li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  font-size: 1.3rem;
}

/* ----- STEPS ----- */
.steps {
  background: var(--brand);
  color: var(--light);
}
.steps .section-title,
.steps .section-subtitle,
.steps .section-label {
  color: var(--light);
  opacity: 0.9;
}
.steps .card {
  background: transparent;
  box-shadow: none;
  padding: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}
.steps .card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
}
.steps .card .step-number {
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.3;
  margin-bottom: 0.5rem;
}
.steps .card h3 {
  color: var(--light);
  font-size: 1.2rem;
}
.steps .card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ----- CHECKLIST (Premium Showcase) ----- */
.checklist {
  background: linear-gradient(135deg, #f8fcfa 0%, #ffffff 100%);
}

/* ----- CONTACT ----- */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fcfa 0%, #ffffff 100%);
}
.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  background: var(--light);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-copy p {
  color: var(--gray-text);
  font-size: 1rem;
  margin: 1rem 0 1.4rem;
}
.contact-highlights {
  display: grid;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
}
.contact-item i {
  color: var(--brand);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
}
.contact-form-card {
  background: linear-gradient(135deg, #316ccd 0%, #1f5aa7 100%);
  border-radius: 20px;
  padding: 28px;
}
.contact-form-card form {
  display: grid;
  gap: 14px;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--dark);
  background: rgba(255,255,255,0.96);
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #7c8b87;
}
.contact-form-card .btn-primary {
  border: none;
  justify-content: center;
}
.contact-form-card .full-width {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
.checklist-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.checklist-visual {
  position: relative;
}
.checklist-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(44, 62, 58, 0.16);
}
.visual-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(44, 62, 58, 0.12);
}
.checklist-content {
  background: var(--light);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.checklist .section-label,
.checklist .section-title,
.checklist .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.checklist .section-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.checklist .section-subtitle {
  margin: 0 0 1.5rem;
  max-width: none;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.checklist-card {
  padding: 20px;
  border: 1px solid #edf4ef;
  box-shadow: none;
  border-left: 4px solid var(--brand);
  min-height: 220px;
}
.checklist-card:hover {
  transform: translateY(-4px);
}
.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.checklist-card h3 {
  font-size: 1rem;
  margin: 0;
}
.checklist-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 0.85rem;
}
.checklist-card .toggle {
  cursor: pointer;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.checklist-card .toggle:hover {
  color: #477d6b;
}
.checklist-card .toggle span {
  display: inline-block;
  transition: transform var(--transition);
}
.checklist-card.active .toggle span {
  transform: rotate(180deg);
}
.checklist-card .details {
  margin-top: 0.8rem;
  display: none;
  list-style: none;
  padding-left: 0;
}
.checklist-card.active .details {
  display: block;
}
.checklist-card .details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: #475a56;
  margin-bottom: 0.45rem;
}
.checklist-card .details li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ----- FEATURES ----- */
.features .list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.features .list-item:last-child {
    margin-bottom: 0;
}
.features .list-item .icon {
  flex-shrink: 0;
  background: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  overflow: hidden;
}
.features .list-item .icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.features .image-placeholder {
    height: 100%;
    min-height: 400px;
    background: #dce3ed;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand);
    text-align: center;
}

/* ----- BENEFITS / STATS ----- */
.benefits .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-bottom: 40px;
}
.benefits .stat-item {
  background: var(--light);
  padding: 25px 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.benefits .stat-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
}
.benefits .stat-item .label {
  color: var(--gray-text);
  font-size: 0.9rem;
}
.benefits .benefit-item {
  text-align: center;
  padding: 20px;
}
.benefits .benefit-item .emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--brand);
}
.benefits .benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.benefits .benefit-item p {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ----- TESTIMONIALS ----- */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.testimonial-slider .slides {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slider .slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 20px;
}
.testimonial-slider .slide .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.testimonial-slider .slide .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-slider .slide blockquote {
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 1rem;
}
.testimonial-slider .slide .author {
  font-weight: 600;
  color: var(--brand);
}
.testimonial-slider .dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-slider .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-slider .dots span.active {
  background: var(--brand);
}

/* ----- FOOTER ----- */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 0 30px;
}
footer .grid-4 {
  gap: 40px;
  align-items: flex-start;
}
footer h4 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 0.6rem;
}
footer ul li a {
  color: #d3d3d3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
footer ul li a:hover {
  color: var(--light);
}
footer .social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 12px;
}
footer .social-icons a {
  color: var(--accent);
  font-size: 1.4rem;
  text-decoration: none;
  transition: color var(--transition);
}
footer .social-icons a:hover {
  color: #c9ab00;
}
footer .subscribe input {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--light);
  margin-bottom: 10px;
}
footer .subscribe input::placeholder {
  color: #aaa;
}
footer .subscribe button {
  width: 100%;
  padding: 10px;
  background: var(--brand);
  border: none;
  border-radius: var(--border-radius);
  color: var(--light);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
footer .subscribe button:hover {
  background: #1e4f9e;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
  }
  .nav.open {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .features .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer .grid-4 {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .top-bar .container {
      justify-content: center;
  }
  .top-bar .contact-info {
      justify-content: center;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 60px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
  }
  .hero .btn-group .btn {
      width: auto;
  }
  .benefits .stats, footer .grid-4 {
    grid-template-columns: 1fr;
  }
}
