:root {
  --bg: #2f333d;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --accent: #ffffff;
  --btn-bg: #ffffff;
  --btn-text: #2f333d;
  --light: #f9fafb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* HEADER */
.topbar {
  background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #1f4b99;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  padding: 0 0.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text h1 {
  margin: 0;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f8f5e4;
}

.logo-text p {
  margin: 2px 0 0 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #d1b97f;
  font-weight: 600;
}

.logo-wrap:hover .logo-text h1 {
  color: #d1b97f;
}

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
  font-size: 1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #a3c4f3;
  transition: width 0.25s ease;
}

.nav a:hover {
  color: #a3c4f3;
}

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  padding: 5rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.primary-btn {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

/* GENERAL SECTION WRAPPER */
.section {
  background: #ffffff;
  color: #000;
  padding: 4rem 0;
}

.bg-soft {
  background: var(--light);
}

/* SERVICES */
.services-block {
  padding: 5rem 0;
}

.services-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.services-left {
  flex: 1;
  padding-left: 1.8rem;
  border-left: 6px solid #1f4b99;
  position: relative;
}

.services-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(#1f4b99, #0059ff);
  border-radius: 4px;
}

.services-left h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  color: #1b1b1b;
}

.services-right {
  flex: 1;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.services-right p {
  margin-bottom: 1.1rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.services-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f4b99;
  font-size: 1rem;
}

/* IMAGE ROW */
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.image-row figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  background: #fff;
  min-height: 240px;
}

.image-row figure:hover {
  transform: translateY(-6px);
}

.image-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (max-width: 680px) {
  .image-row img {
    height: 220px;
  }
}

/* WHO WE ARE */
.who-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  border: 2px solid #1f4b99;
  padding: 2rem;
  border-radius: 10px;
}

.who-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.who-content p {
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}

/* PLANS */
.plans-section {
  background: #2f333d;
  color: #fff;
  padding: 4rem 0 4.5rem;
}

.plans-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: #404553;
  border-radius: 10px;
  padding: 2rem 1.5rem 2.4rem;
  text-align: center;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.plan-featured {
  background: #000;
}

.plan-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.plan-text {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.plan-btn {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 0.9rem;
  font: inherit;
}

.contact-form .primary-btn {
  background: linear-gradient(135deg, #1f4b99, #0059ff);
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 89, 255, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form .primary-btn:hover {
  background: linear-gradient(135deg, #0059ff, #1f4b99);
  box-shadow: 0 6px 18px rgba(0, 89, 255, 0.5);
  transform: translateY(-2px);
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #0f766e;
}

/* FOOTER */
.footer {
  padding: 1.5rem 0;
  text-align: center;
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ADVISOR BOX */
.advisor-section {
  width: 32%;
  margin-left: auto;
  margin-right: 3%;
  background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
  color: #ffffff;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  animation: fadeIn 1s ease-in-out;
}

.advisor-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.advisor-photo {
  flex: 0 0 110px;
}

.advisor-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #ffffff;
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisor-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

.advisor-info {
  flex: 1;
}

.advisor-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.advisor-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.advisor-quote {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}

/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== ABOUT PAGE SPECIFIC ========== */
/* give the about section a lighter page look */
.about-section {
  background: #f9fafb;
  color: #2f333d;
  padding: 80px 0;
}

.about-section h2 {
  font-size: 2rem;
  color: #0d1b2a;
  margin-bottom: 20px;
  border-left: 5px solid #415a77;
  padding-left: 12px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

.about-section ul {
  margin: 20px 0 40px;
  padding-left: 20px;
}

.about-section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1b263b;
  font-size: 0.9rem;
}

/* About page reviews (only for about) */
.about-section .reviews-wrap {
  margin-top: 50px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.about-section .reviews-wrap h3 {
  font-size: 1.4rem;
  color: #0d1b2a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.about-section .reviews-note {
  color: #415a77;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.about-section .reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.about-section .review-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 210px;
  padding: 10px;
}

.about-section .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.about-section .review-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.about-section .review-card:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: 75px;
    right: 1rem;
    background: #1b263b;
    flex-direction: column;
    gap: 0;
    width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
    border-radius: 6px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  }
  .nav.show {
    display: flex;
  }
  .nav a {
    padding: 0.9rem 1rem;
  }
  .nav a:hover {
    background: rgba(163, 196, 243, 0.05);
  }
  .nav-toggle {
    display: flex;
  }
  .hero-text h1 {
    font-size: 2.3rem;
  }
  .services-grid {
    flex-direction: column;
  }
  .who-box {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .advisor-section {
    width: 90%;
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .about-section .review-card {
    width: 160px;
  }

  .about-section .review-card img {
    height: 120px;
  }
}

@media (max-width: 680px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .image-row {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .logo-text h1 {
    font-size: 1.05rem;
  }
  .logo-text p {
    font-size: 0.65rem;
  }
}
/* ====== ABOUT PAGE – FIVERR REVIEW IMAGES FULL WIDTH ====== */
.about-section .reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.about-section .review-card {
  width: 100%;
  max-width: 950px;         /* adjust if you want narrower */
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 0;               /* we want the image to be flush */
}

.about-section .review-card img {
  width: 100%;
  height: auto;             /* no cropping */
  display: block;
  object-fit: contain;      /* keep the screenshot as-is */
  background: #fff;
}

