/* Reset and Base Styles */
/* Custom Fonts */
@font-face {
  font-family: "Neulis Bold";
  src: url("../fonts/NeulisAlt-Bold.woff") format("woff");
  /* font-weight: 400; */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Regular";
  src: url("../fonts/NeulisAlt-Regular.woff") format("woff");
  /* font-weight: 700; */
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #43bcf6f0;
  --dark-bg: #191a23;
  --white: #ffffff;
  --gray: #f3f3f3;
  --text-dark: #000000;
  --text-gray: #898989;
  --orange: #43bcf6f0;
}

body {
  font-family: "Neulis Regular", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Headings will automatically use Bold (700) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neulis Bold", sans-serif !important;
  font-weight: 700; /* Bold */
}

/* Paragraphs use Regular (400) */
p {
  font-family: "Neulis Regular", sans-serif !important;
  font-weight: 400; /* Regular */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  background: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-btn {
  text-decoration: none;
  background: transparent;
  color: black;
  border: 1px solid black;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-btn:hover {
  background: #060606;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(185, 255, 102, 0.3);
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-orange);
}

.cta-button {
  text-decoration: none;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.cta-button:hover {
  background: #060606;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(185, 255, 102, 0.3);
  color: white;
}

.cta-button.large {
  padding: 10px 30px;
  font-size: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: var(--white);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.trust-badges img {
  height: auto;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.character-illustration img {
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Proof Section */
.proof-section {
  padding: 80px 0;
  background: #43bcf6f0;
  overflow: hidden;
}

.container-full {
  max-width: 100%;
  padding: 0 40px;
}

.proof-section h2 {
  color: var(--white);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.testimonial-left {
  background: #000;
  position: relative;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px;
  border-radius: 8px;
}

.video-controls button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
}

.video-time {
  color: white;
  font-size: 12px;
  margin-left: auto;
}

.play-btn {
  font-size: 16px !important;
}

.testimonial-right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto; /* Default auto */
}

/* Only apply fixed width on larger screens */
@media (min-width: 1201px) {
  .testimonial-right {
    width: 620px;
  }
}

.stars {
  color: #43bcf6f0;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.see-all {
  color: #43bcf6f0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.see-all:hover {
  opacity: 0.8;
}

/* Slider Arrows */
.slider-arrow {
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 10;
}

.slider-arrow:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--white);
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    grid-template-columns: 1fr;
  }

  .testimonial-left {
    height: 300px;
  }

  .testimonial-right {
    padding: 30px 20px;
    width: 100%;
  }

  .proof-section h2 {
    font-size: 32px;
  }

  .review-text {
    font-size: 14px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .container-full {
    padding: 0 20px;
  }
}

/* Features Section */
.features-section {
  padding: 80px 0 0 0;
  background: #fff;
}

.features-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.2;
}

.feature-detail {
  margin-bottom: 80px !important;
}

.feature-image {
  text-align: center;
  padding: 20px;
}

.feature-image img {
  max-width: 100%;
  height: auto;
}

.feature-text {
  padding: 20px;
}

.feature-text h3 {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-text > p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.feature-list {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

.feature-list li {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 4px;
  margin-top: 16px;
}

.feature-list p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 0;
  margin-top: 4px;
  line-height: 1.5;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
  .features-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .feature-detail {
    margin-bottom: 60px !important;
  }

  .feature-text h3 {
    font-size: 26px;
  }

  .feature-text > p {
    font-size: 15px;
  }

  .feature-list li {
    font-size: 15px;
    margin-top: 14px;
  }

  .feature-list p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .features-section h2 {
    font-size: 26px;
  }

  .feature-text h3 {
    font-size: 22px;
  }

  .feature-image,
  .feature-text {
    padding: 10px;
  }

  .feature-list li {
    margin-top: 12px;
  }
}

/* Trades Section */
.trades-section {
  padding: 0;
  background: var(--white);
}

.trades-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.trades-slider-wrapper {
  position: relative;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 100%;
}

.trades-slider-container {
  overflow: hidden;
  width: 100%;
}

.trades-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.trades-page {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10px;
}

/* Force 3 columns layout - Override Bootstrap */
.trades-page .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  margin: 0 !important;
}

.trades-page .col-lg-4,
.trades-page .col-md-6 {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  flex: none !important;
}

.trade-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trade-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trade-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray);
  flex-shrink: 0;
}

.trade-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trade-card h4 {
  text-align: center;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trade Arrows */
.trade-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(246, 163, 68, 0.3);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  font-size: 28px;
  color: var(--primary-orange);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-arrow:hover:not(:disabled) {
  background: var(--primary-orange);
  color: var(--white);
}

.trade-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(246, 163, 68, 0.1);
}

.trade-prev {
  left: 0;
}

.trade-next {
  right: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .trades-slider-wrapper {
    padding: 0 60px;
  }

  .trades-page .row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .trade-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .trade-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .trades-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .trades-slider-wrapper {
    padding: 0 50px;
  }

  .trades-page .row {
    grid-template-columns: 1fr !important;
  }

  .trade-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .trade-prev {
    left: 5px;
  }

  .trade-next {
    right: 5px;
  }

  .trade-image-wrapper {
    height: 180px;
  }

  .trade-card h4 {
    font-size: 16px;
    padding: 15px 10px;
  }
}

@media (max-width: 480px) {
  .trades-slider-wrapper {
    padding: 0 45px;
  }

  .trade-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .trade-image-wrapper {
    height: 160px;
  }
}

/* Process Section */
.process-section {
  padding: 90px 0;
  background: var(--white);
}

.process-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.process-subtext {
  text-align: center;
  font-size: 17px;
  color: #666;
  margin-bottom: 70px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.process-wrapper {
  position: relative;
}

/* Connecting Line */
.process-wrapper::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 22%;
  right: 22%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-orange) 0%,
    var(--primary-orange) 33%,
    #e8e8e8 33%,
    #e8e8e8 50%,
    var(--primary-orange) 50%,
    var(--primary-orange) 66%,
    #e8e8e8 66%,
    #e8e8e8 100%
  );
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.step-number {
  width: 115px;
  height: 115px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(246, 163, 68, 0.35);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.05);
}

.step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-orange);
  line-height: 1.3;
}

.time-subtitle {
  display: block;
  font-size: 17px;
  color: var(--primary-orange);
  opacity: 0.8;
  margin-top: 4px;
  font-weight: 500;
}

.step p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .process-section h2 {
    font-size: 34px;
  }

  .process-subtext {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .process-wrapper::before {
    display: none;
  }

  .step-number {
    width: 95px;
    height: 95px;
    font-size: 40px;
    margin-bottom: 20px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
  }

  .step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 60px 0;
  }

  .process-section h2 {
    font-size: 28px;
  }

  .process-subtext {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 34px;
  }

  .step h3 {
    font-size: 19px;
  }

  .time-subtitle {
    font-size: 15px;
  }

  .step p {
    font-size: 14px;
  }

  .step {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

/* Unique Section */
.unique-section {
  padding: 90px 0 0 0;
  background: var(--white);
}

.unique-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.unique-subtext {
  text-align: center;
  font-size: 17px;
  color: #666;
  margin-bottom: 55px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.unique-card {
  padding: 35px 28px;
  border-radius: 20px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.unique-card.dark {
  background: #43bcf6f0;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.06);
}

.unique-card.dark:hover {
  border-color: var(--primary-orange);
}

.unique-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.unique-icon svg {
  width: 100%;
  height: 100%;
}

.unique-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.2;
}

.unique-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.unique-card .highlight {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .unique-section {
    padding: 70px 0 0 0;
  }

  .unique-section h2 {
    font-size: 34px;
  }

  .unique-subtext {
    font-size: 16px;
    margin-bottom: 45px;
  }

  .unique-card {
    padding: 30px 22px;
  }

  .unique-card h4 {
    font-size: 20px;
  }

  .unique-card p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .unique-section {
    padding: 60px 0 0 0;
  }

  .unique-section h2 {
    font-size: 28px;
  }

  .unique-subtext {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .unique-card {
    padding: 28px 20px;
  }

  .unique-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .unique-card h4 {
    font-size: 19px;
  }

  .unique-card p {
    font-size: 14px;
  }
}

/* Partners Section */
.partners-section {
  padding: 90px 0;
  background: #f9f9f9;
  position: relative;
}

.partners-header {
  margin-bottom: 60px;
}

.partners-section h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.partners-subtext {
  font-size: 16px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Logo Cards */
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #eee;
  min-height: 120px;
  transition: all 0.3s ease;
  cursor: default;
}

.partner-logo:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 8px 25px rgba(246, 163, 68, 0.15);
  transform: translateY(-4px);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.partner-name {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.partner-logo:hover .partner-name {
  color: var(--primary-orange);
}

/* Trust line */
.partners-trust {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-top: 50px;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 991px) {
  .partners-section {
    padding: 70px 0;
  }

  .partners-section h2 {
    font-size: 34px;
  }

  .partners-subtext {
    font-size: 15px;
  }

  .partner-logo {
    min-height: 100px;
    padding: 20px 15px;
  }

  .partner-logo img {
    max-height: 45px;
  }
}

@media (max-width: 767px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-section h2 {
    font-size: 28px;
  }

  .partners-subtext {
    font-size: 14px;
  }

  .partners-header {
    margin-bottom: 40px;
  }

  .partner-logo {
    min-height: 90px;
    padding: 18px 12px;
    border-radius: 12px;
  }

  .partner-logo img {
    max-height: 38px;
    margin-bottom: 8px;
  }

  .partner-name {
    font-size: 11px;
  }

  .partners-trust {
    margin-top: 35px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .partners-section h2 {
    font-size: 24px;
  }

  .partner-logo {
    min-height: 80px;
    padding: 15px 10px;
  }

  .partner-logo img {
    max-height: 32px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background: #f5f5f5;
}

.faq-header {
  margin-bottom: 50px;
}

.faq-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.faq-subtext {
  font-size: 17px;
  color: #777;
  margin: 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:not(.active):hover {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 15px rgba(246, 163, 68, 0.1);
}

/* Orange background ONLY when active */
.faq-item.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

.faq-item.active .faq-question h4 {
  color: var(--white);
}

.faq-item.active .faq-toggle {
  color: var(--white);
}

.faq-item.active .faq-answer p {
  color: var(--white);
  opacity: 0.95;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
  color: var(--text-dark);
  transition: color 0.3s;
  line-height: 1.4;
}

.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    color 0.3s;
  color: var(--text-dark);
}

.faq-toggle svg {
  width: 100%;
  height: 100%;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-section h2 {
    font-size: 36px;
  }

  .faq-subtext {
    font-size: 16px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question h4 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .faq-subtext {
    font-size: 15px;
  }

  .faq-header {
    margin-bottom: 35px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .faq-toggle {
    width: 20px;
    height: 20px;
  }
}

/* Truth Section */
.truth-section {
  padding: 80px 0;
  background: var(--dark-bg);
  color: var(--white);
  text-align: center;
}

.truth-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.truth-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Final CTA */
.final-cta {
  padding: 65px 60px;
  background-color: #43bcf6f0;
  border-radius: 24px;
  margin: 0 20px 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.final-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.cta-button-white {
  text-decoration: none;
  background: #ffffff;
  color: #43bcf6f0;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button-white:hover {
  background: #fff8f0;
  color: #43bcf6f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-white svg {
  transition: transform 0.3s;
}

.cta-button-white:hover svg {
  transform: translateX(4px);
}

/* Characters */
.cta-characters {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-characters img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .final-cta {
    padding: 55px 45px;
  }

  .cta-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .final-cta {
    margin: 0 15px 60px 15px;
    padding: 50px 35px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .cta-characters {
    margin-top: 35px;
  }

  .cta-characters img {
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  .final-cta {
    margin: 0 12px 40px 12px;
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .cta-content p {
    font-size: 15px;
    margin-bottom: 24px;
    margin: 0 auto 24px;
  }

  .cta-button-white {
    width: 100%;
    justify-content: center;
    padding: 13px 28px;
    font-size: 15px;
  }

  .cta-characters {
    margin-top: 30px;
  }

  .cta-characters img {
    max-width: 75%;
  }
}

@media (max-width: 480px) {
  .final-cta {
    margin: 0 8px 30px 8px;
    padding: 35px 20px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 14px;
  }
}

/* ===== FOOTER ===== */
footer.footer {
  background-color: #1a1c2e !important;
  color: #ffffff !important;
  padding: 60px 0 0 0;
  margin: 0;
}

/* Top Bar */
.footer-top-bar {
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  max-width: 160px;
  height: auto;
  display: block;
}

.footer-top-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-top-cta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.footer-cta-btn {
  display: inline-block;
  background-color: #43bcf6f0;
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.footer-cta-btn:hover {
  background-color: #43bcf6f0;
  color: #ffffff !important;
}

/* Footer Body */
.footer-body {
  padding-bottom: 50px;
}

/* Brand / Left Column */
.footer-brand {
  padding-right: 30px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-outline-btn {
  display: inline-block;
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-outline-btn:hover {
  background: #ffffff;
  color: #43bcf6f0 !important;
  border-color: #ffffff;
}

/* Nav Columns */
.footer-nav {
  margin-bottom: 40px;
}

.footer-nav h6 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #43bcf6f0;
}

/* Services Tags Grid */
.footer-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-services-grid span {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.25) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-top-cta {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .footer-brand {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .footer-brand h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  footer.footer {
    padding: 45px 0 0;
  }

  .footer-top-bar {
    padding-bottom: 30px;
    margin-bottom: 35px;
  }

  .footer-top-cta span {
    font-size: 15px;
  }

  .footer-cta-btn {
    width: 100%;
    text-align: center;
  }

  .footer-brand h3 {
    font-size: 19px;
  }

  .footer-outline-btn {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    max-width: 130px;
  }

  .footer-brand h3 {
    font-size: 18px;
  }

  .footer-nav h6 {
    font-size: 14px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 36px;
  }

  .grid,
  .trades-grid,
  .process-steps,
  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content,
  .feature-detail,
  .testimonial-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .grid,
  .trades-grid,
  .process-steps,
  .unique-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .final-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-characters {
    margin-top: 40px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Style */
::selection {
  background: var(--primary-orange);
  color: var(--text-dark);
}

/* Mobile Navigation Fix */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Header button responsive */
  .header-btn {
    display: none;
  }

  .nav-menu.active ~ .header-btn {
    display: inline-flex;
    margin: 20px auto;
  }
}

/* Testimonial Card Responsive Fix */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .testimonial-right {
    width: auto; /* Remove fixed width on tablet */
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    grid-template-columns: 1fr;
  }

  .testimonial-left {
    height: 300px;
  }

  .testimonial-right {
    padding: 30px 20px;
    width: 100%; /* Full width on mobile */
  }

  .proof-section h2 {
    font-size: 32px;
  }

  .review-text {
    font-size: 14px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .container-full {
    padding: 0 20px;
  }

  /* Hero Section Mobile */
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  /* Other sections mobile */
  .feature-detail {
    grid-template-columns: 1fr;
  }

  .grid,
  .trades-grid,
  .process-steps,
  .unique-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .final-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-characters {
    margin-top: 40px;
  }
}

/* Tablet Responsive (between 768px and 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  .testimonial-right {
    width: auto;
    max-width: 100%;
  }

  .testimonial-card {
    grid-template-columns: 180px 1fr;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .proof-section h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .testimonial-right {
    padding: 20px 15px;
  }

  .review-text {
    font-size: 13px;
  }

  .stars {
    font-size: 16px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cta-button.large {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Pricing Hero Section */
.pricing-hero {
  padding: 90px 0;
  background: #f5f5f5;
}

/* Page Header */
.pricing-page-header {
  margin-bottom: 60px;
}

.pricing-page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}

.pricing-page-subtext {
  font-size: 17px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Pricing Plan Card */
.pricing-plan {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.plan-header {
  background: #1e2135;
  color: #ffffff;
  padding: 24px 28px;
}

.plan-header h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: #ffffff;
}

.plan-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Accordion */
.pricing-accordion {
  padding: 0;
}

.accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 12px;
}

.accordion-header:hover {
  background: #fafafa;
}

.accordion-item.active .accordion-header {
  background: #fff8f0;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  background: #fff0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #43bcf6f0;
  padding: 8px;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
}

.accordion-item.active .accordion-icon {
  background: #43bcf6f0;
  color: #ffffff;
}

.accordion-header span {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.accordion-header .chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: #aaa;
}

.accordion-item.active .accordion-header .chevron {
  transform: rotate(180deg);
  color: #43bcf6f0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-content {
  max-height: 400px;
}

.accordion-content-inner {
  padding: 4px 24px 22px 74px;
}

.accordion-item .accordion-content p,
.accordion-item .accordion-content ul {
  padding-left: 74px;
}

.accordion-item .accordion-content p {
  padding: 4px 24px 10px 74px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin: 0;
}

.accordion-item .accordion-content ul {
  list-style: none;
  padding: 0 24px 20px 74px;
  margin: 0;
}

.accordion-item .accordion-content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.accordion-item .accordion-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #43bcf6f0;
  border-radius: 50%;
}

/* Popular Card */
.pricing-right {
  position: sticky;
  top: 100px;
}

.popular-card {
  background: #43bcf6f0;
  border-radius: 20px;
  padding: 35px 30px;
  color: #ffffff;
  text-align: center;
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.popular-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Price Block */
.price-block {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
}

.price {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.price span {
  font-size: 22px;
  font-weight: 500;
  opacity: 0.85;
}

.price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li svg {
  flex-shrink: 0;
  color: #ffffff;
  opacity: 0.9;
}

/* CTA Button */
.pricing-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #43bcf6f0;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  margin-bottom: 16px;
  font-family: inherit;
}

.pricing-cta-btn:hover {
  background: #fff8f0;
  color: #43bcf6f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-cta-btn svg {
  transition: transform 0.3s;
}

.pricing-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Guarantee line */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .pricing-hero {
    padding: 70px 0;
  }

  .pricing-page-header h1 {
    font-size: 38px;
  }

  .pricing-right {
    margin-top: 40px;
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .pricing-hero {
    padding: 60px 0;
  }

  .pricing-page-header h1 {
    font-size: 32px;
  }

  .pricing-page-subtext {
    font-size: 15px;
  }

  .pricing-page-header {
    margin-bottom: 40px;
  }

  .popular-card {
    padding: 28px 22px;
  }

  .price {
    font-size: 44px;
  }

  .accordion-header {
    padding: 16px 18px;
  }

  .accordion-item .accordion-content p,
  .accordion-item .accordion-content ul {
    padding-left: 18px;
  }

  .accordion-item .accordion-content p {
    padding: 4px 18px 10px;
  }

  .accordion-item .accordion-content ul {
    padding: 0 18px 18px;
  }
}

/* Services Page Section */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item h4 {
  text-align: center;
  padding: 20px 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .services-section {
    padding: 60px 0;
  }

  .services-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .service-image {
    height: 220px;
  }

  .service-item h4 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .services-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-image {
    height: 200px;
  }

  .service-item h4 {
    font-size: 16px;
    padding: 15px 10px 0;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 180px;
  }
}

/* All Trades by Category Section */
.all-trades-section {
  padding: 90px 0;
  background: #f9f9f9;
}

/* Header */
.trades-header {
  margin-bottom: 40px;
}

.all-trades-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.trades-subtext {
  font-size: 17px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Search */
.trades-search-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.trades-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  padding: 12px 24px;
  width: 100%;
  max-width: 480px;
  transition: border-color 0.3s;
}

.trades-search:focus-within {
  border-color: #43bcf6f0;
}

.trades-search input {
  border: none;
  outline: none;
  font-size: 15px;
  color: #333;
  width: 100%;
  font-family: inherit;
  background: transparent;
}

.trades-search input::placeholder {
  color: #aaa;
}

/* Tag Cloud */
.trades-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.trade-tag {
  display: inline-block;
  background: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 50px;
  border: 2px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.trade-tag:hover,
.trade-tag.highlighted {
  background: #43bcf6f0;
  color: #ffffff;
  border-color: #43bcf6f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 162, 67, 0.3);
}

.trade-tag.hidden {
  display: none;
}

/* No Results */
.trades-no-results {
  display: none;
  text-align: center;
  padding: 50px 20px;
}

.trades-no-results p {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
}

.trades-no-results.visible {
  display: block;
}

/* Bottom CTA */
.trades-cta {
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
}

.trades-cta p {
  font-size: 20px;
  color: #222;
  margin-bottom: 20px;
}

.trades-cta strong {
  color: #43bcf6f0;
}

/* Responsive */
@media (max-width: 991px) {
  .all-trades-section {
    padding: 70px 0;
  }

  .all-trades-section h2 {
    font-size: 36px;
  }

  .trades-subtext {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .all-trades-section {
    padding: 60px 0;
  }

  .all-trades-section h2 {
    font-size: 28px;
  }

  .trades-subtext {
    font-size: 15px;
  }

  .trades-search {
    padding: 10px 18px;
  }

  .trade-tag {
    font-size: 13px;
    padding: 8px 15px;
  }

  .trades-cta {
    padding: 35px 20px;
  }

  .trades-cta p {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .all-trades-section h2 {
    font-size: 24px;
  }

  .trade-tag {
    font-size: 12px;
    padding: 7px 13px;
  }
}

/* Testimonials Grid Section */
.testimonials-grid-section {
  padding: 90px 0;
  background: #f9f9f9;
}

/* Header */
.testimonials-grid-header {
  margin-bottom: 55px;
}

.testimonials-grid-section h2 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.testimonials-grid-subtext {
  font-size: 17px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Card */
.testimonial-video-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eeeeee;
}

.testimonial-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #43bcf6f0;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 130%;
  background: #111;
  overflow: hidden;
  border-radius: 0;
}

.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.testimonial-video-card:hover .video-wrapper img {
  transform: scale(1.04);
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.testimonial-video-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #43bcf6f0;
  padding-left: 3px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  transform: scale(1.12);
  background: #43bcf6f0;
  color: #ffffff;
}

/* Trade Badge on image */
.card-trade-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #43bcf6f0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Card Body */
.testimonial-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonial-stars {
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 16px;
  flex-grow: 1;
  font-style: italic;
}

.client-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0;
  padding: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-grid-section {
    padding: 70px 0;
  }

  .testimonials-grid-section h2 {
    font-size: 36px;
  }

  .testimonials-grid-subtext {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonials-grid-section {
    padding: 60px 0;
  }

  .testimonials-grid-section h2 {
    font-size: 28px;
  }

  .testimonials-grid-subtext {
    font-size: 15px;
  }

  .testimonials-grid-header {
    margin-bottom: 40px;
  }

  /* Always show overlay on mobile */
  .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .testimonial-quote {
    font-size: 13px;
  }

  .client-name {
    font-size: 13px;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* Header */
.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.gallery-subtext {
  font-size: 17px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  color: #555;
  border: 2px solid #e5e5e5;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: #43bcf6f0;
  color: #43bcf6f0;
}

.filter-btn.active {
  background: #43bcf6f0;
  color: #ffffff;
  border-color: #43bcf6f0;
}

/* Gallery Cards */
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.gallery-card.large {
  height: 380px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 35, 0.92) 0%,
    rgba(20, 20, 35, 0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.gallery-tag {
  display: inline-block;
  background: #43bcf6f0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.gallery-info h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

/* Filter Animation */
.gallery-item {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-header h2 {
    font-size: 36px;
  }

  .gallery-card {
    height: 260px;
  }

  .gallery-card.large {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .gallery-header h2 {
    font-size: 28px;
  }

  .gallery-subtext {
    font-size: 15px;
  }

  .gallery-card,
  .gallery-card.large {
    height: 240px;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .gallery-info {
    transform: translateY(0);
  }
}
