/* styles.css
   Minimal, modern responsive layout for the Momentum landing page.
   Customize the --accent color and font sizes below.
*/

:root{
  --bg: #ffffff;
  --surface: #f7f8fb;
  --text: #1f2933;
  --muted: #6b7280;
  --accent: #03b3a9; /* teal-ish accent */
  --accent-700: #029589;
  --radius: 12px;
  --container: 1100px;
  --shadow: 0 6px 18px rgba(31,41,51,0.06);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}

/* container */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

/* header */
.site-header{
  border-bottom:1px solid #eef2f4;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  position:sticky;
  height: 90px;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:20px;
  padding-top: 20px;
  height:72px;
  justify-content:space-between;
}
.brand{display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text)
}

.brand-logo{
  width: 70px;
  height:70px;
  display:block
}

.brand-name{
  font-weight:600;
  font-size:25px}

.nav{
  display:flex;
  gap:20px;
  align-items:center
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:500
}

.nav a.current-page {
  position: relative;
  font-weight: 600;
}

.nav a.current-page::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s ease;
  transform: scaleX(1); 
  transform-origin: left;
}

.actions .btn-ghost{
  padding:8px 12px;
  border-radius:8px;
  border:1px solid #e6e9ec
}

/* hero */

.hero {
  height: 50vh;
}

.page-title {
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--text);
  font-size: 50px;
}

.hero-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.page-description {
  text-align: center;
  width: 50%;
  color: var(--text);
}


/* Reviews Slider Styles */
.reviews-slider {
  padding-top: 45px;
  width: 80%; /* 10% margin on left and right */
  margin: 2rem auto;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 350px;
  max-width: 500px;
  margin: 0 20px;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border-left: 6px solid var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  flex-shrink: 0;
  text-align: left; /* align text to the left */
  font-size: 1.1rem; /* bigger font */
}

@media (max-width: 768px) {
  .review-card {
    max-width: 300px;
  }
}

.review-card strong {
  display: block;
  font-size: 1.4rem; /* bigger name */
  margin-bottom: 0.5rem;
  color: var(--text);
}

.review-rating {
  font-size: 1.2rem; /* bigger stars */
  margin-bottom: 1rem;
  color: var(--accent); /* make stars accent color */
}

.review-text {
  color: #444;
  line-height: 1.8;
}

/* Dots Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--accent-700);
}


/* Dots Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--accent-700);
}


/* Form Styles */
#review-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

#review-form label {
  display: block;
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
  color: #333;
}

#review-form input,
#review-form textarea,
#review-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#review-form input:focus,
#review-form textarea:focus,
#review-form select:focus {
  outline: none;
  border-color: var(--accent);
}

#review-form textarea {
  resize: vertical;
  min-height: 100px;
}

#review-form button {
  background: var(--accent);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

#review-form button:hover {
  background: var(--accent-700);
}

/* Message styles */
#message {
  margin: 1rem 0;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.review-message {
  text-align: center;
  color: #666;
  margin: 2rem 0;
  font-style: italic;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s ease;
}

.arrow:hover {
  background: var(--accent);
}

.arrow.left {
  left: 0px;
}

.arrow.right {
  right: 0px;
}



#message {
  margin: 1rem 0;
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: bold;
}

#review-form {
  margin-left: 10%;
  margin-right: 10%;
  padding-bottom: 50px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#review-form label {
  display: block;
  margin: 1rem 0 0.5rem 0;
  font-weight: bold;
}

#review-form input,
#review-form textarea,
#review-form select {
  width: 90%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

#review-form button {
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 2rem;
}

#review-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(3,179,169,0.4);
}


/* Responsive */
@media (max-width: 768px) {
  .testimonial-track {
    gap: 10px;
  }

  .testimonial-card {
    min-width: 260px;
    max-width: 260px;
    padding: 20px;
  }

  .arrow {
    font-size: 1.5rem;
    padding: 8px;
  }
}

@media (max-width: 980px) {
  .testimonial-track {
    flex-direction: column;
    align-items: center;
    transform: none !important; /* prevent sliding transform */
  }

  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .arrow {
    display: none; /* hide arrows on mobile */
  }

  .testimonial-slider {
    padding: 0; /* remove side padding */
    overflow: visible;
  }
}


/* AHHHHHHHHHHHHHHH */



/* footer */
.site-footer{
  background:var(--accent);
  color:white;
  padding:28px 0 14px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.footer-title {
    color: var(--text);
    font-weight: bold;
    font-size: 55px;
}

.footer-subtitle {
    color: var(--text);
    font-weight: lighter;
    font-size: 25px;
}

.footer-div {
    margin-top: 50px;
    margin-bottom: 70px;
}

.footer-div2 {
    margin-top: 50px;
    margin-bottom: 20px;
}