/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --body-color: #ffff;
  --footer-color: #1d201f;
  --button-nav-color: #bf3722;
  --cards-color: #ed701d;
  --heading-color: #f1ffad;
}

/* Navbar layout */
.navbar {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
}

/* Default desktop nav */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cards-color);
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* -------- Mobile Styles -------- */
@media (max-width: 700px) {
  /* Hide desktop inline nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--button-nav-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
  }

  /* Show when active */
  .nav-links.active {
    right: 0;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }

  /* Hide "Get Started" in navbar on mobile */
  .btn-primary {
    display: none;
  }
}

/* Hide close button by default */
.close-btn {
  display: none;
}

/* Show it only when sidebar is active (on mobile) */
@media (max-width: 700px) {
  .nav-links.active .close-btn {
    display: block;
  }
}


/* Header Styles */
.header {
  position: relative;
  height: 100vh; /* full screen */
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Make video cover entire header */
.header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps proportions */
  z-index: -1; /* push it behind everything */

}

/* Hero content centered */
.hero {
  text-align: center;
  max-width: 700px;
  margin: auto;
  z-index: 1; /* keep text above video */
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 2rem;
}




/* Buttons */
.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--button-nav-color);
  color: #fff;
  margin-right: 1rem;
}

.btn-primary:hover {
  background-color: var(--cards-color);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background-color: var(--cards-color);
  color: #fff;
}

/* trust section */
.trust {
  padding: 4rem 2rem;
  background: var(--cards-color);
  text-align: center;
}

.trust-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.trust-subtext {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-logos img {
  max-height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
}

.trust-testimonials {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-style: italic;
}

.testimonial h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: white;
}

/* FEATURES */ 
.features {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.features-subtext {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #f9f9f9;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--cards-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-card p {
  font-size: 1rem;
  color: white;
}

/* ABOUT SECTION */
.about {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.about-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/*SERVICES*/
.services {
  padding: 5rem 2rem;
   background: hsl(39, 75%, 76%);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1 1 500px;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.service-image {
  flex: 1 1 400px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

/*SOCIAL PROOF*/
.social-proof {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.social-container {
  max-width: 1100px;
  margin: 0 auto;
}

.social-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.social-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
}

.quote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.author span {
  font-size: 0.9rem;
  color: #777;
}

.ratings {
  margin: 2rem 0;
  font-size: 1.2rem;
  color: #ffb400;
}

.ratings p {
  font-size: 1rem;
  color: #444;
}

.case-study {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: center;
}

.case-study h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.case-study p {
  color: #555;
  margin-bottom: 1.5rem;
}

/*PRICING*/
.pricing {
  padding: 5rem 2rem;
  background: #f5f7fa;
  text-align: center;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.pricing-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--button-nav-color);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.card ul li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #444;
}

.card .btn-primary,
.card .btn-secondary {
  display: inline-block;
  margin-top: auto;
}

.popular {
  border: 2px solid var(--button-nav-color);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--button-nav-color);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/*CALL TO ACTION*/
.cta {
  background: linear-gradient(135deg, #cf5b49, #a63d2b);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f2f2f2;
}

.cta-btn {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
  background-color: #fff;
  color: #cf5b49;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #222;
  color: #fff;
}

/*FAQ SECTION*/
.faq {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

.faq-item {
  margin-bottom: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eee;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  margin: 1rem 0;
  color: #555;
}

/* Active FAQ toggle */
.faq-item.active .faq-answer {
  max-height: 200px; /* adjust as needed */
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/*CONTACT SECTION*/
.contact {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.contact-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.contact-content {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #333;
}

.contact-info a {
  color: var(--button-nav-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--cards-color);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--button-nav-color);
  outline: none;
}

.contact-form button {
  align-self: flex-start;
}

/*FOOTER SECTION*/
.footer {
  background: var(--footer-color);
  color: #fff;
  padding: 3rem 2rem 1rem 2rem;
  font-family: "Playfair Display", serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links,
.footer-contact,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-socials a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: var(--button-nav-color);
}

.footer-contact p {
  font-size: 0.9rem;
  margin: 0;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-socials {
    align-items: center;
  }
}

/* Hidden by default */
.hidden {
  opacity: 0;
  transform: translateY(50px); /* slide from bottom */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.show {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}








