/* ===== Basic CSS Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f1f1f1;
  color: #000;
  line-height: 1.5;
}

/* ===== Smooth Scrolling ===== */
html {
  scroll-behavior: smooth;
}

/* Optional: Customize scrollbars (for a premium minimal aesthetic) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Optional: Reduce scroll jankiness on momentum devices (MacBooks, touchpads) */
body {
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ===== Sticky Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent background */
  backdrop-filter: blur(10px); /* makes content behind it blurry */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  z-index: 1000; /* keeps it above other elements */
  transition: background 0.3s ease; /* optional, smoothens any color change */
}

/* ===== Left Avatar Container ===== */
.left-avatar {
  position: absolute; /* top-left positioning */
  left: 20px;
  display: flex;
  align-items: center;
}

/* Avatar Image */
.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff; /* optional: subtle white border */
}

/* Green status circle */
.status-indicator {
  width: 12px;
  height: 12px;
  background-color: #28a745; /* green */
  border-radius: 50%;
  margin-left: -8px; /* slightly overlap avatar */
  border: 2px solid #fff; /* optional border for clarity */
}

/* ===== Logo Container ===== */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo styling */
.site-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

/* Tagline styling */
.tagline {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .tagline {
    font-size: 12px;
  }

  .avatar {
    width: 35px;
    height: 35px;
  }

  .status-indicator {
    width: 12px;
    height: 12px;
    margin-left: -6px;
  }
  .left-avatar {
    left: 16px;
    top: 16px;
  }
}

/* ===== Bottom Sticky CTA Bar ===== */
.bottom-sticky-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 64px; /* match header height */
  background-color: #fff;
  border-top: 1px solid #e5e5e5; /* same as header border */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent background */
  backdrop-filter: blur(10px); /* makes content behind it blurry */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  z-index: 1000; /* keeps it above other elements */
  transition: background 0.3s ease; /* optional, smoothens any color change */
}

/* ===== CTA Button ===== */
.cta-button {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 24px;
  background-color: #28a745; /* premium green */
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-button:hover {
  background-color: #218838; /* slightly darker green on hover */
}

.cta-button:active {
  transform: translateY(0);
}

/* ===== Client Logos Section ===== */
.client-logos {
  padding: 60px 0px;
  text-align: center;
  background-color: #f1f1f1;
  max-width: 800px;
  margin: 0 auto;
}

.weather-widget {
  position: absolute;
  top: 5px;
  right: 9px;
}

.temperature-text {
  font-size: 9px;
  text-align: center;
}

.weather-widget img {
  width: 40px;
}

@media (min-width: 600px) {
  .temperature-text {
    font-size: 13px;
  }
  .weather-widget {
    position: absolute;
    top: 18px;
    right: 15px;
  }
}

.client-logos .heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.client-logos .subheading {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

/* Individual logo items */
.logo-item {
  padding: 15px;
  border: 1px solid #e5e5e5; /* same as header/footer border */
  background-color: #fff;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 3px;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

/* Responsive columns */
@media (max-width: 600px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .client-logos {
    padding: 60px 20px;
  }
}

/* Hero Section */
#hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 600px;
  padding: 0 20px;
  background: #f1f1f1;
  font-family: "Circular", sans-serif;
  margin-top: 120px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  border: 1px solid #e5e5e5;
  /* padding: 25px; */
  border-radius: 8px;
  background: white;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.2;
  font-family: "Bebas Neue";
  font-weight: 600;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.cta-button {
  background-color: #00a859;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}

.cta-button:hover {
  background-color: #008744;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ===== Testimonial Section ===== */
.testimonial {
  padding: 20px 20px;
  background-color: #f1f1f1;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #e5e5e5; /* consistent border style */
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.reviewer-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-text {
  text-align: left;
  flex: 1;
}

.stars {
  width: 120px; /* adjust based on your stars image */
  height: auto;
  margin-bottom: 10px;
}

.review-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: #222;
  margin: 5px 0 10px 0;
}

.review-body {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.review-title {
  font-weight: 400;
  font-size: 13px;
  color: #777;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .testimonial-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .review-text {
    text-align: center;
  }

  .stars {
    margin: 0 auto 10px auto;
  }
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  padding-top: 0px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #e5e5e5; /* consistent border style */
  border-radius: 8px;
  padding: 40px 20px;
  background-color: #fff;
}

.contact-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.contact-info {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info a {
  color: #28a745; /* brand green */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.audit-details p {
  margin-bottom: 20px;
}

/* Contact Button */
.contact-button {
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: #00a859;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.contact-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.contact-button:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-heading {
    font-size: 26px;
  }
  .contact-info {
    font-size: 14px;
  }
  .contact-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ===== Sales Copy Section ===== */
.sales-copy {
  padding: 50px;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #e5e5e5; /* consistent border style */
  border-radius: 8px;
}

.sales-copy-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.sales-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.sales-copy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sales-copy ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.sales-copy li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.sales-copy strong {
  color: #222;
}

.sales-cta {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .sales-copy {
    padding: 20px;
    margin: 20px;
  }

  .sales-heading {
    font-size: 24px;
  }

  .sales-copy p,
  .sales-copy li,
  .sales-cta {
    font-size: 16px;
  }
}

/* ===== About Me Section ===== */
.about-me {
  background-color: #fff;
  font-family: "Inter", sans-serif;
  color: #333;
  max-width: 800px;
  margin: 60px auto 0px auto;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 50px;
}

.about-me-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.about-me h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #222;
}

.about-me p,
.about-me li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-me ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.about-me a {
  color: #28a745;
  text-decoration: none;
}

.about-me a:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .about-me {
    padding: 20px;
    margin: 20px;
  }

  .about-heading {
    font-size: 24px;
  }

  .about-me h3 {
    font-size: 20px;
  }

  .about-me p,
  .about-me li {
    font-size: 16px;
  }
}

/* ===== Work Section ===== */
.work-section {
  padding: 60px 0px;
  background-color: #f1f1f1;
  font-family: "Inter", sans-serif;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.work-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.work-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.work-subheading {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.work-item img {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5; /* consistent border style */
  border-radius: 6px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-section {
    padding: 60px 20px;
  }

  .work-heading {
    font-size: 24px;
  }

  .work-subheading {
    font-size: 14px;
  }
  #totalsalesimg {
    display: none;
  }
  #hero {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}

.hero-img-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

div.contact-container {
  padding: 50px;
  background: #0cebeb; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #29ffc6,
    #20e3b2,
    #0cebeb
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #29ffc6,
    #20e3b2,
    #0cebeb
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.contact-container {
  position: relative;
  overflow: hidden;
}

.contact-container::after {
  content: "limited";
  position: absolute;
  top: 21px;
  right: -30px;
  transform: rotate(45deg);
  text-transform: uppercase;
  font-size: 14px;
  background: #0e0e0e;
  padding: 0px 30px;
  color: white;
  font-weight: 600;
}

.audit-details {
  border-radius: 12px;
  margin: 25px 0;
  text-align: left;
  color: #333333;
}

.audit-details h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.audit-details ol {
  margin: 0 0 15px 20px;
  padding: 0;
  list-style: number;
}

.audit-details li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.audit-note {
  border-radius: 8px;
}

.audit-note h3 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  div.contact-container {
    padding: 20px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 50px;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  color: #333;
  max-width: 800px;
  margin: 50px auto;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 25px;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
}

.faq-answer ol {
  list-style: number;
}

.faq-answer li {
  margin-left: 30px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
  color: #444444;
  margin-bottom: 20px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 100%;
  padding-top: 5px;
}

/* Hover & focus */
.faq-question:hover {
  color: #00a859;
}

/* Mobile */
@media (max-width: 600px) {
  .faq-section {
    padding: 20px;
    margin: 20px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
    gap: 20px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

@media (min-width: 600px) {
  #brianlogo {
    display: none;
  }
}

img.lock-icon {
  max-width: 20px;
}

.hero-content::after {
  content: "Available";
  position: absolute;
  color: white;
  top: 22px;
  text-transform: uppercase;
  right: -43px;
  transform: rotate(45deg);
  font-size: 12px;
  background: #00a859;
  padding: 0px 40px;
}

.contact-details-widget {
  position: fixed;
  left: 18px;
  top: 27.9%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #e5e5e5;
  padding: 20px;
  max-width: 200px;
  border-radius: 10px;
}

.contact-details-widget .contact-info {
  font-size: 10px;
}

.contact-details-widget .contact-info {
  font-size: 10px;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .contact-details-widget {
    display: none;
  }
}

/* ===== Audit Preview Section ===== */
.audit-preview-section {
  padding: 50px;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  color: #333;
  max-width: 800px;
  margin: 50px auto;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.audit-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
}

.audit-intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.audit-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

.audit-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  font-weight: 400;
}

.audit-question::after {
  content: "+";
  font-size: 22px;
  transition: transform 0.3s ease;
}

.audit-answer li {
  list-style: disc;
}

.audit-question.active::after {
  transform: rotate(45deg);
}

.audit-answer {
  max-height: 0;
  overflow: hidden;
}

.audit-answer ul {
  margin: 10px 0 0 20px;
}

.audit-answer li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.audit-footer {
  margin-top: 25px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.audit-question:hover {
  color: #00a859;
}

/* Active state */
.audit-item.active .audit-answer {
  max-height: 1000px;
}

/* Mobile */
@media (max-width: 600px) {
  .audit-preview-section {
    padding: 20px;
    margin: 20px;
  }

  .audit-heading {
    font-size: 24px;
  }

  .audit-question {
    font-size: 16px;
    gap: 15px;
  }

  .audit-answer li {
    font-size: 15px;
  }
  .platforms-container .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px;
  }
  #hero {
    margin-bottom: 0px;
  }
}

section.client-logos.platforms-container img {
  filter: grayscale(0);
}

section.client-logos.platforms-container {
  padding: 30px 0px 20px 0px;
}
