/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

body {
  background: #ffffff;
}

/* HEADER */
.header {
  width: 100%;
  background: #0c1a2b;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.logo span {
  color: #ffcc00;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* NAV LINKS */
.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #ffcc00;
}

/* CALL BUTTON */
.call-btn {
  background: #ffcc00;
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  margin-left: 10px;
  transition: 0.3s;
}

.call-btn i {
  margin-right: 5px;
}

.call-btn:hover {
  background: #ffaa00;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 991px) {

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0c1a2b;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    padding: 10px 0;
    width: 100%;
  }

  .call-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
section {
  padding: 70px 0;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

.section-heading,
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ================= BANNER ================= */
.banner {
  background: #f5f7fb;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-left {
  flex: 1;
}

.banner-left h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.banner-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.banner-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.banner-right {
  flex: 1;
  text-align: right;
}

.banner-right img {
  max-width: 100%;
  height: auto;
}

/* ================= TIMELINE ================= */
.timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.timeline-item.left {
  flex-direction: row;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  font-size: 20px;
}

/* ================= CTA ================= */
.cta-section {
  background: #0c1a2b;
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.cta-content p {
  max-width: 600px;
  margin: auto;
}

.cta-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  margin-top: 15px;
  text-decoration: none;
}

/* ================= HOW IT WORKS ================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.step {
  text-align: center;
}

.circle {
  width: 60px;
  height: 60px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
}

/* ================= ABOUT ================= */
.about-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 10px;
  color: #555;
}

.btn-about-call {
  display: inline-block;
  margin-top: 15px;
  background: #ffcc00;
  padding: 10px 20px;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* ================= INSTALLATION ================= */
.install-step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.install-step.reverse {
  flex-direction: row-reverse;
}

.install-text {
  flex: 1;
}

.install-image {
  flex: 1;
}

.install-image img {
  width: 100%;
  border-radius: 10px;
}

/* ================= FULL IMAGE CTA ================= */
.full-image-cta {
  background: url('../images/logo/banner.png') center/cover no-repeat;
  height: 300px;
  position: relative;
}

.full-image-cta .overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-cta h2 {
  color: #fff;
  text-align: center;
}

/* ================= FEATURES ================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-item i {
  font-size: 25px;
  color: #ffcc00;
  margin-bottom: 10px;
}

/* ================= PLANS ================= */
.plans-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.plan-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.plan-box.popular {
  border: 2px solid #ffcc00;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.plan-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ffcc00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    flex-direction: column;
  }

  .timeline-content {
    width: 100%;
  }

  .steps {
    grid-template-columns: repeat(2,1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .about-grid {
    flex-direction: column;
  }

  .install-step {
    flex-direction: column;
  }

  .plans-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:576px){

  .steps,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .banner-left h1 {
    font-size: 28px;
  }
}
/* ================= PLANS SECTION ================= */

.plans-section {
  background: #f8f9fc;
  padding: 80px 0;
}

.plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plan-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.plan-box:hover {
  transform: translateY(-8px);
}

/* POPULAR PLAN */
.plan-box.popular {
  border: 2px solid #ffcc00;
  transform: scale(1.05);
}

.plan-box.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* TITLE */
.plan-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* PRICE */
.price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  color: #777;
}

/* FEATURES */
.plan-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-box ul li {
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #ffaa00;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .plan-box {
    width: 100%;
    max-width: 400px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0c1a2b;
  color: #ffffff;
  padding-top: 40px;
}

/* TOP FOOTER */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-container p {
  margin: 0;
  font-size: 14px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* DISCLAIMER */
.disclaimer {
  padding: 20px 0;
}

.disclaimer p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.7;
}

.disclaimer a {
  color: #ffcc00;
  text-decoration: none;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    justify-content: center;
  }

  .disclaimer p {
    text-align: center;
  }
}
/* ================= CONTACT PAGE ================= */

.contact-section {
  padding: 80px 0;
  background: #f8f9fc;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 36px;
  font-weight: 700;
}

.contact-header p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffcc00;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  background: #ffcc00;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #ffaa00;
}

/* CONTACT INFO */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box i {
  font-size: 20px;
  color: #ffcc00;
  margin-top: 5px;
}

.info-box h4 {
  margin-bottom: 5px;
}

.info-box p {
  margin: 0;
  color: #555;
}

.info-box a {
  color: #000;
  text-decoration: none;
}

.info-box a:hover {
  color: #ffcc00;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
/* ================= HOW IT WORKS ================= */

.how-it-works {
  background: #ffffff;
  padding: 80px 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STEP CARD */
.step {
  text-align: center;
  padding: 25px 20px;
  border-radius: 12px;
  background: #f8f9fc;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ICON CIRCLE */
.circle {
  width: 70px;
  height: 70px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: 24px;
  color: #000;
}

/* TITLE */
.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* TEXT */
.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* OPTIONAL STEP NUMBER */
.step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -12px;
  left: -12px;
  background: #0c1a2b;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 50%;
}

/* RESET COUNTER */
.steps {
  counter-reset: step;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .how-it-works h2 {
    font-size: 26px;
  }
}
/* ================= FAQ SECTION ================= */

.faq-section {
  background: #f8f9fc;
  padding: 80px 0;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* WRAPPER */
.faq-wrapper {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-question .icon {
  font-size: 14px;
  color: #ffcc00;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 10px 0 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon i {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 576px) {
  .faq-title {
    font-size: 24px;
  }
}